Last updated: 2016-04-01
Code version: 34345c9c3889d9b3b288f2e4f80ff6b3e0d7a5e7
Compare expression variability among the expressed cells between individuals. Here are our observations:
CV-mean relationship: This pattern in the expressed cells is different from the usual concave function we observe in bulk RNA-seq and scRNA-seq. Gene CVs increase as a function of gene abundance for genes with more than 50 percent of undetected cells; while, gene CVs decrease as a function of mean abundance, a pattern similar to previous studies for genes with 50 percent or less undetected cells.
Overlaps of individual top mean and top CV genes: Similar to when including non-expressed cells, there are few common top CV genes across individuals (~100 genes) and many more common top genes across individuals ( > 800 genes). This suggests possible individual differences in expression variablity.
Compare CV of the expressed cells: We found 680 genes with differential variation across the expressed cell.
Compare mean abundance of the expressed cells: Due to the large number of cells in each individual cell lines, more than 95% of the genes were found to have statistically significant differences between all three individuals. We identified differential expression genes between pairs of individuals under the conditions of q-value less than .01 in the test and also log2 fold change greater than 2: 5 genes in NA19098-NA19101, 6 in NA19098-NA19239, and 2 genes in NA19101-NA19239. Note: The criterion for differential expression genes may be stringent, but the goal of this analysis is not to have a final say on the biological differences between the cell line, but rather to begin a conversatoin about the relationship between percent of undeteced cells and mean abundance
library(knitr)
library("limma")
library("ggplot2")
library("grid")
theme_set(theme_bw(base_size = 12))
source("functions.R")
library("Humanzee")
library("cowplot")
library("MASS")
library("matrixStats")
source("../code/cv-functions.r")
source("../code/plotting-functions.R")
library("mygene")
We import molecule counts before standardizing and transformation and also log2-transformed counts after batch-correction. Biological variation analysis of the individuals is performed on the batch-corrected and log2-transformed counts.
# Import filtered annotations
anno_filter <- read.table("../data/annotation-filter.txt",
header = TRUE,
stringsAsFactors = FALSE)
# Import filtered molecule counts
molecules_filter <- read.table("../data/molecules-filter.txt",
header = TRUE, stringsAsFactors = FALSE)
stopifnot(NROW(anno_filter) == NCOL(molecules_filter))
# Import final processed molecule counts of endogeneous genes
molecules_final <- read.table("../data/molecules-final.txt",
header = TRUE, stringsAsFactors = FALSE)
stopifnot(NROW(anno_filter) == NCOL(molecules_final))
# Import gene symbols
gene_symbols <- read.table(file = "../data/gene-info.txt", sep = "\t",
header = TRUE, stringsAsFactors = FALSE, quote = "")
# Import cell-cycle gene list
cell_cycle_genes <- read.table("../data/cellcyclegenes.txt",
header = TRUE, sep = "\t",
stringsAsFactors = FALSE)
# Import pluripotency gene list
pluripotency_genes <- read.table("../data/pluripotency-genes.txt",
header = TRUE, sep = "\t",
stringsAsFactors = FALSE)$To
Load CV results of all cells from previous analysis
load("../data/cv-all-cells.rda")
file_name <- "../data/cv-expressed-cells.rda"
if (file.exists(file_name)) {
load(file_name)
} else {
expressed_cv <- compute_expressed_cv(molecules_filter,
molecules_final,
anno_filter$individual)
expressed_dm <- normalize_cv_input(expressed_cv,
anno_filter$individual)
save(expressed_cv, expressed_dm, file = file_name)
}
Filter data to only include genes with valid CV measures when including the expressed cells.
# get gene names from the cv data of the expessed cells
valid_genes_cv_expressed <- rownames(expressed_cv[[1]])
# make subset data for later analysis involving expressed cells
molecules_filter_subset <- molecules_filter[
which(rownames(molecules_filter) %in% valid_genes_cv_expressed), ]
molecules_final_subset <- molecules_final[
which(rownames(molecules_final) %in% valid_genes_cv_expressed), ]
ENSG_cv_subset <- lapply(ENSG_cv, function(x) {
x[which(rownames(x) %in% valid_genes_cv_expressed), ]
})
names(ENSG_cv_subset) <- names(ENSG_cv)
ENSG_cv_adj_subset <- lapply(ENSG_cv_adj, function(x) {
x[which(rownames(x) %in% valid_genes_cv_expressed), ]
})
names(ENSG_cv_adj_subset) <- names(ENSG_cv_adj)
Compute a matrix of 0’s and 1’s indicating non-detected and detected cells, respectively.
molecules_expressed_subset <- molecules_filter_subset
molecules_expressed_subset[which(molecules_filter_subset > 0 , arr.ind = TRUE)] <- 1
molecules_expressed_subset <- as.matrix((molecules_expressed_subset))
# make a batch-corrected data set in which the non-detected cells are
# code as NA
molecules_final_expressed_subset <- molecules_final_subset
molecules_final_expressed_subset[which(molecules_filter_subset == 0, arr.ind= TRUE)] <- NA
theme_set(theme_bw(base_size = 8))
cowplot::plot_grid(
plot_poisson_cv_expressed(
expr_mean = expressed_cv$all$expr_mean,
exprs_cv = expressed_cv$all$expr_cv,
ylab = "Coefficient of variation (CV)",
main = "All individauls, expressed cells") +
theme(legend.position = "none"),
plot_poisson_cv_expressed(
expr_mean = expressed_cv$NA19098$expr_mean,
exprs_cv = expressed_cv$NA19098$expr_cv,
ylab = "Coefficient of variation (CV)",
main = "NA19098 expressed cells") +
theme(legend.position = "none"),
plot_poisson_cv_expressed(
expr_mean = expressed_cv$NA19101$expr_mean,
exprs_cv = expressed_cv$NA19101$expr_cv,
ylab = "Coefficient of variation (CV)",
main = "NA19101 expressed cells") +
theme(legend.position = "none"),
plot_poisson_cv_expressed(
expr_mean = expressed_cv$NA19239$expr_mean,
exprs_cv = expressed_cv$NA19239$expr_cv,
ylab = "Coefficient of variation (CV)",
main = "NA19239 expressed cells") +
theme(legend.position = "none"),
ncol = 2,
labels = LETTERS[1:4])

CV all cells vs. expressed cells
require(matrixStats)
xlabs <- "CV of all cells"
ylabs <- "CV of expressed cells"
plot_title <- names(expressed_cv)
par(mfrow = c(2,2))
# plot(x = ENSG_cv_subset$all$cv,
# y = expressed_cv$all$expr_cv)
for (ind in names(expressed_cv)[1:3]) {
which_ind <- which(names(ENSG_cv_subset) %in% ind)
plot(x = ENSG_cv_subset[[ind]]$cv,
y = expressed_cv[[ind]]$expr_cv,
cex = .7, pch = 16, col = scales::alpha("grey20", .7),
xlab = xlabs,
ylab = ylabs,
main = plot_title[which_ind])
}
title("CV before adjustment")

DM values are orthogonal between individuals.
par(mfrow = c(2,2))
for (i in 1:2) {
for (j in (i+1):3) {
plot(expressed_cv[[i]]$expr_cv,
expressed_cv[[j]]$expr_cv,
xlab = names(expressed_cv)[i],
ylab = names(expressed_cv)[j],
cex = .7, pch = 16, col = scales::alpha("grey20", .7))
}
}
title(main = "Between individual CVs",
outer = TRUE, line = -1)
par(mfrow = c(2,2))

for (i in 1:2) {
for (j in (i+1):3) {
plot(expressed_dm[[i]],
expressed_dm[[j]],
xlab = names(expressed_cv)[i],
ylab = names(expressed_cv)[j],
cex = .7, pch = 16, col = scales::alpha("grey20", .7))
}
}
title(main = "Between individual adjusted CVs",
outer = TRUE, line = -1)

CV before correction
library(VennDiagram)
library(gridExtra)
genes <- rownames(molecules_final_subset)
overlap_list_expressed <- list(
NA19098 = genes[ which( rank(expressed_cv$NA19098$expr_cv)
> length(genes) - 1000 ) ],
NA19101 = genes[ which( rank(expressed_cv$NA19101$expr_cv)
> length(genes) - 1000 ) ],
NA19239 = genes[ which( rank(expressed_cv$NA19239$expr_cv)
> length(genes) - 1000 ) ] )
overlap_list_all <- list(
NA19098 = genes[ which( rank(ENSG_cv_subset$NA19098$cv)
> length(genes) - 1000 ) ],
NA19101 = genes[ which( rank(ENSG_cv_subset$NA19101$cv)
> length(genes) - 1000 ) ],
NA19239 = genes[ which( rank(ENSG_cv_subset$NA19239$cv)
> length(genes) - 1000 ) ] )
grid.arrange(gTree(children = venn.diagram(overlap_list_all,filename = NULL,
category.names = names(overlap_list_all),
name = "All cells")),
gTree(children = venn.diagram(overlap_list_expressed,filename = NULL,
category.names = names(overlap_list_expressed),
name = "Expressed cells")),
ncol = 2)

CV after correction
genes <- rownames(molecules_final_subset)
overlap_list_expressed <- list(
NA19098 = genes[ which( rank(expressed_dm$NA19098)
> length(genes) - 1000 ) ],
NA19101 = genes[ which( rank(expressed_dm$NA19101)
> length(genes) - 1000 ) ],
NA19239 = genes[ which( rank(expressed_dm$NA19239)
> length(genes) - 1000 ) ] )
overlap_list_all <- list(
NA19098 = genes[ which( rank(ENSG_cv_adj_subset$NA19098$log10cv2_adj)
> length(genes) - 1000 ) ],
NA19101 = genes[ which( rank(ENSG_cv_adj_subset$NA19101$log10cv2_adj)
> length(genes) - 1000 ) ],
NA19239 = genes[ which( rank(ENSG_cv_adj_subset$NA19239$log10cv2_adj)
> length(genes) - 1000 ) ] )
grid.arrange(gTree(children = venn.diagram(overlap_list_all,filename = NULL,
category.names = names(overlap_list_all),
name = "All cells")),
gTree(children = venn.diagram(overlap_list_expressed,filename = NULL,
category.names = names(overlap_list_expressed),
name = "Expressed cells")),
ncol = 2)

Mean and CV
genes <- rownames(molecules_final_subset)
overlap_list_expressed <- list(
NA19098 = genes[ which( rank(expressed_dm$NA19098)
> length(genes) - 1000 ) ],
NA19101 = genes[ which( rank(expressed_dm$NA19101)
> length(genes) - 1000 ) ],
NA19239 = genes[ which( rank(expressed_dm$NA19239)
> length(genes) - 1000 ) ] )
overlap_list_mn <- list(
NA19098 = genes[ which( rank(expressed_cv$NA19098$expr_mean)
> length(genes) - 1000 ) ],
NA19101 = genes[ which( rank(expressed_cv$NA19101$expr_mean)
> length(genes) - 1000 ) ],
NA19239 = genes[ which( rank(expressed_cv$NA19239$expr_mean)
> length(genes) - 1000 ) ] )
grid.arrange(gTree(children = venn.diagram(overlap_list_expressed,filename = NULL,
category.names = names(overlap_list_expressed),
name = "Adjusted CV")),
gTree(children = venn.diagram(overlap_list_mn,filename = NULL,
category.names = names(overlap_list_mn),
name = "Abundance")),
ncol = 2)

Permutation analysis was done on midway. The following objects were exported to midway for the analysis.
[chunk not evaluated]
library(matrixStats)
mad_expressed <- rowMedians( abs( as.matrix(expressed_dm) - rowMedians(as.matrix(expressed_dm)) ) )
save(
mad_expressed,
anno_filter,
molecules_final_df,
molecules_expressed_df,
file = "rda/cv-adjusted-summary-pois-expressed/rda-for-midway-expressed-cells.rda")
Compute dissimilarity between individual adjusted CV for each gene.
The following batch script runs permute-cv-test-expressed.r.
[chunk not evaluated]
sbatch permute-cv-test-expressed.sbatch
Compute empirical p-values.
The following batch script runs permute-cv-compute-pval-expressed.r.
[chunk not evaluated]
sbatch permute-cv-compute-pval-expressed.sbatch
Load results.
load("../data/permuted-pval-expressed.rda")
permuted_pval$mad_pval_rev <- permuted_pval$mad_pval
permuted_pval$mad_pval_rev[permuted_pval$mad_pval == 0] <- 1/length(permuted_pval$mad_pval)
par(mfrow = c(1,1))
hist(permuted_pval$mad_pval_rev,
main = "Diff. in the expressed cells",
xlab = "permtued p-values")

Pluripotency genes
sig_genes <- rownames(permuted_pval)[which(permuted_pval$mad_pval == 0)]
sig_genes[which(sig_genes %in% pluripotency_genes)]
[1] "ENSG00000088305" "ENSG00000148200"
gene_symbols[which(gene_symbols$ensembl_gene_id %in% sig_genes[which(sig_genes %in% pluripotency_genes)]), ]
ensembl_gene_id chromosome_name external_gene_name transcript_count
1384 ENSG00000088305 20 DNMT3B 8
6587 ENSG00000148200 9 NR6A1 5
description
1384 DNA (cytosine-5-)-methyltransferase 3 beta [Source:HGNC Symbol;Acc:2979]
6587 nuclear receptor subfamily 6, group A, member 1 [Source:HGNC Symbol;Acc:7985]
I used CPDB go perform enrichment analysis. The enriched GO term are represented in WordCloud as follows.

go_top <- read.table("figure/cv-adjusted-summary-pois-expressed.Rmd/go-expressed-sig.tab",
sep = "\t",
header = TRUE)
go_top <- go_top[go_top$q.value < .1, ]
as.character(go_top$term_name)
[1] "RNA binding"
[2] "poly(A) RNA binding"
[3] "ribonucleoprotein complex"
[4] "intracellular organelle part"
[5] "translation"
[6] "translational initiation"
[7] "amide biosynthetic process"
[8] "cellular amide metabolic process"
[9] "peptide biosynthetic process"
[10] "intracellular organelle"
[11] "peptide metabolic process"
[12] "membrane-bounded organelle"
[13] "intracellular membrane-bounded organelle"
[14] "translational elongation"
[15] "intracellular part"
[16] "cellular nitrogen compound metabolic process"
[17] "ribosome"
[18] "intracellular"
[19] "cytoplasm"
[20] "nitrogen compound metabolic process"
[21] "mitochondrial inner membrane"
[22] "organonitrogen compound metabolic process"
[23] "mitochondrial envelope"
[24] "organelle inner membrane"
[25] "mitochondrial membrane"
[26] "organonitrogen compound biosynthetic process"
[27] "organelle envelope"
[28] "envelope"
[29] "structural constituent of ribosome"
[30] "intracellular organelle lumen"
[31] "mitochondrial part"
[32] "mitochondrion"
[33] "organelle lumen"
[34] "cytoplasmic part"
[35] "nuclear part"
[36] "ribosomal subunit"
[37] "protein complex disassembly"
[38] "macromolecular complex subunit organization"
[39] "protein targeting to ER"
[40] "macromolecular complex disassembly"
[41] "multi-organism cellular process"
[42] "mRNA metabolic process"
[43] "establishment of protein localization to endoplasmic reticulum"
[44] "cellular metabolic process"
[45] "nuclear lumen"
[46] "viral process"
[47] "nucleic acid binding"
[48] "interspecies interaction between organisms"
[49] "symbiosis, encompassing mutualism through parasitism"
[50] "gene expression"
[51] "RNA processing"
[52] "ribonucleoprotein complex biogenesis"
[53] "cellular component disassembly"
[54] "viral life cycle"
[55] "protein complex subunit organization"
[56] "cellular macromolecule metabolic process"
[57] "cytosolic ribosome"
[58] "primary metabolic process"
[59] "viral gene expression"
[60] "nucleus"
[61] "cellular nitrogen compound biosynthetic process"
[62] "mitochondrial translation"
[63] "organic substance metabolic process"
[64] "protein complex"
[65] "multi-organism metabolic process"
[66] "mitochondrion organization"
[67] "cellular component organization"
[68] "nucleoplasm"
[69] "mitochondrial translational initiation"
[70] "RNA catabolic process"
[71] "macromolecule metabolic process"
[72] "heterocycle metabolic process"
[73] "heterocyclic compound binding"
[74] "biosynthetic process"
[75] "establishment of protein localization to organelle"
[76] "protein localization to organelle"
[77] "nucleobase-containing compound metabolic process"
[78] "cellular biosynthetic process"
[79] "nucleolus"
[80] "organic cyclic compound binding"
[81] "non-membrane-bounded organelle"
[82] "intracellular non-membrane-bounded organelle"
[83] "mitochondrial protein complex"
[84] "organic cyclic compound metabolic process"
[85] "cellular aromatic compound metabolic process"
[86] "cellular macromolecule biosynthetic process"
[87] "nucleobase-containing compound catabolic process"
[88] "cellular protein metabolic process"
[89] "macromolecule biosynthetic process"
[90] "organellar ribosome"
[91] "mitochondrial ribosome"
[92] "large ribosomal subunit"
[93] "organic substance biosynthetic process"
[94] "cellular component biogenesis"
[95] "cytoplasmic transport"
[96] "protein metabolic process"
[97] "cellular macromolecule catabolic process"
[98] "cytosol"
[99] "ribosome biogenesis"
[100] "mitochondrial membrane part"
[101] "RNA metabolic process"
[102] "small ribosomal subunit"
[103] "cytosolic large ribosomal subunit"
[104] "macromolecular complex assembly"
[105] "nucleic acid metabolic process"
[106] "cytosolic part"
[107] "cellular nitrogen compound catabolic process"
[108] "heterocycle catabolic process"
[109] "extracellular organelle"
[110] "extracellular vesicle"
[111] "cellular respiration"
[112] "organelle membrane"
[113] "cell cycle phase transition"
[114] "aromatic compound catabolic process"
[115] "extracellular membrane-bounded organelle"
[116] "extracellular exosome"
[117] "establishment of protein localization to membrane"
[118] "inner mitochondrial membrane protein complex"
[119] "ncRNA metabolic process"
[120] "DNA damage response, detection of DNA damage"
[121] "macromolecule catabolic process"
[122] "intracellular transport"
[123] "organic cyclic compound catabolic process"
[124] "protein binding"
[125] "single-organism intracellular transport"
[126] "cellular macromolecular complex assembly"
[127] "mitotic cell cycle phase transition"
[128] "protein localization to membrane"
[129] "organelle organization"
[130] "respiratory electron transport chain"
[131] "single-organism metabolic process"
[132] "ribonucleoprotein complex assembly"
[133] "electron transport chain"
[134] "cellular macromolecule localization"
[135] "cellular protein localization"
[136] "ribonucleoprotein complex subunit organization"
[137] "cellular response to stress"
[138] "focal adhesion"
[139] "cell-substrate adherens junction"
[140] "respiratory chain"
[141] "nucleosomal DNA binding"
[142] "cell-substrate junction"
[143] "cytosolic small ribosomal subunit"
[144] "mitochondrial matrix"
[145] "regulation of cellular amide metabolic process"
[146] "nucleoplasm part"
[147] "single-organism membrane organization"
[148] "intracellular protein transport"
[149] "cell cycle G2/M phase transition"
[150] "nucleoside monophosphate metabolic process"
[151] "single-organism biosynthetic process"
[152] "double-stranded RNA binding"
[153] "negative regulation of cell cycle"
[154] "spliceosomal complex"
[155] "mitotic cell cycle"
[156] "cellular component assembly"
[157] "ribosomal small subunit biogenesis"
[158] "cellular catabolic process"
[159] "single-organism organelle organization"
[160] "response to unfolded protein"
[161] "organic substance catabolic process"
[162] "macromolecule localization"
[163] "heterocycle biosynthetic process"
[164] "adherens junction"
[165] "multi-organism localization"
[166] "multi-organism transport"
[167] "cell cycle G1/S phase transition"
[168] "structure-specific DNA binding"
[169] "positive regulation of catabolic process"
[170] "cell cycle process"
[171] "aromatic compound biosynthetic process"
[172] "protein localization"
[173] "membrane-bounded vesicle"
[174] "energy derivation by oxidation of organic compounds"
[175] "organic cyclic compound biosynthetic process"
[176] "mitochondrial membrane organization"
[177] "mitotic cell cycle process"
[178] "catabolic process"
[179] "response to topologically incorrect protein"
[180] "anchoring junction"
[181] "generation of precursor metabolites and energy"
[182] "catalytic complex"
[183] "regulation of cell cycle"
[184] "regulation of cell death"
[185] "nucleobase-containing compound biosynthetic process"
[186] "regulation of mitotic cell cycle"
[187] "regulation of protein catabolic process"
[188] "single-organism cellular localization"
[189] "regulation of ubiquitin-protein ligase activity involved in mitotic cell cycle"
[190] "ubiquitin protein ligase binding"
[191] "vesicle"
[192] "nucleoside triphosphate metabolic process"
[193] "chromosome organization"
[194] "nucleosome binding"
[195] "retromer complex"
[196] "exon-exon junction complex"
[197] "ubiquitin-like protein ligase binding"
[198] "unfolded protein binding"
[199] "cellular localization"
[200] "RNA localization"
[201] "regulation of cell cycle process"
[202] "mitochondrial proton-transporting ATP synthase complex"
[203] "regulation of programmed cell death"
[204] "chromosomal part"
[205] "membrane organization"
[206] "proton-transporting ATP synthase complex"
[207] "mitotic cell cycle checkpoint"
[208] "establishment of RNA localization"
[209] "RNA transport"
[210] "RNA biosynthetic process"
[211] "preribosome"
[212] "translesion synthesis"
[213] "transcription-coupled nucleotide-excision repair"
[214] "mitochondrial small ribosomal subunit"
[215] "organellar small ribosomal subunit"
[216] "erythrocyte homeostasis"
[217] "ribonucleoprotein complex localization"
[218] "mitochondrial respiratory chain"
[219] "regulation of cellular protein metabolic process"
[220] "transport of virus"
[221] "proton-transporting two-sector ATPase complex"
[222] "myeloid cell homeostasis"
[223] "protein complex biogenesis"
[224] "protein complex assembly"
[225] "chromatin"
[226] "membrane protein complex"
[227] "base-excision repair"
[228] "MHC class II protein complex binding"
[229] "purine nucleoside metabolic process"
[230] "regulation of ligase activity"
[231] "ribonucleoprotein complex binding"
[232] "SMAD protein complex"
[233] "ribosomal large subunit binding"
[234] "establishment of protein localization"
[235] "regulation of mitochondrial membrane permeability"
[236] "oxidation-reduction process"
[237] "ribosomal large subunit biogenesis"
[238] "cell cycle"
[239] "regulation of transferase activity"
[240] "protein insertion into membrane"
[241] "apoptotic mitochondrial changes"
[242] "protein insertion into mitochondrial membrane involved in apoptotic signaling pathway"
[243] "response to endoplasmic reticulum stress"
[244] "death"
[245] "catalytic step 2 spliceosome"
[246] "regulation of viral process"
[247] "regulation of membrane permeability"
[248] "respiratory chain complex"
[249] "protein insertion into mitochondrial membrane"
[250] "second spliceosomal transesterification activity"
[251] "farnesyl diphosphate metabolic process"
[252] "glycoprotein transport"
[253] "dimethylallyltranstransferase activity"
[254] "proteasome complex"
[255] "signal transduction involved in cell cycle checkpoint"
[256] "establishment of localization in cell"
[257] "small nucleolar ribonucleoprotein complex"
[258] "nucleobase-containing small molecule interconversion"
[259] "MHC protein complex binding"
[260] "error-free translesion synthesis"
[261] "nuclear body"
[262] "negative regulation of macromolecule metabolic process"
[263] "regulation of protein metabolic process"
[264] "DNA conformation change"
[265] "cell death"
[266] "Cul2-RING ubiquitin ligase complex"
[267] "ribonucleoside metabolic process"
[268] "postreplication repair"
[269] "regulation of symbiosis, encompassing mutualism through parasitism"
[270] "apoptotic process"
[271] "macromolecular complex binding"
[272] "nucleoside metabolic process"
[273] "proteasome core complex"
[274] "cyclin-dependent protein serine/threonine kinase regulator activity"
[275] "small-subunit processome"
[276] "regulation of transcription regulatory region DNA binding"
[277] "protein transport"
[278] "single-stranded RNA binding"
[279] "regulation of cyclin-dependent protein serine/threonine kinase activity"
[280] "chromatin DNA binding"
[281] "establishment of protein localization to mitochondrion"
[282] "cellular response to DNA damage stimulus"
[283] "negative regulation of metabolic process"
[284] "negative regulation of molecular function"
[285] "oxidoreductase activity, acting on NAD(P)H, quinone or similar compound as acceptor"
[286] "threonine-type peptidase activity"
[287] "chromosome"
[288] "positive regulation of cell cycle"
[289] "negative regulation of catalytic activity"
[290] "deoxyribonucleotide biosynthetic process"
[291] "NADH dehydrogenase (quinone) activity"
[292] "regulation of cellular catabolic process"
[293] "programmed cell death"
[294] "monosaccharide biosynthetic process"
[295] "multi-organism intracellular transport"
[296] "mitochondrial respiratory chain complex I"
[297] "NADH dehydrogenase complex"
[298] "respiratory chain complex I"
[299] "organelle envelope lumen"
[300] "antigen processing and presentation of exogenous peptide antigen via MHC class I"
[301] "DNA repair"
[302] "carboxy-terminal domain protein kinase complex"
[303] "anaphase-promoting complex"
[304] "cytoplasmic ribonucleoprotein granule"
[305] "regulation of cellular amino acid metabolic process"
[306] "asparagine metabolic process"
[307] "cerebellum maturation"
[308] "positive regulation of cell adhesion molecule production"
[309] "Barr body"
[310] "antigen processing and presentation of exogenous peptide antigen"
[311] "negative regulation of cell death"
[312] "response to follicle-stimulating hormone"
[313] "regulation of cardiac muscle cell action potential involved in regulation of contraction"
[314] "transferase complex"
[315] "regulation of action potential"
[316] "glycosyl compound metabolic process"
[317] "single-organism cellular process"
[318] "cullin-RING ubiquitin ligase complex"
[319] "regulation of multi-organism process"
[320] "nucleobase-containing compound transport"
[321] "mitochondrial RNA metabolic process"
[322] "proteasomal protein catabolic process"
[323] "mitochondrial transmembrane transport"
[324] "rRNA binding"
[325] "cerebellar Purkinje cell layer formation"
[326] "proton-transporting ATP synthase complex, coupling factor F(o)"
[327] "regulation of cell communication by electrical coupling"
[328] "protein phosphatase type 1 regulator activity"
[329] "antigen processing and presentation of exogenous antigen"
[330] "ribonucleoprotein granule"
library(mygene)
go_top_genes <- getGenes(gsub(";", ",",
as.character(go_top$members_input_overlap_geneids)))
go_top_genes <- go_top_genes[!duplicated(go_top_genes[ , "symbol"]), ]
kable(data.frame(symbol = go_top_genes[ ,"symbol"],
name = go_top_genes[,"name"]) )
| symbol | name |
|---|---|
| PPP1R8 | protein phosphatase 1 regulatory subunit 8 |
| HMGN5 | high mobility group nucleosome binding domain 5 |
| DCAF13 | DDB1 and CUL4 associated factor 13 |
| HIST1H4C | histone cluster 1, H4c |
| RPL35A | ribosomal protein L35a |
| KCTD12 | potassium channel tetramerization domain containing 12 |
| CSDE1 | cold shock domain containing E1 |
| RTCB | RNA 2’,3’-cyclic phosphate and 5’-OH ligase |
| SRP14 | signal recognition particle 14kDa |
| CMSS1 | cms1 ribosomal small subunit homolog (yeast) |
| STRAP | serine/threonine kinase receptor associated protein |
| DARS2 | aspartyl-tRNA synthetase 2, mitochondrial |
| EIF2S1 | eukaryotic translation initiation factor 2 subunit alpha |
| WDHD1 | WD repeat and HMG-box DNA binding protein 1 |
| RPL14 | ribosomal protein L14 |
| MBNL3 | muscleblind like splicing regulator 3 |
| ZC3H14 | zinc finger CCCH-type containing 14 |
| SLTM | SAFB like transcription modulator |
| NTPCR | nucleoside-triphosphatase, cancer-related |
| PRDX1 | peroxiredoxin 1 |
| EIF3C | eukaryotic translation initiation factor 3 subunit C |
| EIF3CL | eukaryotic translation initiation factor 3 subunit C-like |
| LSM14A | LSM14A mRNA processing body assembly factor |
| RPS6 | ribosomal protein S6 |
| MRPS9 | mitochondrial ribosomal protein S9 |
| ADAR | adenosine deaminase, RNA-specific |
| SLU7 | SLU7 homolog, splicing factor |
| RPL28 | ribosomal protein L28 |
| THOC3 | THO complex 3 |
| RPS23 | ribosomal protein S23 |
| RPS3A | ribosomal protein S3A |
| DHX36 | DEAH-box helicase 36 |
| SEC61B | Sec61 translocon beta subunit |
| NUCKS1 | nuclear casein kinase and cyclin-dependent kinase substrate 1 |
| DAZL | deleted in azoospermia like |
| TRMT6 | tRNA methyltransferase 6 |
| MAGOH | mago homolog, exon junction complex core component |
| YWHAE | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon |
| BMS1 | BMS1, ribosome biogenesis factor |
| TCEB2 | transcription elongation factor B subunit 2 |
| ASCC3 | activating signal cointegrator 1 complex subunit 3 |
| MRPL15 | mitochondrial ribosomal protein L15 |
| RPS4Y1 | ribosomal protein S4, Y-linked 1 |
| MRPL18 | mitochondrial ribosomal protein L18 |
| SNRPG | small nuclear ribonucleoprotein polypeptide G |
| NOL11 | nucleolar protein 11 |
| SMARCE1 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 |
| TUBA1B | tubulin alpha 1b |
| NOL8 | nucleolar protein 8 |
| MRTO4 | MRT4 homolog, ribosome maturation factor |
| HSPD1 | heat shock protein family D (Hsp60) member 1 |
| PEBP1 | phosphatidylethanolamine binding protein 1 |
| CPSF2 | cleavage and polyadenylation specific factor 2 |
| RPL23 | ribosomal protein L23 |
| SPEN | spen family transcriptional repressor |
| ACIN1 | apoptotic chromatin condensation inducer 1 |
| KIAA0907 | KIAA0907 |
| DYNC1H1 | dynein cytoplasmic 1 heavy chain 1 |
| PARP1 | poly(ADP-ribose) polymerase 1 |
| MRPS28 | mitochondrial ribosomal protein S28 |
| EEF1B2 | eukaryotic translation elongation factor 1 beta 2 |
| RPS27A | ribosomal protein S27a |
| SERBP1 | SERPINE1 mRNA binding protein 1 |
| NUFIP1 | nuclear fragile X mental retardation protein interacting protein 1 |
| MANF | mesencephalic astrocyte derived neurotrophic factor |
| PNPT1 | polyribonucleotide nucleotidyltransferase 1 |
| ZCRB1 | zinc finger CCHC-type and RNA binding motif containing 1 |
| SOX11 | SRY-box 11 |
| RPS7 | ribosomal protein S7 |
| RAN | RAN, member RAS oncogene family |
| MRPS35 | mitochondrial ribosomal protein S35 |
| YWHAG | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein gamma |
| SF3B1 | splicing factor 3b subunit 1 |
| NOP58 | NOP58 ribonucleoprotein |
| PIN4 | peptidylprolyl cis/trans isomerase, NIMA-interacting 4 |
| SLC25A11 | solute carrier family 25 member 11 |
| DHX32 | DEAH-box helicase 32 (putative) |
| YTHDC1 | YTH domain containing 1 |
| MSN | moesin |
| RALY | RALY heterogeneous nuclear ribonucleoprotein |
| TARBP1 | TAR (HIV-1) RNA binding protein 1 |
| RPS14 | ribosomal protein S14 |
| RPL18 | ribosomal protein L18 |
| HMGB2 | high mobility group box 2 |
| RSRC2 | arginine/serine-rich coiled-coil 2 |
| EXOSC7 | exosome component 7 |
| HSP90AB1 | heat shock protein 90kDa alpha family class B member 1 |
| EIF3I | eukaryotic translation initiation factor 3 subunit I |
| SUMO1 | small ubiquitin-like modifier 1 |
| THRAP3 | thyroid hormone receptor associated protein 3 |
| DDX1 | DEAD/H-box helicase 1 |
| EIF4E2 | eukaryotic translation initiation factor 4E family member 2 |
| RBM28 | RNA binding motif protein 28 |
| PRPF8 | pre-mRNA processing factor 8 |
| EZH2 | enhancer of zeste 2 polycomb repressive complex 2 subunit |
| RPL27 | ribosomal protein L27 |
| PYM1 | PYM homolog 1, exon junction complex associated factor |
| EPRS | glutamyl-prolyl-tRNA synthetase |
| THOC2 | THO complex 2 |
| RPS8 | ribosomal protein S8 |
| UTP14A | UTP14A small subunit processome component |
| LTA4H | leukotriene A4 hydrolase |
| BTF3 | basic transcription factor 3 |
| NPM1 | nucleophosmin (nucleolar phosphoprotein B23, numatrin) |
| MRPL37 | mitochondrial ribosomal protein L37 |
| MRPL54 | mitochondrial ribosomal protein L54 |
| RBMS3 | RNA binding motif, single stranded interacting protein 3 |
| ZNF385A | zinc finger protein 385A |
| RPL10A | ribosomal protein L10a |
| TCP1 | t-complex 1 |
| RPL36 | ribosomal protein L36 |
| HNRNPA1 | heterogeneous nuclear ribonucleoprotein A1 |
| IMMT | inner membrane mitochondrial protein |
| SND1 | staphylococcal nuclease and tudor domain containing 1 |
| FDPS | farnesyl diphosphate synthase |
| CNBP | CCHC-type zinc finger, nucleic acid binding protein |
| RPF2 | ribosome production factor 2 homolog |
| RPL29 | ribosomal protein L29 |
| DIDO1 | death inducer-obliterator 1 |
| XRCC5 | X-ray repair complementing defective repair in Chinese hamster cells 5 |
| YARS2 | tyrosyl-tRNA synthetase 2 |
| HEXIM1 | hexamethylene bis-acetamide inducible 1 |
| AARS2 | alanyl-tRNA synthetase 2, mitochondrial |
| NDUFV3 | NADH:ubiquinone oxidoreductase subunit V3 |
| SNRNP35 | small nuclear ribonucleoprotein U11/U12 subunit 35 |
| UTP11 | UTP11, small subunit processome component homolog (S. cerevisiae) |
| LSM6 | LSM6 homolog, U6 small nuclear RNA and mRNA degradation associated |
| MRPS24 | mitochondrial ribosomal protein S24 |
| ALKBH5 | alkB homolog 5, RNA demethylase |
| ILF2 | interleukin enhancer binding factor 2 |
| HSPB1 | heat shock protein family B (small) member 1 |
| MRPL39 | mitochondrial ribosomal protein L39 |
| SRP9 | signal recognition particle 9kDa |
| RPL37 | ribosomal protein L37 |
| SUMO2 | small ubiquitin-like modifier 2 |
| ZRANB2 | zinc finger RANBP2-type containing 2 |
| PEG10 | paternally expressed 10 |
| HSP90AA1 | heat shock protein 90kDa alpha family class A member 1 |
| STIP1 | stress induced phosphoprotein 1 |
| SCAF11 | SR-related CTD associated factor 11 |
| SUCLG1 | succinate-CoA ligase, alpha subunit |
| RPL41 | ribosomal protein L41 |
| ERH | enhancer of rudimentary homolog (Drosophila) |
| HMGN2 | high mobility group nucleosomal binding domain 2 |
| NHP2 | NHP2 ribonucleoprotein |
| NOCT | nocturnin |
| RPL26L1 | ribosomal protein L26 like 1 |
| ILF3 | interleukin enhancer binding factor 3 |
| TIA1 | TIA1 cytotoxic granule-associated RNA binding protein |
| SRSF1 | serine/arginine-rich splicing factor 1 |
| MRPL33 | mitochondrial ribosomal protein L33 |
| MRPL34 | mitochondrial ribosomal protein L34 |
| CWC27 | CWC27 spliceosome associated protein homolog |
| PSMA4 | proteasome subunit alpha 4 |
| MRPL48 | mitochondrial ribosomal protein L48 |
| TUBB | tubulin beta class I |
| SRA1 | steroid receptor RNA activator 1 |
| MRPL50 | mitochondrial ribosomal protein L50 |
| MRPL55 | mitochondrial ribosomal protein L55 |
| HSPA14 | heat shock protein family A (Hsp70) member 14 |
| MRPL51 | mitochondrial ribosomal protein L51 |
| RPP40 | ribonuclease P/MRP 40kDa subunit |
| MRPS18C | mitochondrial ribosomal protein S18C |
| PSMC2 | proteasome 26S subunit, ATPase 2 |
| MRPS10 | mitochondrial ribosomal protein S10 |
| WDR12 | WD repeat domain 12 |
| FLOT1 | flotillin 1 |
| NDUFAF4 | NADH:ubiquinone oxidoreductase complex assembly factor 4 |
| CCNH | cyclin H |
| UBE2C | ubiquitin conjugating enzyme E2 C |
| CASP6 | caspase 6 |
| CNIH1 | cornichon family AMPA receptor auxiliary protein 1 |
| BRWD1 | bromodomain and WD repeat domain containing 1 |
| TTC19 | tetratricopeptide repeat domain 19 |
| CEP112 | centrosomal protein 112kDa |
| MGST3 | microsomal glutathione S-transferase 3 |
| CKS1B | CDC28 protein kinase regulatory subunit 1B |
| IMMP1L | inner mitochondrial membrane peptidase subunit 1 |
| UQCRB | ubiquinol-cytochrome c reductase binding protein |
| CAV1 | caveolin 1 |
| PSMB4 | proteasome subunit beta 4 |
| KPNA3 | karyopherin subunit alpha 3 |
| IDS | iduronate 2-sulfatase |
| CSPP1 | centrosome and spindle pole associated protein 1 |
| CAMK2D | calcium/calmodulin-dependent protein kinase II delta |
| FLVCR1 | feline leukemia virus subgroup C cellular receptor 1 |
| CCND1 | cyclin D1 |
| CDC26 | cell division cycle 26 |
| POLR2J | polymerase (RNA) II subunit J |
| RPA2 | replication protein A2 |
| SULF2 | sulfatase 2 |
| ATP6V1G1 | ATPase H+ transporting V1 subunit G1 |
| HBEGF | heparin binding EGF like growth factor |
| KRTCAP2 | keratinocyte associated protein 2 |
| EXTL2 | exostosin-like glycosyltransferase 2 |
| PPP2CB | protein phosphatase 2 catalytic subunit beta |
| NME4 | NME/NM23 nucleoside diphosphate kinase 4 |
| RANBP1 | RAN binding protein 1 |
| PDGFD | platelet derived growth factor D |
| USP1 | ubiquitin specific peptidase 1 |
| MAGT1 | magnesium transporter 1 |
| CYB5B | cytochrome b5 type B |
| TRIM37 | tripartite motif containing 37 |
| TVP23C | trans-golgi network vesicle protein 23 homolog C (S. cerevisiae) |
| DRAM2 | DNA damage regulated autophagy modulator 2 |
| MNAT1 | MNAT1, CDK activating kinase assembly factor |
| UQCR11 | ubiquinol-cytochrome c reductase, complex III subunit XI |
| CEP295 | centrosomal protein 295kDa |
| NR6A1 | nuclear receptor subfamily 6 group A member 1 |
| C7orf73 | chromosome 7 open reading frame 73 |
| DTYMK | deoxythymidylate kinase |
| CAPZA2 | capping actin protein of muscle Z-line alpha subunit 2 |
| TDG | thymine DNA glycosylase |
| PSMB2 | proteasome subunit beta 2 |
| ATP5O | ATP synthase, H+ transporting, mitochondrial F1 complex, O subunit |
| DHRS1 | dehydrogenase/reductase (SDR family) member 1 |
| ALDH5A1 | aldehyde dehydrogenase 5 family member A1 |
| PHLDA1 | pleckstrin homology like domain family A member 1 |
| TRAPPC4 | trafficking protein particle complex 4 |
| ALG8 | ALG8, alpha-1,3-glucosyltransferase |
| COIL | coilin |
| HADHA | hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), alpha subunit |
| YWHAQ | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta |
| ABHD14B | abhydrolase domain containing 14B |
| ACADM | acyl-CoA dehydrogenase, C-4 to C-12 straight chain |
| TMA16 | translation machinery associated 16 homolog |
| TTF1 | transcription termination factor, RNA polymerase I |
| SHISA2 | shisa family member 2 |
| RECQL | RecQ like helicase |
| KANSL2 | KAT8 regulatory NSL complex subunit 2 |
| CERS5 | ceramide synthase 5 |
| FBXO5 | F-box protein 5 |
| ATP6V1E1 | ATPase H+ transporting V1 subunit E1 |
| H2AFY | H2A histone family member Y |
| COX17 | COX17 cytochrome c oxidase copper chaperone |
| HLA-DPB1 | major histocompatibility complex, class II, DP beta 1 |
| HMGN3 | high mobility group nucleosomal binding domain 3 |
| FDFT1 | farnesyl-diphosphate farnesyltransferase 1 |
| PHB2 | prohibitin 2 |
| NUP133 | nucleoporin 133kDa |
| NAT8L | N-acetyltransferase 8 like |
| ARID4B | AT-rich interaction domain 4B |
| ANAPC2 | anaphase promoting complex subunit 2 |
| DBI | diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) |
| HSPA2 | heat shock protein family A (Hsp70) member 2 |
| RNF180 | ring finger protein 180 |
| NDC80 | NDC80 kinetochore complex component |
| COL2A1 | collagen type II alpha 1 |
| KIAA0101 | KIAA0101 |
| HIP1R | huntingtin interacting protein 1 related |
| ASAH1 | N-acylsphingosine amidohydrolase (acid ceramidase) 1 |
| ENY2 | enhancer of yellow 2 homolog (Drosophila) |
| ERO1B | endoplasmic reticulum oxidoreductase beta |
| CKAP5 | cytoskeleton associated protein 5 |
| PTPN2 | protein tyrosine phosphatase, non-receptor type 2 |
| KIF21A | kinesin family member 21A |
| SNX5 | sorting nexin 5 |
| TRIM35 | tripartite motif containing 35 |
| COPB1 | coatomer protein complex subunit beta 1 |
| SRC | SRC proto-oncogene, non-receptor tyrosine kinase |
| UBR4 | ubiquitin protein ligase E3 component n-recognin 4 |
| FAM96A | family with sequence similarity 96 member A |
| SIN3A | SIN3 transcription regulator family member A |
| HIST2H2BE | histone cluster 2, H2be |
| MED21 | mediator complex subunit 21 |
| CDC42BPB | CDC42 binding protein kinase beta |
| MGAT4A | mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A |
| CRTC2 | CREB regulated transcription coactivator 2 |
| LAP3 | leucine aminopeptidase 3 |
| HLA-DMB | major histocompatibility complex, class II, DM beta |
| ABCA7 | ATP binding cassette subfamily A member 7 |
| OLA1 | Obg-like ATPase 1 |
| HS3ST5 | heparan sulfate-glucosamine 3-sulfotransferase 5 |
| IST1 | IST1, ESCRT-III associated factor |
| ANKRD12 | ankyrin repeat domain 12 |
| COX7B | cytochrome c oxidase subunit 7B |
| HM13 | histocompatibility (minor) 13 |
| POLR1C | polymerase (RNA) I subunit C |
| TOMM20 | translocase of outer mitochondrial membrane 20 |
| DPH3 | diphthamide biosynthesis 3 |
| MTCH2 | mitochondrial carrier 2 |
| SLAIN2 | SLAIN motif family member 2 |
| SRI | sorcin |
| FUNDC1 | FUN14 domain containing 1 |
| MIS18BP1 | MIS18 binding protein 1 |
| B3GNT5 | UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 5 |
| LAMTOR2 | late endosomal/lysosomal adaptor, MAPK and MTOR activator 2 |
| RDH11 | retinol dehydrogenase 11 (all-trans/9-cis/11-cis) |
| CHMP2A | charged multivesicular body protein 2A |
| ADI1 | acireductone dioxygenase 1 |
| PDS5B | PDS5 cohesin associated factor B |
| ERGIC3 | ERGIC and golgi 3 |
| URI1 | URI1 prefoldin-like chaperone |
| RND2 | Rho family GTPase 2 |
| POLH | polymerase (DNA) eta |
| FAM110C | family with sequence similarity 110 member C |
| NDUFV2 | NADH:ubiquinone oxidoreductase core subunit V2 |
| TIMM17A | translocase of inner mitochondrial membrane 17 homolog A (yeast) |
| ATP5H | ATP synthase, H+ transporting, mitochondrial Fo complex subunit D |
| H2AFZ | H2A histone family member Z |
| ANAPC16 | anaphase promoting complex subunit 16 |
| LAMTOR4 | late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 |
| DZIP1 | DAZ interacting zinc finger protein 1 |
| POU2F3 | POU class 2 homeobox 3 |
| EML2 | echinoderm microtubule associated protein like 2 |
| ATP5G3 | ATP synthase, H+ transporting, mitochondrial Fo complex subunit C3 (subunit 9) |
| SMAD5 | SMAD family member 5 |
| NDUFA8 | NADH:ubiquinone oxidoreductase subunit A8 |
| TRAPPC8 | trafficking protein particle complex 8 |
| TMEM18 | transmembrane protein 18 |
| TPGS2 | tubulin polyglutamylase complex subunit 2 |
| PAWR | pro-apoptotic WT1 regulator |
| SEC22A | SEC22 homolog A, vesicle trafficking protein |
| TOMM5 | translocase of outer mitochondrial membrane 5 |
| HMGA2 | high mobility group AT-hook 2 |
| UROD | uroporphyrinogen decarboxylase |
| CLIC1 | chloride intracellular channel 1 |
| CABIN1 | calcineurin binding protein 1 |
| TAF7 | TATA-box binding protein associated factor 7 |
| KIF20B | kinesin family member 20B |
| CCNL1 | cyclin L1 |
| PCCB | propionyl-CoA carboxylase beta subunit |
| SYNM | synemin |
| CENPW | centromere protein W |
| HMGCS1 | 3-hydroxy-3-methylglutaryl-CoA synthase 1 |
| P2RX5 | purinergic receptor P2X 5 |
| DPM3 | dolichyl-phosphate mannosyltransferase subunit 3 |
| INO80B | INO80 complex subunit B |
| NDUFA3 | NADH:ubiquinone oxidoreductase subunit A3 |
| RRM2 | ribonucleotide reductase regulatory subunit M2 |
| APOOL | apolipoprotein O like |
| PBX1 | pre-B-cell leukemia homeobox 1 |
| PPP1R15A | protein phosphatase 1 regulatory subunit 15A |
| PWP1 | PWP1 homolog, endonuclein |
| RMDN1 | regulator of microtubule dynamics 1 |
| MDH1 | malate dehydrogenase 1 |
| MRE11A | MRE11 homolog A, double strand break repair nuclease |
| CP | ceruloplasmin (ferroxidase) |
| FERMT2 | fermitin family member 2 |
| GHITM | growth hormone inducible transmembrane protein |
| AFG3L2 | AFG3 like matrix AAA peptidase subunit 2 |
| MALSU1 | mitochondrial assembly of ribosomal large subunit 1 |
| TRIM23 | tripartite motif containing 23 |
| SYT1 | synaptotagmin 1 |
| PRDM15 | PR domain 15 |
| FAM21C | family with sequence similarity 21 member C |
| TAB2 | TGF-beta activated kinase 1/MAP3K7 binding protein 2 |
| DNM2 | dynamin 2 |
| SUN1 | Sad1 and UNC84 domain containing 1 |
| SLC25A39 | solute carrier family 25 member 39 |
| ZEB1 | zinc finger E-box binding homeobox 1 |
| CGRRF1 | cell growth regulator with ring finger domain 1 |
| SNX2 | sorting nexin 2 |
| SDC1 | syndecan 1 |
| POLD3 | polymerase (DNA) delta 3, accessory subunit |
| DKFZp686K1684 | uncharacterized LOC440034 |
| RCN1 | reticulocalbin 1 |
| RAB7A | RAB7A, member RAS oncogene family |
| SMAD4 | SMAD family member 4 |
| SCNM1 | sodium channel modifier 1 |
| TNFAIP8L2-SCNM1 | TNFAIP8L2-SCNM1 readthrough |
| LOC105374463 | uncharacterized LOC105374463 |
| FKBP14 | FK506 binding protein 14 |
| FOPNL | FGFR1OP N-terminal like |
| MCM6 | minichromosome maintenance complex component 6 |
| IFITM3 | interferon induced transmembrane protein 3 |
| VPS26A | VPS26 retromer complex component A |
| DNAJC15 | DnaJ heat shock protein family (Hsp40) member C15 |
| LMBRD1 | LMBR1 domain containing 1 |
| RBPJ | recombination signal binding protein for immunoglobulin kappa J region |
| HIGD2A | HIG1 hypoxia inducible domain family member 2A |
| DNAH14 | dynein axonemal heavy chain 14 |
| GGA1 | golgi-associated, gamma adaptin ear containing, ARF binding protein 1 |
| ST3GAL5 | ST3 beta-galactoside alpha-2,3-sialyltransferase 5 |
| RFC3 | replication factor C subunit 3 |
| MAPK10 | mitogen-activated protein kinase 10 |
| GBA | glucosylceramidase beta |
| SSR2 | signal sequence receptor, beta (translocon-associated protein beta) |
| PIGC | phosphatidylinositol glycan anchor biosynthesis class C |
| IK | IK cytokine, down-regulator of HLA II |
| YEATS4 | YEATS domain containing 4 |
| CYCS | cytochrome c, somatic |
| DNMT3B | DNA (cytosine-5-)-methyltransferase 3 beta |
| KANSL1 | KAT8 regulatory NSL complex subunit 1 |
| QARS | glutaminyl-tRNA synthetase |
| FIBP | fibroblast growth factor (acidic) intracellular binding protein |
| ATL2 | atlastin GTPase 2 |
| OXA1L | oxidase (cytochrome c) assembly 1-like |
| ORMDL1 | ORMDL sphingolipid biosynthesis regulator 1 |
| SHPRH | SNF2 histone linker PHD RING helicase |
| DUSP6 | dual specificity phosphatase 6 |
| IDH3B | isocitrate dehydrogenase 3 (NAD+) beta |
| MED4 | mediator complex subunit 4 |
| PHF20 | PHD finger protein 20 |
| MAP1B | microtubule associated protein 1B |
| DFFA | DNA fragmentation factor subunit alpha |
| MARCH9 | membrane associated ring-CH-type finger 9 |
| ATPIF1 | ATPase inhibitory factor 1 |
| NDUFS5 | NADH:ubiquinone oxidoreductase subunit S5 |
| MAP2K3 | mitogen-activated protein kinase kinase 3 |
| SLC25A16 | solute carrier family 25 member 16 |
| MAP2 | microtubule associated protein 2 |
| SLC25A20 | solute carrier family 25 member 20 |
| DNAJC7 | DnaJ heat shock protein family (Hsp40) member C7 |
| SLC25A13 | solute carrier family 25 member 13 |
| ORC3 | origin recognition complex subunit 3 |
| FANCL | Fanconi anemia complementation group L |
| PSMD11 | proteasome 26S subunit, non-ATPase 11 |
| CTH | cystathionine gamma-lyase |
| TPM3 | tropomyosin 3 |
| SPINK5 | serine peptidase inhibitor, Kazal type 5 |
| NIPSNAP1 | nipsnap homolog 1 (C. elegans) |
| NCSTN | nicastrin |
| ATP5L2 | ATP synthase, H+ transporting, mitochondrial Fo complex subunit G2 |
| CORO1B | coronin 1B |
| KLHDC3 | kelch domain containing 3 |
| SPTLC3 | serine palmitoyltransferase long chain base subunit 3 |
| ITGB3BP | integrin subunit beta 3 binding protein |
| LRIF1 | ligand dependent nuclear receptor interacting factor 1 |
| PSMA5 | proteasome subunit alpha 5 |
| MYL6 | myosin light chain 6 |
| SH3GLB1 | SH3-domain GRB2 like endophilin B1 |
| TTC37 | tetratricopeptide repeat domain 37 |
| GRHPR | glyoxylate reductase/hydroxypyruvate reductase |
| DISC1 | disrupted in schizophrenia 1 |
| NDUFA12 | NADH:ubiquinone oxidoreductase subunit A12 |
| CDC123 | cell division cycle 123 |
| IMPACT | impact RWD domain protein |
| ZNF706 | zinc finger protein 706 |
| DHPS | deoxyhypusine synthase |
| NACA | nascent polypeptide-associated complex alpha subunit |
| MTHFD1L | methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like |
| ASNS | asparagine synthetase (glutamine-hydrolyzing) |
| ASRGL1 | asparaginase like 1 |
| SLC5A6 | solute carrier family 5 member 6 |
| GLO1 | glyoxalase I |
| ZNF644 | zinc finger protein 644 |
| PPP1R16B | protein phosphatase 1 regulatory subunit 16B |
| FBXO2 | F-box protein 2 |
| CNTNAP2 | contactin associated protein-like 2 |
| ZNF585A | zinc finger protein 585A |
| PTTG1 | pituitary tumor-transforming 1 |
| ANXA5 | annexin A5 |
| FAAH | fatty acid amide hydrolase |
| ECH1 | enoyl-CoA hydratase 1, peroxisomal |
| BRWD3 | bromodomain and WD repeat domain containing 3 |
| CBL | Cbl proto-oncogene, E3 ubiquitin protein ligase |
| VLDLR | very low density lipoprotein receptor |
| ZNF599 | zinc finger protein 599 |
| RABGAP1L | RAB GTPase activating protein 1-like |
| TLN2 | talin 2 |
| PRCP | prolylcarboxypeptidase |
| CD44 | CD44 molecule (Indian blood group) |
| ZSCAN5A | zinc finger and SCAN domain containing 5A |
| TPRKB | TP53RK binding protein |
| DCUN1D1 | defective in cullin neddylation 1 domain containing 1 |
| LOXL3 | lysyl oxidase like 3 |
| C1orf61 | chromosome 1 open reading frame 61 |
| ADH5 | alcohol dehydrogenase 5 (class III), chi polypeptide |
| DRAP1 | DR1 associated protein 1 |
| NMT1 | N-myristoyltransferase 1 |
| SEC14L2 | SEC14 like lipid binding 2 |
| PITHD1 | PITH (C-terminal proteasome-interacting domain of thioredoxin-like) domain containing 1 |
| PRR5L | proline rich 5 like |
| ADNP2 | ADNP homeobox 2 |
| STK19 | serine/threonine kinase 19 |
| CNN3 | calponin 3 |
| CNIH4 | cornichon family AMPA receptor auxiliary protein 4 |
| ADGRV1 | adhesion G protein-coupled receptor V1 |
| CCDC120 | coiled-coil domain containing 120 |
| RGS17 | regulator of G-protein signaling 17 |
| TRIT1 | tRNA isopentenyltransferase 1 |
| SCML1 | sex comb on midleg-like 1 (Drosophila) |
| CACNA1A | calcium voltage-gated channel subunit alpha1 A |
| CAPN10 | calpain 10 |
| SPRY4 | sprouty RTK signaling antagonist 4 |
| RGS10 | regulator of G-protein signaling 10 |
| TTC17 | tetratricopeptide repeat domain 17 |
| AKAP13 | A-kinase anchoring protein 13 |
| TBC1D2 | TBC1 domain family member 2 |
| RFK | riboflavin kinase |
| SH3BGRL | SH3 domain binding glutamate rich protein like |
| GON4L | gon-4 like |
| C21orf59 | chromosome 21 open reading frame 59 |
| PPP6R2 | protein phosphatase 6 regulatory subunit 2 |
| CSRP2 | cysteine and glycine rich protein 2 |
| TFPI | tissue factor pathway inhibitor |
| DIAPH3 | diaphanous related formin 3 |
| MTFR1 | mitochondrial fission regulator 1 |
| OTX2 | orthodenticle homeobox 2 |
| TIGD6 | tigger transposable element derived 6 |
| ZNF813 | zinc finger protein 813 |
| PHF14 | PHD finger protein 14 |
| C11orf24 | chromosome 11 open reading frame 24 |
| FAM162A | family with sequence similarity 162 member A |
| USP14 | ubiquitin specific peptidase 14 |
| DUSP12 | dual specificity phosphatase 12 |
| ZSWIM7 | zinc finger SWIM-type containing 7 |
| ZNF528 | zinc finger protein 528 |
| PFDN5 | prefoldin subunit 5 |
| NUDT12 | nudix hydrolase 12 |
| MT1G | metallothionein 1G |
| WASF2 | WAS protein family member 2 |
| TCF25 | transcription factor 25 |
| MXD3 | MAX dimerization protein 3 |
| ARRDC2 | arrestin domain containing 2 |
| TPI1 | triosephosphate isomerase 1 |
| PFDN4 | prefoldin subunit 4 |
| MEIS3 | Meis homeobox 3 |
| ZNF16 | zinc finger protein 16 |
| LHX5 | LIM homeobox 5 |
| ASTN1 | astrotactin 1 |
| TCEAL8 | transcription elongation factor A like 8 |
| TALDO1 | transaldolase 1 |
| RAB24 | RAB24, member RAS oncogene family |
| ZNF37A | zinc finger protein 37A |
| GPHN | gephyrin |
| POU3F1 | POU class 3 homeobox 1 |
| SH3RF1 | SH3 domain containing ring finger 1 |
| ZNF66 | zinc finger protein 66 |
| DSC2 | desmocollin 2 |
| PDLIM1 | PDZ and LIM domain 1 |
| ZNF565 | zinc finger protein 565 |
| SH3BP5 | SH3-domain binding protein 5 |
| ARRDC3 | arrestin domain containing 3 |
| MZF1 | myeloid zinc finger 1 |
| ZNF514 | zinc finger protein 514 |
| C5orf63 | chromosome 5 open reading frame 63 |
| UVSSA | UV stimulated scaffold protein A |
| ZNF75A | zinc finger protein 75a |
| SNTG2 | syntrophin gamma 2 |
| PPFIA2 | PTPRF interacting protein alpha 2 |
| SPARCL1 | SPARC like 1 |
| PAFAH1B3 | platelet activating factor acetylhydrolase 1b catalytic subunit 3 |
| TRMT112 | tRNA methyltransferase 11-2 homolog (S. cerevisiae) |
| LCAT | lecithin-cholesterol acyltransferase |
| HEATR5B | HEAT repeat containing 5B |
| LAMC1 | laminin subunit gamma 1 |
| EFNA1 | ephrin-A1 |
| CD37 | CD37 molecule |
| PAICS | phosphoribosylaminoimidazole carboxylase; phosphoribosylaminoimidazolesuccinocarboxamide synthase |
| PGK1 | phosphoglycerate kinase 1 |
| C1S | complement component 1, s subcomponent |
| TP53I3 | tumor protein p53 inducible protein 3 |
| GPX3 | glutathione peroxidase 3 |
| ENTPD1 | ectonucleoside triphosphate diphosphohydrolase 1 |
| FSTL1 | follistatin like 1 |
| PRDX2 | peroxiredoxin 2 |
| UFC1 | ubiquitin-fold modifier conjugating enzyme 1 |
| FTL | ferritin, light polypeptide |
| ICAM3 | intercellular adhesion molecule 3 |
| MLPH | melanophilin |
| CDKN3 | cyclin-dependent kinase inhibitor 3 |
| CLEC11A | C-type lectin domain family 11 member A |
| GUK1 | guanylate kinase 1 |
| LAMC2 | laminin subunit gamma 2 |
| PLA2G7 | phospholipase A2 group VII |
| GSK3A | glycogen synthase kinase 3 alpha |
| SPA17 | sperm autoantigenic protein 17 |
| PLPP5 | phospholipid phosphatase 5 |
| ARHGEF6 | Rac/Cdc42 guanine nucleotide exchange factor 6 |
| FZD3 | frizzled class receptor 3 |
| HMSD | histocompatibility (minor) serpin domain containing |
| DPH5 | diphthamide biosynthesis 5 |
| FGFR1OP2 | FGFR1 oncogene partner 2 |
| RGS5 | regulator of G-protein signaling 5 |
| MDK | midkine (neurite growth-promoting factor 2) |
| NLRP2 | NLR family, pyrin domain containing 2 |
| ZER1 | zyg-11 related, cell cycle regulator |
| LIX1 | limb and CNS expressed 1 |
| FBXL5 | F-box and leucine-rich repeat protein 5 |
| MLLT11 | myeloid/lymphoid or mixed-lineage leukemia; translocated to, 11 |
| FAM13A | family with sequence similarity 13 member A |
| CLDN10 | claudin 10 |
| ODC1 | ornithine decarboxylase 1 |
| CRABP1 | cellular retinoic acid binding protein 1 |
| DESI2 | desumoylating isopeptidase 2 |
| NT5C2 | 5’-nucleotidase, cytosolic II |
| PANK3 | pantothenate kinase 3 |
| HSD17B14 | hydroxysteroid (17-beta) dehydrogenase 14 |
| GLMN | glomulin, FKBP associated protein |
| MAP3K8 | mitogen-activated protein kinase kinase kinase 8 |
| GSKIP | GSK3B interacting protein |
| SBNO1 | strawberry notch homolog 1 (Drosophila) |
| SREK1IP1 | SREK1 interacting protein 1 |
| WSB1 | WD repeat and SOCS box containing 1 |
| VSNL1 | visinin like 1 |
| RGPD2 | RANBP2-like and GRIP domain containing 2 |
| DEPDC4 | DEP domain containing 4 |
| SLC6A16 | solute carrier family 6 member 16 |
| IFITM1 | interferon induced transmembrane protein 1 |
| KCND2 | potassium voltage-gated channel subfamily D member 2 |
| KCTD3 | potassium channel tetramerization domain containing 3 |
| RIOK2 | RIO kinase 2 |
| USP46 | ubiquitin specific peptidase 46 |
| ARMT1 | acidic residue methyltransferase 1 |
| RECK | reversion inducing cysteine rich protein with kazal motifs |
| METTL5 | methyltransferase like 5 |
| ADAMTS4 | ADAM metallopeptidase with thrombospondin type 1 motif 4 |
| VIPR1 | vasoactive intestinal peptide receptor 1 |
| ITGAE | integrin subunit alpha E |
| SLC12A5 | solute carrier family 12 member 5 |
| PALM2 | paralemmin 2 |
| SMOC2 | SPARC related modular calcium binding 2 |
| PYY | peptide YY |
| OLFML2B | olfactomedin like 2B |
| CDH8 | cadherin 8 |
| MPZL3 | myelin protein zero like 3 |
| ATP13A3 | ATPase 13A3 |
| TMEM30B | transmembrane protein 30B |
| OLFML3 | olfactomedin like 3 |
| WDR70 | WD repeat domain 70 |
| SETD5 | SET domain containing 5 |
| C1orf21 | chromosome 1 open reading frame 21 |
| GSE1 | Gse1 coiled-coil protein |
| KLHL23 | kelch like family member 23 |
| PHOSPHO2-KLHL23 | PHOSPHO2-KLHL23 readthrough |
| CLDN7 | claudin 7 |
| DLGAP1 | discs large homolog associated protein 1 |
| KIAA0100 | KIAA0100 |
| MAGEA4 | MAGE family member A4 |
| C8orf33 | chromosome 8 open reading frame 33 |
| KIAA1143 | KIAA1143 |
| MIIP | migration and invasion inhibitory protein |
| ABHD17A | abhydrolase domain containing 17A |
| C16orf87 | chromosome 16 open reading frame 87 |
| C1orf43 | chromosome 1 open reading frame 43 |
| LAYN | layilin |
| FRAS1 | Fraser extracellular matrix complex subunit 1 |
| SFT2D1 | SFT2 domain containing 1 |
| TMEM219 | transmembrane protein 219 |
| CEND1 | cell cycle exit and neuronal differentiation 1 |
| FREM1 | FRAS1 related extracellular matrix 1 |
| HTR7 | 5-hydroxytryptamine receptor 7 |
| TMEM88 | transmembrane protein 88 |
| SLC9A5 | solute carrier family 9 member A5 |
| BZW2 | basic leucine zipper and W2 domains 2 |
We would like to compare abundance levels using the expression data that were already log-transformed, standardized, and batch-corrected.
# MA plot
par(mfrow = c(1,2))
plot(y = rowMeans(molecules_final_expressed_subset[,
anno_filter$individual == "NA19098"], na.rm = TRUE) -
rowMeans(molecules_final_expressed_subset[,
anno_filter$individual == "NA19101"], na.rm = TRUE),
x = rowMeans(molecules_final_expressed_subset[,
anno_filter$individual != "NA19239"], na.rm = TRUE),
xlab = "Avg. log2 agene expression",
ylab = "log2 NA19098 - log2 NA19101",
main = "MA-plot: NA19098 vs. NA19101",
pch = 16, cex = 0.25)
abline(h = 0, col = "red")
# make a voom plot straight from our corrected counts
fit <- limma::lmFit(as.matrix(molecules_final_expressed_subset),
design = model.matrix(~ anno_filter$individual +
anno_filter$replicate + 0) )
sx <- fit$Amean
sy <- sqrt(fit$sigma)
allzero <- rowSums(as.matrix(molecules_final_expressed_subset), na.rm = TRUE) == 0
if (any(allzero)) {
sx <- sx[!allzero]
sy <- sy[!allzero]
}
l <- lowess(sx, sy, f = .5)
plot(sx, sy, xlab = "log2 gene expression",
ylab = "Sqrt( standard deviation )",
pch = 16, cex = 0.25)
title("voom: Mean-variance trend")
lines(l, col = "red")

Fit a linear model to each gene, compute voom weights to account for CV as a convex function of gene abundance.
file_name <- "../data/sig-mean-expressed.rda"
if (file.exists(file_name)) {
load(file_name)
} else {
# make a voom plot straight from our corrected counts
fit <- limma::lmFit(as.matrix(molecules_final_expressed_subset),
design = model.matrix(~ anno_filter$individual +
anno_filter$replicate + 0) )
sx <- fit$Amean
sy <- sqrt(fit$sigma)
allzero <- rowSums(as.matrix(molecules_final_expressed_subset), na.rm = TRUE) == 0
if (any(allzero)) {
sx <- sx[!allzero]
sy <- sy[!allzero]
}
l <- lowess(sx, sy, f = .5)
# compute voom weights
f <- approxfun(l, rule = 2)
fitted.values <- fit$coef %*% t(fit$design)
fitted.logcount <- fitted.values
w <- 1/f(fitted.logcount)^4
dim(w) <- dim(fitted.logcount)
# differential testing of mean abundance
design <- model.matrix( ~ individual + replicate + 0,
data = data.frame(individual = factor(anno_filter$individual),
replicate = factor(anno_filter$replicate)) )
fit_w <- lmFit(as.matrix(molecules_final_expressed_subset),
design = design, weights = w)
cont.matrix <- makeContrasts(
NA19098_NA19101 = "individualNA19098 - individualNA19101",
NA19098_NA19239 = "individualNA19098 - individualNA19239",
NA19101_NA19239 = "individualNA19101 - individualNA19239",
levels = design)
fit_w <- contrasts.fit(fit_w, cont.matrix)
fit_w <- eBayes(fit_w)
save(fit_w, file = file_name)
}
colnames(fit_w)
[1] "NA19098_NA19101" "NA19098_NA19239" "NA19101_NA19239"
names(fit_w)
[1] "coefficients" "stdev.unscaled" "sigma"
[4] "df.residual" "cov.coefficients" "rank"
[7] "Amean" "method" "design"
[10] "contrasts" "df.prior" "s2.prior"
[13] "var.prior" "proportion" "s2.post"
[16] "t" "df.total" "p.value"
[19] "lods" "F" "F.p.value"
par(mfrow = c(2,2))
for (i in 1:3) {
hist(fit_w$p.value[,i],
main = colnames(fit_w$p.value)[i],
xlab = "p-value")
mtext(side = 3, text = paste(sum(p.adjust(fit_w$p.value[,i], method = "fdr") < .01, na.rm = TRUE), "sig. genes (q <.01)"))
}
title(main = "Differential expression p-value",
outer = TRUE, line = -1)

Genes with large sig. difference and fold change more than 2.
log2fc <- data.frame(
NA19098_NA19101 = rowMeans(molecules_final_expressed_subset[,anno_filter$individual == "NA19098"], na.rm = TRUE) - rowMeans(molecules_final_expressed_subset[,anno_filter$individual == "NA19101"], na.rm = TRUE),
NA19098_NA19239 = rowMeans(molecules_final_expressed_subset[,anno_filter$individual == "NA19098"], na.rm = TRUE) - rowMeans(molecules_final_expressed_subset[,anno_filter$individual == "NA19239"], na.rm = TRUE),
NA19101_NA19239 = rowMeans(molecules_final_expressed_subset[,anno_filter$individual == "NA19101"], na.rm = TRUE) - rowMeans(molecules_final_expressed_subset[,anno_filter$individual == "NA19239"], na.rm = TRUE) )
Density plots
print(colnames(fit_w)[1])
[1] "NA19098_NA19101"
gene_elect <- rownames(fit_w)[which(p.adjust(fit_w$p.value[,1], method = "fdr") < .01 & abs(log2fc$NA19098_NA19101) < 1)]
par(mfrow = c(3,2))
for (i in 1:6) {
plot_density_overlay(
molecules = molecules_final_expressed_subset,
annotation = anno_filter,
which_gene = gene_elect[i],
labels = "",
xlims = c(1,14), ylims = NULL,
gene_symbols = gene_symbols)
}
title(main = "NA19098_NA19101", outer = TRUE, line = -1)

library(mygene)
kable(getGenes(gene_elect,
fields = c("symbol", "name", "summary")))
| notfound | query | symbol | name | _id | summary |
|---|---|---|---|---|---|
| TRUE | ENSG00000237683 | NA | NA | NA | NA |
| NA | ENSG00000188976 | NOC2L | NOC2 like nucleolar associated transcriptional repressor | 26155 | Histone modification by histone acetyltransferases (HAT) and histone deacetylases (HDAC) can control major aspects of transcriptional regulation. NOC2L represents a novel HDAC-independent inhibitor of histone acetyltransferase (INHAT) (Hublitz et al., 2005 [PubMed 16322561]). |
| NA | ENSG00000187961 | KLHL17 | kelch like family member 17 | 339451 | The protein encoded by this gene is expressed in neurons of most regions of the brain. It contains an N-terminal BTB domain, which mediates dimerization of the protein, and a C-terminal Kelch domain, which mediates binding to F-actin. This protein may play a key role in the regulation of actin-based neuronal function. |
| NA | ENSG00000187608 | ISG15 | ISG15 ubiquitin-like modifier | 9636 | The protein encoded by this gene is a ubiquitin-like protein that is conjugated to intracellular target proteins upon activation by interferon-alpha and interferon-beta. Several functions have been ascribed to the encoded protein, including chemotactic activity towards neutrophils, direction of ligated target proteins to intermediate filaments, cell-to-cell signaling, and antiviral activity during viral infections. While conjugates of this protein have been found to be noncovalently attached to intermediate filaments, this protein is sometimes secreted. |
| NA | ENSG00000188157 | AGRN | agrin | 375790 | This gene encodes one of several proteins that are critical in the development of the neuromuscular junction (NMJ), as identified in mouse knock-out studies. The encoded protein contains several laminin G, Kazal type serine protease inhibitor, and epidermal growth factor domains. Additional post-translational modifications occur to add glycosaminoglycans and disulfide bonds. In one family with congenital myasthenic syndrome affecting limb-girdle muscles, a mutation in this gene was found. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000131591 | C1orf159 | chromosome 1 open reading frame 159 | 54991 | NA |
| NA | ENSG00000078808 | SDF4 | stromal cell derived factor 4 | 51150 | This gene encodes a stromal cell derived factor that is a member of the CREC protein family. The encoded protein contains six EF-hand motifs and calcium-binding motifs. This protein localizes to the Golgi lumen and may be involved in regulating calcium dependent cellular activities. |
| NA | ENSG00000176022 | B3GALT6 | Beta-1,3-galactosyltransferase 6 | 126792 | The enzyme encoded by this intronless gene is a beta-1,3-galactosyltransferase found in the medial Golgi apparatus, where it catalyzes the transfer of galactose from UDP-galactose to substrates containing a terminal beta-linked galactose moiety. The encoded enzyme has a particular affinity for galactose-beta-1,4-xylose found in the linker region of glycosamines. This enzyme is required for glycosaminoglycan synthesis. |
| NA | ENSG00000160087 | UBE2J2 | ubiquitin conjugating enzyme E2 J2 | 118424 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. This enzyme is located in the membrane of the endoplasmic reticulum. Multiple alternatively spliced transcript variants have been found for this gene, but the full-length nature of some variants has not been defined. |
| NA | ENSG00000131584 | ACAP3 | ArfGAP with coiled-coil, ankyrin repeat and PH domains 3 | 116983 | NA |
| NA | ENSG00000169972 | PUSL1 | pseudouridylate synthase-like 1 | 126789 | NA |
| NA | ENSG00000127054 | CPSF3L | cleavage and polyadenylation specific factor 3-like | 54973 | The Integrator complex contains at least 12 subunits and associates with the C-terminal domain of RNA polymerase II large subunit (POLR2A; MIM 180660) and mediates the 3-prime end processing of small nuclear RNAs U1 (RNU1; MIM 180680) and U2 (RNU2; MIM 180690). INTS11, or CPSF3L, is the catalytic subunit of the Integrator complex (Baillat et al., 2005 [PubMed 16239144]). |
| NA | ENSG00000224051 | CPTP | ceramide-1-phosphate transfer protein | 80772 | NA |
| NA | ENSG00000107404 | DVL1 | dishevelled segment polarity protein 1 | 1855 | DVL1, the human homolog of the Drosophila dishevelled gene (dsh) encodes a cytoplasmic phosphoprotein that regulates cell proliferation, acting as a transducer molecule for developmental processes, including segmentation and neuroblast specification. DVL1 is a candidate gene for neuroblastomatous transformation. The Schwartz-Jampel syndrome and Charcot-Marie-Tooth disease type 2A have been mapped to the same region as DVL1. The phenotypes of these diseases may be consistent with defects which might be expected from aberrant expression of a DVL gene during development. |
| NA | ENSG00000162576 | MXRA8 | matrix-remodelling associated 8 | 54587 | NA |
| NA | ENSG00000175756 | AURKAIP1 | aurora kinase A interacting protein 1 | 54998 | NA |
| NA | ENSG00000221978 | CCNL2 | cyclin L2 | 81669 | The protein encoded by this gene belongs to the cyclin family. Through its interaction with several proteins, such as RNA polymerase II, splicing factors, and cyclin-dependent kinases, this protein functions as a regulator of the pre-mRNA splicing process, as well as in inducing apoptosis by modulating the expression of apoptotic and antiapoptotic proteins. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000224870 | LOC148413 | uncharacterized LOC148413 | 148413 | NA |
| NA | ENSG00000242485 | MRPL20 | mitochondrial ribosomal protein L20 | 55052 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. A pseudogene corresponding to this gene is found on chromosome 21q. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000179403 | VWA1 | von Willebrand factor A domain containing 1 | 64856 | VWA1 belongs to the von Willebrand factor (VWF; MIM 613160) A (VWFA) domain superfamily of extracellular matrix proteins and appears to play a role in cartilage structure and function (Fitzgerald et al., 2002 [PubMed 12062410]). |
| NA | ENSG00000160072 | ATAD3B | ATPase family, AAA domain containing 3B | 83858 | The protein encoded by this gene is localized to the mitochondrial inner membrane, where it can bind to a highly-related protein, ATAD3A. ATAD3A appears to interact with matrix nucleoid complexes, and the encoded protein negatively regulates that interaction. This gene is expressed almost exclusively in pluripotent embryonic stem cells and some cancer cells. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197785 | ATAD3A | ATPase family, AAA domain containing 3A | 55210 | ATAD3A and ATAD3B (MIM 612317) are mitochondrial membrane proteins that contribute to the stabilization of large mitochondrial DNA (mtDNA)-protein complexes called nucleoids (He et al., 2007 [PubMed 17210950]). |
| NA | ENSG00000228594 | C1orf233 | chromosome 1 open reading frame 233 | 643988 | NA |
| NA | ENSG00000197530 | MIB2 | mindbomb E3 ubiquitin protein ligase 2 | 142678 | NA |
| NA | ENSG00000248333 | CDK11B | cyclin-dependent kinase 11B | 984 | This gene encodes a member of the serine/threonine protein kinase family. Members of this kinase family are known to be essential for eukaryotic cell cycle control. Due to a segmental duplication, this gene shares very high sequence identity with a neighboring gene. These two genes are frequently deleted or altered in neuroblastoma. The protein kinase encoded by this gene can be cleaved by caspases and may play a role in cell apoptosis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000189339 | SLC35E2B | solute carrier family 35 member E2B | 728661 | NA |
| NA | ENSG00000008128 | CDK11A | cyclin-dependent kinase 11A | 728642 | This gene encodes a member of the serine/threonine protein kinase family. Members of this kinase family are known to be essential for eukaryotic cell cycle control. Due to a segmental duplication, this gene shares very high sequence identity with a neighboring gene. These two genes are frequently deleted or altered in neuroblastoma. The protein kinase encoded by this gene can be cleaved by caspases and may play a role in cell apoptosis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000008130 | NADK | NAD kinase | 65220 | NADK catalyzes the transfer of a phosphate group from ATP to NAD to generate NADP, which in its reduced form acts as an electron donor for biosynthetic reactions (Lerner et al., 2001 [PubMed 11594753]). |
| NA | ENSG00000078369 | GNB1 | G protein subunit beta 1 | 2782 | Heterotrimeric guanine nucleotide-binding proteins (G proteins), which integrate signals between receptors and effector proteins, are composed of an alpha, a beta, and a gamma subunit. These subunits are encoded by families of related genes. This gene encodes a beta subunit. Beta subunits are important regulators of alpha subunits, as well as of certain signal transduction receptors and effectors. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000178821 | TMEM52 | transmembrane protein 52 | 339456 | NA |
| NA | ENSG00000067606 | PRKCZ | protein kinase C zeta | 5590 | Protein kinase C (PKC) zeta is a member of the PKC family of serine/threonine kinases which are involved in a variety of cellular processes such as proliferation, differentiation and secretion. Unlike the classical PKC isoenzymes which are calcium-dependent, PKC zeta exhibits a kinase activity which is independent of calcium and diacylglycerol but not of phosphatidylserine. Furthermore, it is insensitive to typical PKC inhibitors and cannot be activated by phorbol ester. Unlike the classical PKC isoenzymes, it has only a single zinc finger module. These structural and biochemical properties indicate that the zeta subspecies is related to, but distinct from other isoenzymes of PKC. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000162585 | FAAP20 | Fanconi anemia core complex associated protein 20 | 199990 | NA |
| NA | ENSG00000157933 | SKI | SKI proto-oncogene | 6497 | This gene encodes the nuclear protooncogene protein homolog of avian sarcoma viral (v-ski) oncogene. It functions as a repressor of TGF-beta signaling, and may play a role in neural tube development and muscle differentiation. |
| NA | ENSG00000116151 | MORN1 | MORN repeat containing 1 | 79906 | NA |
| NA | ENSG00000157916 | RER1 | retention in endoplasmic reticulum sorting receptor 1 | 11079 | The protein encoded by this gene is a multi-pass membrane protein that is localized to the golgi apparatus. It is involved in the retention of endoplasmic reticulum (ER) membrane proteins in the ER and retrieval of ER membrane proteins from the early Golgi compartment to facilitate gamma-secretase complex assembly. |
| NA | ENSG00000157911 | PEX10 | peroxisomal biogenesis factor 10 | 5192 | This gene encodes a protein involved in import of peroxisomal matrix proteins. This protein localizes to the peroxisomal membrane. Mutations in this gene result in phenotypes within the Zellweger spectrum of peroxisomal biogenesis disorders, ranging from neonatal adrenoleukodystrophy to Zellweger syndrome. Alternative splicing results in two transcript variants encoding different isoforms. |
| NA | ENSG00000157881 | PANK4 | pantothenate kinase 4 | 55229 | This gene encodes a protein belonging to the pantothenate kinase family. Pantothenate kinase is a key regulatory enzyme in the biosynthesis of coenzyme A (CoA) in bacteria and mammalian cells. It catalyzes the first committed step in the universal biosynthetic pathway leading to CoA and is itself subject to regulation through feedback inhibition by CoA. This family member is most abundant in muscle but is expressed in all tissues. |
| NA | ENSG00000157870 | FAM213B | family with sequence similarity 213 member B | 127281 | NA |
| NA | ENSG00000130762 | ARHGEF16 | Rho guanine nucleotide exchange factor 16 | 27237 | Although the specific function of this protein is not known yet, it is thought to be involved in protein-protein and protein-lipid interactions. |
| NA | ENSG00000158109 | TPRG1L | tumor protein p63 regulated 1-like | 127262 | NA |
| NA | ENSG00000116213 | WRAP73 | WD repeat containing, antisense to TP73 | 49856 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. Studies of the related mouse protein suggest that the encoded protein may play a role in the process of ossification. |
| NA | ENSG00000130764 | LRRC47 | leucine rich repeat containing 47 | 57470 | NA |
| NA | ENSG00000116198 | CEP104 | centrosomal protein 104kDa | 9731 | This gene encodes a centrosomal protein required for ciliogenesis and for ciliary tip structural integrity. The mammalian protein contains three amino-terminal hydrophobic domains, two glycosylation sites, four cysteine-rich motifs, and two regions with homology to the glutamate receptor ionotropic, NMDA 1 protein. During ciliogenesis, the encoded protein translocates from the distal tips of the centrioles to the tip of the elongating cilium. Knockdown of the protein in human retinal pigment cells results in severe defects in ciliogenesis with structural deformities at the ciliary tips. Allelic variants of this gene are associated with the autosomal-recessive disorder Joubert syndrome, which is characterized by a distinctive mid-hindbrain and cerebellar malformation, oculomotor apraxia, irregular breathing, developmental delay, and ataxia. |
| NA | ENSG00000169598 | DFFB | DNA fragmentation factor subunit beta | 1677 | Apoptosis is a cell death process that removes toxic and/or useless cells during mammalian development. The apoptotic process is accompanied by shrinkage and fragmentation of the cells and nuclei and degradation of the chromosomal DNA into nucleosomal units. DNA fragmentation factor (DFF) is a heterodimeric protein of 40-kD (DFFB) and 45-kD (DFFA) subunits. DFFA is the substrate for caspase-3 and triggers DNA fragmentation during apoptosis. DFF becomes activated when DFFA is cleaved by caspase-3. The cleaved fragments of DFFA dissociate from DFFB, the active component of DFF. DFFB has been found to trigger both DNA fragmentation and chromatin condensation during apoptosis. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene but the biological validity of some of these variants has not been determined. |
| NA | ENSG00000196581 | AJAP1 | adherens junctions associated protein 1 | 55966 | NA |
| NA | ENSG00000131697 | NPHP4 | nephronophthisis 4 | 261734 | This gene encodes a protein involved in renal tubular development and function. This protein interacts with nephrocystin, and belongs to a multifunctional complex that is localized to actin- and microtubule-based structures. Mutations in this gene are associated with nephronophthisis type 4, a renal disease, and with Senior-Loken syndrome type 4, a combination of nephronophthisis and retinitis pigmentosa. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000069424 | KCNAB2 | potassium voltage-gated channel subfamily A regulatory beta subunit 2 | 8514 | Voltage-gated potassium (Kv) channels represent the most complex class of voltage-gated ion channels from both functional and structural standpoints. Their diverse functions include regulating neurotransmitter release, heart rate, insulin secretion, neuronal excitability, epithelial electrolyte transport, smooth muscle contraction, and cell volume. Four sequence-related potassium channel genes - shaker, shaw, shab, and shal - have been identified in Drosophila, and each has been shown to have human homolog(s). This gene encodes a member of the potassium channel, voltage-gated, shaker-related subfamily. This member is one of the beta subunits, which are auxiliary proteins associating with functional Kv-alpha subunits. This member alters functional properties of the KCNA4 gene product. Alternative splicing of this gene results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000116251 | RPL22 | ribosomal protein L22 | 6146 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a cytoplasmic ribosomal protein that is a component of the 60S subunit. The protein belongs to the L22E family of ribosomal proteins. Its initiating methionine residue is post-translationally removed. The protein can bind specifically to Epstein-Barr virus-encoded RNAs (EBERs) 1 and 2. The mouse protein has been shown to be capable of binding to heparin. Transcript variants utilizing alternative polyA signals exist. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. It was previously thought that this gene mapped to 3q26 and that it was fused to the acute myeloid leukemia 1 (AML1) gene located at 21q22 in some therapy-related myelodysplastic syndrome patients with 3;21 translocations; however, these fusions actually involve a ribosomal protein L22 pseudogene located at 3q26, and this gene actually maps to 1p36.3-p36.2. |
| NA | ENSG00000116237 | ICMT | isoprenylcysteine carboxyl methyltransferase | 23463 | This gene encodes the third of three enzymes that posttranslationally modify isoprenylated C-terminal cysteine residues in certain proteins and target those proteins to the cell membrane. This enzyme localizes to the endoplasmic reticulum. Alternative splicing may result in other transcript variants, but the biological validity of those transcripts has not been determined. |
| NA | ENSG00000158292 | GPR153 | G protein-coupled receptor 153 | 387509 | NA |
| NA | ENSG00000097021 | ACOT7 | acyl-CoA thioesterase 7 | 11332 | This gene encodes a member of the acyl coenzyme family. The encoded protein hydrolyzes the CoA thioester of palmitoyl-CoA and other long-chain fatty acids. Decreased expression of this gene may be associated with mesial temporal lobe epilepsy. Alternatively spliced transcript variants encoding distinct isoforms with different subcellular locations have been characterized. |
| NA | ENSG00000187017 | ESPN | espin | 83715 | This gene encodes a multifunctional actin-bundling protein. It plays a major role in regulating the organization, dimensions, dynamics, and signaling capacities of the actin filament-rich, microvillus-type specializations that mediate sensory transduction in various mechanosensory and chemosensory cells. Mutations in this gene are associated with autosomal recessive neurosensory deafness, and autosomal dominant sensorineural deafness without vestibular involvement. |
| NA | ENSG00000215788 | TNFRSF25 | tumor necrosis factor receptor superfamily member 25 | 8718 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This receptor is expressed preferentially in the tissues enriched in lymphocytes, and it may play a role in regulating lymphocyte homeostasis. This receptor has been shown to stimulate NF-kappa B activity and regulate cell apoptosis. The signal transduction of this receptor is mediated by various death domain containing adaptor proteins. Knockout studies in mice suggested the role of this gene in the removal of self-reactive T cells in the thymus. Multiple alternatively spliced transcript variants of this gene encoding distinct isoforms have been reported, most of which are potentially secreted molecules. The alternative splicing of this gene in B and T cells encounters a programmed change upon T-cell activation, which predominantly produces full-length, membrane bound isoforms, and is thought to be involved in controlling lymphocyte proliferation induced by T-cell activation. |
| NA | ENSG00000171680 | PLEKHG5 | pleckstrin homology and RhoGEF domain containing G5 | 57449 | This gene encodes a protein that activates the nuclear factor kappa B (NFKB1) signaling pathway. Mutations in this gene are associated with autosomal recessive distal spinal muscular atrophy. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000162408 | NOL9 | nucleolar protein 9 | 79707 | NA |
| NA | ENSG00000204859 | ZBTB48 | zinc finger and BTB domain containing 48 | 3104 | NA |
| NA | ENSG00000162413 | KLHL21 | kelch like family member 21 | 9903 | NA |
| NA | ENSG00000041988 | THAP3 | THAP domain containing, apoptosis associated protein 3 | 90326 | NA |
| NA | ENSG00000007923 | DNAJC11 | DnaJ heat shock protein family (Hsp40) member C11 | 55735 | NA |
| NA | ENSG00000171735 | CAMTA1 | calmodulin binding transcription activator 1 | 23261 | NA |
| NA | ENSG00000049245 | VAMP3 | vesicle associated membrane protein 3 | 9341 | Synaptobrevins/VAMPs, syntaxins, and the 25-kD synaptosomal-associated protein are the main components of a protein complex involved in the docking and/or fusion of synaptic vesicles with the presynaptic membrane. This gene is a member of the vesicle-associated membrane protein (VAMP)/synaptobrevin family. Because of its high homology to other known VAMPs, its broad tissue distribution, and its subcellular localization, the protein encoded by this gene was shown to be the human equivalent of the rodent cellubrevin. In platelets the protein resides on a compartment that is not mobilized to the plasma membrane on calcium or thrombin stimulation. |
| NA | ENSG00000049246 | PER3 | period circadian clock 3 | 8863 | This gene is a member of the Period family of genes and is expressed in a circadian pattern in the suprachiasmatic nucleus, the primary circadian pacemaker in the mammalian brain. Genes in this family encode components of the circadian rhythms of locomotor activity, metabolism, and behavior. This gene is upregulated by CLOCK/ARNTL heterodimers but then represses this upregulation in a feedback loop using PER/CRY heterodimers to interact with CLOCK/ARNTL. Polymorphisms in this gene have been linked to sleep disorders. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000116288 | PARK7 | Parkinsonism associated deglycase | 11315 | The product of this gene belongs to the peptidase C56 family of proteins. It acts as a positive regulator of androgen receptor-dependent transcription. It may also function as a redox-sensitive chaperone, as a sensor for oxidative stress, and it apparently protects neurons against oxidative stress and cell death. Defects in this gene are the cause of autosomal recessive early-onset Parkinson disease 7. Two transcript variants encoding the same protein have been identified for this gene. |
| NA | ENSG00000116285 | ERRFI1 | ERBB receptor feedback inhibitor 1 | 54206 | ERRFI1 is a cytoplasmic protein whose expression is upregulated with cell growth (Wick et al., 1995 [PubMed 7641805]). It shares significant homology with the protein product of rat gene-33, which is induced during cell stress and mediates cell signaling (Makkinje et al., 2000 [PubMed 10749885]; Fiorentino et al., 2000 [PubMed 11003669]). |
| NA | ENSG00000142599 | RERE | arginine-glutamic acid dipeptide (RE) repeats | 473 | This gene encodes a member of the atrophin family of arginine-glutamic acid (RE) dipeptide repeat-containing proteins. The encoded protein co-localizes with a transcription factor in the nucleus, and its overexpression triggers apoptosis. A similar protein in mouse associates with histone deacetylase and is thought to function as a transcriptional co-repressor during embryonic development. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000074800 | ENO1 | enolase 1, (alpha) | 2023 | This gene encodes alpha-enolase, one of three enolase isoenzymes found in mammals. Each isoenzyme is a homodimer composed of 2 alpha, 2 gamma, or 2 beta subunits, and functions as a glycolytic enzyme. Alpha-enolase in addition, functions as a structural lens protein (tau-crystallin) in the monomeric form. Alternative splicing of this gene results in a shorter isoform that has been shown to bind to the c-myc promoter and function as a tumor suppressor. Several pseudogenes have been identified, including one on the long arm of chromosome 1. Alpha-enolase has also been identified as an autoantigen in Hashimoto encephalopathy. |
| NA | ENSG00000049239 | H6PD | hexose-6-phosphate dehydrogenase (glucose 1-dehydrogenase) | 9563 | There are 2 forms of glucose-6-phosphate dehydrogenase. G form is X-linked and H form, encoded by this gene, is autosomally linked. This H form shows activity with other hexose-6-phosphates, especially galactose-6-phosphate, whereas the G form is specific for glucose-6-phosphate. Both forms are present in most tissues, but H form is not found in red cells. |
| NA | ENSG00000171612 | SLC25A33 | solute carrier family 25 member 33 | 84275 | SLC25A33 belongs to the SLC25 family of mitochondrial carrier proteins (Haitina et al., 2006 [PubMed 16949250]). |
| NA | ENSG00000188807 | TMEM201 | transmembrane protein 201 | 199953 | NA |
| NA | ENSG00000171608 | PIK3CD | phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit delta | 5293 | Phosphoinositide 3-kinases (PI3Ks) phosphorylate inositol lipids and are involved in the immune response. The protein encoded by this gene is a class I PI3K found primarily in leukocytes. Like other class I PI3Ks (p110-alpha p110-beta, and p110-gamma), the encoded protein binds p85 adapter proteins and GTP-bound RAS. However, unlike the other class I PI3Ks, this protein phosphorylates itself, not p85 protein. |
| NA | ENSG00000171603 | CLSTN1 | calsyntenin 1 | 22883 | This gene is a member of the calsyntenin family, a subset of the cadherin superfamily. The encoded transmembrane protein, also known as alcadein-alpha, is thought to bind to kinesin-1 motors to mediate the axonal anterograde transport of certain types of vesicle. Amyloid precursor protein (APP) is trafficked via these vesicles and so this protein is being investigated to see how it might contribute to the mechanisms underlying Alzheimer’s disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000178585 | CTNNBIP1 | catenin beta interacting protein 1 | 56998 | The protein encoded by this gene binds CTNNB1 and prevents interaction between CTNNB1 and TCF family members. The encoded protein is a negative regulator of the Wnt signaling pathway. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000162441 | LZIC | leucine zipper and CTNNBIP1 domain containing | 84328 | NA |
| NA | ENSG00000173614 | NMNAT1 | nicotinamide nucleotide adenylyltransferase 1 | 64802 | This gene encodes an enzyme which catalyzes a key step in the biosynthesis of nicotinamide adenine dinucleotide (NAD). The encoded enzyme is one of several nicotinamide nucleotide adenylyltransferases, and is specifically localized to the cell nucleus. Activity of this protein leads to the activation of a nuclear deacetylase that functions in the protection of damaged neurons. Mutations in this gene have been associated with Leber congenital amaurosis 9. Alternative splicing results in multiple transcript variants. Pseudogenes of this gene are located on chromosomes 1, 3, 4, 14, and 15. |
| NA | ENSG00000162444 | RBP7 | retinol binding protein 7 | 116362 | Due to its chemical instability and low solubility in aqueous solution, vitamin A requires cellular retinol-binding proteins (CRBPs), such as RBP7, for stability, internalization, intercellular transfer, homeostasis, and metabolism. |
| NA | ENSG00000130939 | UBE4B | ubiquitination factor E4B | 10277 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes an additional conjugation factor, E4, which is involved in multiubiquitin chain assembly. This gene is also the strongest candidate in the neuroblastoma tumor suppressor genes. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000054523 | KIF1B | kinesin family member 1B | 23095 | This gene encodes a motor protein that transports mitochondria and synaptic vesicle precursors. Mutations in this gene cause Charcot-Marie-Tooth disease, type 2A1. |
| NA | ENSG00000142657 | PGD | phosphogluconate dehydrogenase | 5226 | 6-phosphogluconate dehydrogenase is the second dehydrogenase in the pentose phosphate shunt. Deficiency of this enzyme is generally asymptomatic, and the inheritance of this disorder is autosomal dominant. Hemolysis results from combined deficiency of 6-phosphogluconate dehydrogenase and 6-phosphogluconolactonase suggesting a synergism of the two enzymopathies. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000175279 | APITD1 | apoptosis-inducing, TAF9-like domain 1 | 378708 | This gene was identified in the neuroblastoma tumor suppressor candidate region on chromosome 1p36. It contains a TFIID-31 domain, similar to that found in TATA box-binding protein-associated factor, TAF(II)31, which is required for p53-mediated transcription activation. This gene was expressed at very low levels in neuroblastoma tumors, and was shown to reduce cell growth in neuroblastoma cells, suggesting that it may have a role in a cell death pathway. The protein is a component of multiple complexes, including the Fanconi anemia (FA) core complex, the APITD1/CENPS complex, and the CENPA-CAD (nucleosome distal) complex. Known functions include an involvement with chromatin associations of the FA core complex, and a role in the stable assembly of the outer kinetochore. Alternative splicing of this gene results in multiple transcript variants. Naturally occurring read-through transcripts also exist between this gene and the downstream cortistatin (CORT) gene, as represented in GeneID:100526739. An APITD1-related pseudogene has been identified on chromosome 7. |
| NA | ENSG00000160049 | DFFA | DNA fragmentation factor subunit alpha | 1676 | Apoptosis is a cell death process that removes toxic and/or useless cells during mammalian development. The apoptotic process is accompanied by shrinkage and fragmentation of the cells and nuclei and degradation of the chromosomal DNA into nucleosomal units. DNA fragmentation factor (DFF) is a heterodimeric protein of 40-kD (DFFB) and 45-kD (DFFA) subunits. DFFA is the substrate for caspase-3 and triggers DNA fragmentation during apoptosis. DFF becomes activated when DFFA is cleaved by caspase-3. The cleaved fragments of DFFA dissociate from DFFB, the active component of DFF. DFFB has been found to trigger both DNA fragmentation and chromatin condensation during apoptosis. Two alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000142655 | PEX14 | peroxisomal biogenesis factor 14 | 5195 | This gene encodes an essential component of the peroxisomal import machinery. The protein is integrated into peroxisome membranes with its C-terminus exposed to the cytosol, and interacts with the cytosolic receptor for proteins containing a PTS1 peroxisomal targeting signal. The protein also functions as a transcriptional corepressor and interacts with a histone deacetylase. A mutation in this gene results in one form of Zellweger syndrome. |
| NA | ENSG00000130940 | CASZ1 | castor zinc finger 1 | 54897 | The protein encoded by this gene is a zinc finger transcription factor. The encoded protein may function as a tumor suppressor, and single nucleotide polymorphisms in this gene are associated with blood pressure variation. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000120948 | TARDBP | TAR DNA binding protein | 23435 | HIV-1, the causative agent of acquired immunodeficiency syndrome (AIDS), contains an RNA genome that produces a chromosomally integrated DNA during the replicative cycle. Activation of HIV-1 gene expression by the transactivator Tat is dependent on an RNA regulatory element (TAR) located downstream of the transcription initiation site. The protein encoded by this gene is a transcriptional repressor that binds to chromosomally integrated TAR DNA and represses HIV-1 transcription. In addition, this protein regulates alternate splicing of the CFTR gene. A similar pseudogene is present on chromosome 20. |
| NA | ENSG00000116649 | SRM | spermidine synthase | 6723 | The polyamines putrescine, spermine, and spermidine are ubiquitous polycationic mediators of cell growth and differentiation. Spermidine synthase is one of four enzymes in the polyamine-biosynthetic pathway and carries out the final step of spermidine biosynthesis. This enzyme catalyzes the conversion of putrescine to spermidine using decarboxylated S-adenosylmethionine as the cofactor. |
| NA | ENSG00000171824 | EXOSC10 | exosome component 10 | 5394 | NA |
| NA | ENSG00000198793 | MTOR | mechanistic target of rapamycin | 2475 | The protein encoded by this gene belongs to a family of phosphatidylinositol kinase-related kinases. These kinases mediate cellular responses to stresses such as DNA damage and nutrient deprivation. This protein acts as the target for the cell-cycle arrest and immunosuppressive effects of the FKBP12-rapamycin complex. The ANGPTL7 gene is located in an intron of this gene. |
| NA | ENSG00000204624 | DISP3 | dispatched RND transporter family member 3 | 57540 | NA |
| NA | ENSG00000116661 | FBXO2 | F-box protein 2 | 26232 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class. This protein is highly similar to the rat NFB42 (neural F Box 42 kDa) protein which is enriched in the nervous system and may play a role in maintaining neurons in a postmitotic state. |
| NA | ENSG00000132879 | FBXO44 | F-box protein 44 | 93611 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class. It is also a member of the NFB42 (neural F Box 42 kDa) family, similar to F-box only protein 2 and F-box only protein 6. Several alternatively spliced transcript variants encoding two distinct isoforms have been found for this gene. |
| NA | ENSG00000116670 | MAD2L2 | MAD2 mitotic arrest deficient-like 2 (yeast) | 10459 | The protein encoded by this gene is a component of the mitotic spindle assembly checkpoint that prevents the onset of anaphase until all chromosomes are properly aligned at the metaphase plate. The encoded protein, which is similar to MAD2L1, is capable of interacting with ADAM9, ADAM15, REV1, and REV3 proteins. |
| NA | ENSG00000162490 | DRAXIN | dorsal inhibitory axon guidance protein | 374946 | NA |
| NA | ENSG00000177674 | AGTRAP | angiotensin II receptor associated protein | 57085 | This gene encodes a transmembrane protein localized to the plasma membrane and perinuclear vesicular structures. The gene product interacts with the angiotensin II type I receptor and negatively regulates angiotensin II signaling. Alternative splicing of this gene generates multiple transcript variants encoding different isoforms. |
| NA | ENSG00000177000 | MTHFR | methylenetetrahydrofolate reductase (NAD(P)H) | 4524 | The protein encoded by this gene catalyzes the conversion of 5,10-methylenetetrahydrofolate to 5-methyltetrahydrofolate, a co-substrate for homocysteine remethylation to methionine. Genetic variation in this gene influences susceptibility to occlusive vascular disease, neural tube defects, colon cancer and acute leukemia, and mutations in this gene are associated with methylenetetrahydrofolate reductase deficiency. |
| NA | ENSG00000011021 | CLCN6 | chloride voltage-gated channel 6 | 1185 | This gene encodes a member of the voltage-dependent chloride channel protein family. Members of this family can function as either chloride channels or antiporters. This protein is primarily localized to late endosomes and functions as a chloride/proton antiporter. Alternate splicing results in both coding and non-coding variants. Additional alternately spliced variants have been described but their full-length structure is unknown. |
| NA | ENSG00000116685 | LOC102724984 | uncharacterized protein KIAA2013 | 102724984 | NA |
| NA | ENSG00000116685 | KIAA2013 | KIAA2013 | 90231 | NA |
| NA | ENSG00000083444 | PLOD1 | procollagen-lysine, 2-oxoglutarate 5-dioxygenase 1 | 5351 | Lysyl hydroxylase is a membrane-bound homodimeric protein localized to the cisternae of the endoplasmic reticulum. The enzyme (cofactors iron and ascorbate) catalyzes the hydroxylation of lysyl residues in collagen-like peptides. The resultant hydroxylysyl groups are attachment sites for carbohydrates in collagen and thus are critical for the stability of intermolecular crosslinks. Some patients with Ehlers-Danlos syndrome type VI have deficiencies in lysyl hydroxylase activity. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000116688 | MFN2 | mitofusin 2 | 9927 | This gene encodes a mitochondrial membrane protein that participates in mitochondrial fusion and contributes to the maintenance and operation of the mitochondrial network. This protein is involved in the regulation of vascular smooth muscle cell proliferation, and it may play a role in the pathophysiology of obesity. Mutations in this gene cause Charcot-Marie-Tooth disease type 2A2, and hereditary motor and sensory neuropathy VI, which are both disorders of the peripheral nervous system. Defects in this gene have also been associated with early-onset stroke. Two transcript variants encoding the same protein have been identified. |
| NA | ENSG00000116691 | MIIP | migration and invasion inhibitory protein | 60672 | This gene encodes a protein that interacts with the oncogene protein insulin-like growth factor binding protein 2 and may function as an inhibitor of cell migration and invasion. This protein also interacts with the cell division protein 20 and may be involved in regulating mitotic progression. This protein may function as a tumor suppressor by inhibiting the growth or certain cancers. |
| NA | ENSG00000120949 | TNFRSF8 | tumor necrosis factor receptor superfamily member 8 | 943 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This receptor is expressed by activated, but not by resting, T and B cells. TRAF2 and TRAF5 can interact with this receptor, and mediate the signal transduction that leads to the activation of NF-kappaB. This receptor is a positive regulator of apoptosis, and also has been shown to limit the proliferative potential of autoreactive CD8 effector T cells and protect the body against autoimmunity. Two alternatively spliced transcript variants of this gene encoding distinct isoforms have been reported. |
| NA | ENSG00000028137 | TNFRSF1B | tumor necrosis factor receptor superfamily member 1B | 7133 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This protein and TNF-receptor 1 form a heterocomplex that mediates the recruitment of two anti-apoptotic proteins, c-IAP1 and c-IAP2, which possess E3 ubiquitin ligase activity. The function of IAPs in TNF-receptor signalling is unknown, however, c-IAP1 is thought to potentiate TNF-induced apoptosis by the ubiquitination and degradation of TNF-receptor-associated factor 2, which mediates anti-apoptotic signals. Knockout studies in mice also suggest a role of this protein in protecting neurons from apoptosis by stimulating antioxidative pathways. |
| NA | ENSG00000048707 | VPS13D | vacuolar protein sorting 13 homolog D (S. cerevisiae) | 55187 | This gene encodes a protein belonging to the vacuolar-protein-sorting-13 gene family. In yeast, vacuolar-protein-sorting-13 proteins are involved in trafficking of membrane proteins between the trans-Golgi network and the prevacuolar compartment. While several transcript variants may exist for this gene, the full-length natures of only two have been described to date. These two represent the major variants of this gene and encode distinct isoforms. |
| NA | ENSG00000162496 | DHRS3 | dehydrogenase/reductase (SDR family) member 3 | 9249 | Short-chain dehydrogenases/reductases (SDRs), such as DHRS3, catalyze the oxidation/reduction of a wide range of substrates, including retinoids and steroids (Haeseleer and Palczewski, 2000 [PubMed 10800688]). |
| NA | ENSG00000179172 | HNRNPCL1 | heterogeneous nuclear ribonucleoprotein C-like 1 | 343069 | NA |
| NA | ENSG00000162493 | PDPN | podoplanin | 10630 | This gene encodes a type-I integral membrane glycoprotein with diverse distribution in human tissues. The physiological function of this protein may be related to its mucin-type character. The homologous protein in other species has been described as a differentiation antigen and influenza-virus receptor. The specific function of this protein has not been determined but it has been proposed as a marker of lung injury. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000116731 | PRDM2 | PR domain 2 | 7799 | This tumor suppressor gene is a member of a nuclear histone/protein methyltransferase superfamily. It encodes a zinc finger protein that can bind to retinoblastoma protein, estrogen receptor, and the TPA-responsive element (MTE) of the heme-oxygenase-1 gene. Although the functions of this protein have not been fully characterized, it may (1) play a role in transcriptional regulation during neuronal differentiation and pathogenesis of retinoblastoma, (2) act as a transcriptional activator of the heme-oxygenase-1 gene, and (3) be a specific effector of estrogen action. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000189337 | KAZN | kazrin, periplakin interacting protein | 23254 | This gene encodes a protein that plays a role in desmosome assembly, cell adhesion, cytoskeletal organization, and epidermal differentiation. This protein co-localizes with desmoplakin and the cytolinker protein periplakin. In general, this protein localizes to the nucleus, desmosomes, cell membrane, and cortical actin-based structures. Some isoforms of this protein also associate with microtubules. Alternative splicing results in multiple transcript variants encoding distinct isoforms. Additional splice variants have been described but their biological validity has not been verified. |
| NA | ENSG00000171729 | TMEM51 | transmembrane protein 51 | 55092 | NA |
| NA | ENSG00000142621 | FHAD1 | forkhead-associated (FHA) phosphopeptide binding domain 1 | 114827 | NA |
| NA | ENSG00000142634 | EFHD2 | EF-hand domain family member D2 | 79180 | NA |
| NA | ENSG00000132906 | CASP9 | caspase 9 | 842 | This gene encodes a member of the cysteine-aspartic acid protease (caspase) family. Sequential activation of caspases plays a central role in the execution-phase of cell apoptosis. Caspases exist as inactive proenzymes which undergo proteolytic processing at conserved aspartic residues to produce two subunits, large and small, that dimerize to form the active enzyme. This protein can undergo autoproteolytic processing and activation by the apoptosome, a protein complex of cytochrome c and the apoptotic peptidase activating factor 1; this step is thought to be one of the earliest in the caspase activation cascade. This protein is thought to play a central role in apoptosis and to be a tumor suppressor. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000116138 | DNAJC16 | DnaJ heat shock protein family (Hsp40) member C16 | 23341 | NA |
| NA | ENSG00000116771 | AGMAT | agmatinase | 79814 | NA |
| NA | ENSG00000116786 | PLEKHM2 | pleckstrin homology and RUN domain containing M2 | 23207 | NA |
| NA | ENSG00000162458 | FBLIM1 | filamin binding LIM protein 1 | 54751 | This gene encodes a protein with an N-terminal filamin-binding domain, a central proline-rich domain, and, multiple C-terminal LIM domains. This protein localizes at cell junctions and may link cell adhesion structures to the actin cytoskeleton. This protein may be involved in the assembly and stabilization of actin-filaments and likely plays a role in modulating cell adhesion, cell morphology and cell motility. This protein also localizes to the nucleus and may affect cardiomyocyte differentiation after binding with the CSX/NKX2-5 transcription factor. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000116809 | ZBTB17 | zinc finger and BTB domain containing 17 | 7709 | This gene encodes a zinc finger protein involved in the regulation of c-myc. The symbol MIZ1 has also been associated with PIAS2 which is a different gene located on chromosome 18. |
| NA | ENSG00000142627 | EPHA2 | EPH receptor A2 | 1969 | This gene belongs to the ephrin receptor subfamily of the protein-tyrosine kinase family. EPH and EPH-related receptors have been implicated in mediating developmental events, particularly in the nervous system. Receptors in the EPH subfamily typically have a single kinase domain and an extracellular region containing a Cys-rich domain and 2 fibronectin type III repeats. The ephrin receptors are divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. This gene encodes a protein that binds ephrin-A ligands. Mutations in this gene are the cause of certain genetically-related cataract disorders. |
| NA | ENSG00000142632 | ARHGEF19 | Rho guanine nucleotide exchange factor 19 | 128272 | Guanine nucleotide exchange factors (GEFs) such as ARHGEF19 accelerate the GTPase activity of Rho GTPases (see RHOA, MIM 165390). |
| NA | ENSG00000037637 | FBXO42 | F-box protein 42 | 54455 | Members of the F-box protein family, such as FBXO42, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (SKP1A; MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000055070 | SZRD1 | SUZ RNA binding domain containing 1 | 26099 | NA |
| NA | ENSG00000157191 | NECAP2 | NECAP endocytosis associated 2 | 55707 | This gene likely encodes a member of the adaptin-ear-binding coat-associated protein family. Studies of a similar protein in rat suggest a role in clathrin-mediated endocytosis. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000219481 | NBPF1 | neuroblastoma breakpoint family member 1 | ENSG00000219481 | NA |
| NA | ENSG00000058453 | CROCC | ciliary rootlet coiled-coil, rootletin | 9696 | NA |
| NA | ENSG00000159363 | ATP13A2 | ATPase 13A2 | 23400 | This gene encodes a member of the P5 subfamily of ATPases which transports inorganic cations as well as other substrates. Mutations in this gene are associated with Kufor-Rakeb syndrome (KRS), also referred to as Parkinson disease 9. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000117118 | SDHB | succinate dehydrogenase complex iron sulfur subunit B | 6390 | Complex II of the respiratory chain, which is specifically involved in the oxidation of succinate, carries electrons from FADH to CoQ. The complex is composed of four nuclear-encoded subunits and is localized in the mitochondrial inner membrane. The iron-sulfur subunit is highly conserved and contains three cysteine-rich clusters which may comprise the iron-sulfur centers of the enzyme. Sporadic and familial mutations in this gene result in paragangliomas and pheochromocytoma, and support a link between mitochondrial dysfunction and tumorigenesis. |
| NA | ENSG00000117115 | PADI2 | peptidyl arginine deiminase, type II | 11240 | This gene encodes a member of the peptidyl arginine deiminase family of enzymes, which catalyze the post-translational deimination of proteins by converting arginine residues into citrullines in the presence of calcium ions. The family members have distinct substrate specificities and tissue-specific expression patterns. The type II enzyme is the most widely expressed family member. Known substrates for this enzyme include myelin basic protein in the central nervous system and vimentin in skeletal muscle and macrophages. This enzyme is thought to play a role in the onset and progression of neurodegenerative human disorders, including Alzheimer disease and multiple sclerosis, and it has also been implicated in glaucoma pathogenesis. This gene exists in a cluster with four other paralogous genes. |
| NA | ENSG00000179051 | RCC2 | regulator of chromosome condensation 2 | 55920 | NA |
| NA | ENSG00000074964 | ARHGEF10L | Rho guanine nucleotide exchange factor 10 like | 55160 | ARHGEF10L is a member of the RhoGEF family of guanine nucleotide exchange factors (GEFs) that activate Rho GTPases (Winkler et al., 2005 [PubMed 16112081]). |
| NA | ENSG00000117154 | IGSF21 | immunoglobin superfamily member 21 | 84966 | This gene encodes a protein which has two immunoglobulin (Ig) domains and is a member of the immunoglobulin superfamily. Proteins in this superfamily are usually found on or in cell membranes and act as receptors in immune response pathways. |
| NA | ENSG00000159423 | ALDH4A1 | aldehyde dehydrogenase 4 family member A1 | 8659 | This protein belongs to the aldehyde dehydrogenase family of proteins. This enzyme is a mitochondrial matrix NAD-dependent dehydrogenase which catalyzes the second step of the proline degradation pathway, converting pyrroline-5-carboxylate to glutamate. Deficiency of this enzyme is associated with type II hyperprolinemia, an autosomal recessive disorder characterized by accumulation of delta-1-pyrroline-5-carboxylate (P5C) and proline. Alternatively spliced transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000169991 | IFFO2 | intermediate filament family orphan 2 | 126917 | NA |
| NA | ENSG00000127481 | UBR4 | ubiquitin protein ligase E3 component n-recognin 4 | 23352 | The protein encoded by this gene is an E3 ubiquitin-protein ligase that interacts with the retinoblastoma-associated protein in the nucleus and with calcium-bound calmodulin in the cytoplasm. The encoded protein appears to be a cytoskeletal component in the cytoplasm and part of the chromatin scaffold in the nucleus. In addition, this protein is a target of the human papillomavirus type 16 E7 oncoprotein. |
| NA | ENSG00000127463 | EMC1 | ER membrane protein complex subunit 1 | 23065 | This gene encodes a single-pass type I transmembrane protein, which is a subunit of the endoplasmic reticulum membrane protein complex (EMC). Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000053371 | AKR7A2 | aldo-keto reductase family 7, member A2 | 8574 | The protein encoded by this gene belongs to the aldo/keto reductase (AKR) superfamily and AKR7 family, which are involved in the detoxification of aldehydes and ketones. The AKR7 family consists of 3 genes that are present in a cluster on the p arm of chromosome 1. This protein, thought to be localized in the golgi, catalyzes the NADPH-dependent reduction of succinic semialdehyde to the endogenous neuromodulator, gamma-hydroxybutyrate. It may also function as a detoxication enzyme in the reduction of aflatoxin B1 and 2-carboxybenzaldehyde. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000040487 | PQLC2 | PQ loop repeat containing 2 | 54896 | NA |
| NA | ENSG00000077549 | CAPZB | capping actin protein of muscle Z-line beta subunit | 832 | This gene encodes the beta subunit of the barbed-end actin binding protein, which belongs to the F-actin capping protein family. The capping protein is a heterodimeric actin capping protein that blocks actin filament assembly and disassembly at the fast growing (barbed) filament ends and functions in regulating actin filament dynamics as well as in stabilizing actin filament lengths in muscle and nonmuscle cells. A pseudogene of this gene is located on the long arm of chromosome 2. Multiple alternatively spliced transcript variants encoding different isoforms have been found. |
| NA | ENSG00000173436 | MINOS1 | mitochondrial inner membrane organizing system 1 | 440574 | NA |
| NA | ENSG00000158747 | NBL1 | neuroblastoma 1, DAN family BMP antagonist | 4681 | This gene product is the founding member of the evolutionarily conserved CAN (Cerberus and DAN) family of proteins, which contain a domain resembling the CTCK (C-terminal cystine knot-like) motif found in a number of signaling molecules. These proteins are secreted, and act as BMP (bone morphogenetic protein) antagonists by binding to BMPs and preventing them from interacting with their receptors. They may thus play an important role during growth and development. Alternatively spliced transcript variants have been identified for this gene. Read-through transcripts between this locus and the upstream mitochondrial inner membrane organizing system 1 gene (GeneID 440574) have been observed. |
| NA | ENSG00000162542 | TMCO4 | transmembrane and coiled-coil domains 4 | 255104 | NA |
| NA | ENSG00000169914 | OTUD3 | OTU deubiquitinase 3 | 23252 | NA |
| NA | ENSG00000162545 | CAMK2N1 | calcium/calmodulin-dependent protein kinase II inhibitor 1 | 55450 | NA |
| NA | ENSG00000090432 | MUL1 | mitochondrial E3 ubiquitin protein ligase 1 | 79594 | NA |
| NA | ENSG00000158825 | CDA | cytidine deaminase | 978 | This gene encodes an enzyme involved in pyrimidine salvaging. The encoded protein forms a homotetramer that catalyzes the irreversible hydrolytic deamination of cytidine and deoxycytidine to uridine and deoxyuridine, respectively. It is one of several deaminases responsible for maintaining the cellular pyrimidine pool. Mutations in this gene are associated with decreased sensitivity to the cytosine nucleoside analogue cytosine arabinoside used in the treatment of certain childhood leukemias. |
| NA | ENSG00000158828 | PINK1 | PTEN induced putative kinase 1 | 65018 | This gene encodes a serine/threonine protein kinase that localizes to mitochondria. It is thought to protect cells from stress-induced mitochondrial dysfunction. Mutations in this gene cause one form of autosomal recessive early-onset Parkinson disease. |
| NA | ENSG00000244038 | DDOST | dolichyl-diphosphooligosaccharide–protein glycosyltransferase non-catalytic subunit | 1650 | This gene encodes a component of the oligosaccharyltransferase complex which catalyzes the transfer of high-mannose oligosaccharides to asparagine residues on nascent polypeptides in the lumen of the rough endoplasmic reticulum. The protein complex co-purifies with ribosomes. The product of this gene is also implicated in the processing of advanced glycation endproducts (AGEs), which form from non-enzymatic reactions between sugars and proteins or lipids and are associated with aging and hyperglycemia. |
| NA | ENSG00000117245 | KIF17 | kinesin family member 17 | 57576 | NA |
| NA | ENSG00000189410 | SH2D5 | SH2 domain containing 5 | 400745 | NA |
| NA | ENSG00000127483 | HP1BP3 | heterochromatin protein 1 binding protein 3 | 50809 | NA |
| NA | ENSG00000075151 | EIF4G3 | eukaryotic translation initiation factor 4 gamma 3 | 8672 | NA |
| NA | ENSG00000117298 | ECE1 | endothelin converting enzyme 1 | 1889 | The protein encoded by this gene is involved in proteolytic processing of endothelin precursors to biologically active peptides. Mutations in this gene are associated with Hirschsprung disease, cardiac defects and autonomic dysfunction. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000142794 | NBPF3 | neuroblastoma breakpoint family member 3 | 84224 | This gene is a member of the neuroblastoma breakpoint family (NBPF) which consists of dozens of recently duplicated genes primarily located in segmental duplications on human chromosome 1. This gene family has experienced its greatest expansion within the human lineage and has expanded, to a lesser extent, among primates in general. Members of this gene family are characterized by tandemly repeated copies of DUF1220 protein domains. DUF1220 copy number variations in human chromosomal region 1q21.1, where most DUF1220 domains are located, have been implicated in a number of developmental and neurogenetic diseases such as microcephaly, macrocephaly, autism, schizophrenia, mental retardation, congenital heart disease, neuroblastoma, and congenital kidney and urinary tract anomalies. Altered expression of some gene family members is associated with several types of cancer. This gene family contains numerous pseudogenes. |
| NA | ENSG00000162551 | ALPL | alkaline phosphatase, liver/bone/kidney | 249 | This gene encodes a member of the alkaline phosphatase family of proteins. There are at least four distinct but related alkaline phosphatases: intestinal, placental, placental-like, and liver/bone/kidney (tissue non-specific). The first three are located together on chromosome 2, while the tissue non-specific form is located on chromosome 1. The product of this gene is a membrane bound glycosylated enzyme that is not expressed in any particular tissue and is, therefore, referred to as the tissue-nonspecific form of the enzyme. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate the mature enzyme. This enzyme may play a role in bone mineralization. Mutations in this gene have been linked to hypophosphatasia, a disorder that is characterized by hypercalcemia and skeletal defects. |
| NA | ENSG00000076864 | RAP1GAP | RAP1 GTPase activating protein | 5909 | This gene encodes a type of GTPase-activating-protein (GAP) that down-regulates the activity of the ras-related RAP1 protein. RAP1 acts as a molecular switch by cycling between an inactive GDP-bound form and an active GTP-bound form. The product of this gene, RAP1GAP, promotes the hydrolysis of bound GTP and hence returns RAP1 to the inactive state whereas other proteins, guanine nucleotide exchange factors (GEFs), act as RAP1 activators by facilitating the conversion of RAP1 from the GDP- to the GTP-bound form. In general, ras subfamily proteins, such as RAP1, play key roles in receptor-linked signaling pathways that control cell growth and differentiation. RAP1 plays a role in diverse processes such as cell proliferation, adhesion, differentiation, and embryogenesis. Alternative splicing results in multiple transcript variants encoding distinct proteins. |
| NA | ENSG00000090686 | USP48 | ubiquitin specific peptidase 48 | 84196 | This gene encodes a protein containing domains that associate it with the peptidase family C19, also known as family 2 of ubiquitin carboxyl-terminal hydrolases. Family members function as deubiquitinating enzymes, recognizing and hydrolyzing the peptide bond at the C-terminal glycine of ubiquitin. Enzymes in peptidase family C19 are involved in the processing of poly-ubiquitin precursors as well as that of ubiquitinated proteins. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000142798 | HSPG2 | heparan sulfate proteoglycan 2 | 3339 | This gene encodes the perlecan protein, which consists of a core protein to which three long chains of glycosaminoglycans (heparan sulfate or chondroitin sulfate) are attached. The perlecan protein is a large multidomain proteoglycan that binds to and cross-links many extracellular matrix components and cell-surface molecules. It has been shown that this protein interacts with laminin, prolargin, collagen type IV, FGFBP1, FBLN2, FGF7 and transthyretin, etc., and it plays essential roles in multiple biological activities. Perlecan is a key component of the vascular extracellular matrix, where it helps to maintain the endothelial barrier function. It is a potent inhibitor of smooth muscle cell proliferation and is thus thought to help maintain vascular homeostasis. It can also promote growth factor (e.g., FGF2) activity and thus stimulate endothelial growth and re-generation. It is a major component of basement membranes, where it is involved in the stabilization of other molecules as well as being involved with glomerular permeability to macromolecules and cell adhesion. Mutations in this gene cause Schwartz-Jampel syndrome type 1, Silverman-Handmaker type of dyssegmental dysplasia, and tardive dyskinesia. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000070831 | CDC42 | cell division cycle 42 | 998 | The protein encoded by this gene is a small GTPase of the Rho-subfamily, which regulates signaling pathways that control diverse cellular functions including cell morphology, migration, endocytosis and cell cycle progression. This protein is highly similar to Saccharomyces cerevisiae Cdc 42, and is able to complement the yeast cdc42-1 mutant. The product of oncogene Dbl was reported to specifically catalyze the dissociation of GDP from this protein. This protein could regulate actin polymerization through its direct binding to Neural Wiskott-Aldrich syndrome protein (N-WASP), which subsequently activates Arp2/3 complex. Alternative splicing of this gene results in multiple transcript variants. Pseudogenes of this gene have been identified on chromosomes 3, 4, 5, 7, 8 and 20. |
| NA | ENSG00000184677 | ZBTB40 | zinc finger and BTB domain containing 40 | 9923 | NA |
| NA | ENSG00000070886 | EPHA8 | EPH receptor A8 | 2046 | This gene encodes a member of the ephrin receptor subfamily of the protein-tyrosine kinase family. EPH and EPH-related receptors have been implicated in mediating developmental events, particularly in the nervous system. Receptors in the EPH subfamily typically have a single kinase domain and an extracellular region containing a Cys-rich domain and 2 fibronectin type III repeats. The ephrin receptors are divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. The protein encoded by this gene functions as a receptor for ephrin A2, A3 and A5 and plays a role in short-range contact-mediated axonal guidance during development of the mammalian nervous system. |
| NA | ENSG00000133216 | EPHB2 | EPH receptor B2 | 2048 | This gene encodes a member of the Eph receptor family of receptor tyrosine kinase transmembrane glycoproteins. These receptors are composed of an N-terminal glycosylated ligand-binding domain, a transmembrane region and an intracellular kinase domain. They bind ligands called ephrins and are involved in diverse cellular processes including motility, division, and differentiation. A distinguishing characteristic of Eph-ephrin signaling is that both receptors and ligands are competent to transduce a signaling cascade, resulting in bidirectional signaling. This protein belongs to a subgroup of the Eph receptors called EphB. Proteins of this subgroup are distinguished from other members of the family by sequence homology and preferential binding affinity for membrane-bound ephrin-B ligands. Allelic variants are associated with prostate and brain cancer susceptibility. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000004487 | KDM1A | lysine demethylase 1A | 23028 | This gene encodes a nuclear protein containing a SWIRM domain, a FAD-binding motif, and an amine oxidase domain. This protein is a component of several histone deacetylase complexes, though it silences genes by functioning as a histone demethylase. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169641 | LUZP1 | leucine zipper protein 1 | 7798 | This gene encodes a protein that contains a leucine zipper motif. The exact function of the encoded protein is not known. In mice this gene affects neural tube closure. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000179546 | HTR1D | 5-hydroxytryptamine receptor 1D | 3352 | NA |
| NA | ENSG00000125944 | HNRNPR | heterogeneous nuclear ribonucleoprotein R | 10236 | This gene encodes an RNA-binding protein that is a member of the spliceosome C complex, which functions in pre-mRNA processing and transport. The encoded protein also promotes transcription at the c-fos gene. Alternative splicing results in multiple transcript variants. There are pseudogenes for this gene on chromosomes 4, 11, and 10. |
| NA | ENSG00000088280 | ASAP3 | ArfGAP with SH3 domain, ankyrin repeat and PH domain 3 | 55616 | This gene encodes a member of a subfamily of ADP-ribosylation factor(Arf) GTPase-activating proteins that contain additional ankyrin repeat and pleckstrin homology domains. The Arf GAP domain of this protein catalyzes the hydrolysis of GTP bound to Arf proteins. The encoded protein promotes cell differentiation and migration and has been implicated in cancer cell invasion. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000007968 | E2F2 | E2F transcription factor 2 | 1870 | The protein encoded by this gene is a member of the E2F family of transcription factors. The E2F family plays a crucial role in the control of cell cycle and action of tumor suppressor proteins and is also a target of the transforming proteins of small DNA tumor viruses. The E2F proteins contain several evolutionally conserved domains found in most members of the family. These domains include a DNA binding domain, a dimerization domain which determines interaction with the differentiation regulated transcription factor proteins (DP), a transactivation domain enriched in acidic amino acids, and a tumor suppressor protein association domain which is embedded within the transactivation domain. This protein and another 2 members, E2F1 and E2F3, have an additional cyclin binding domain. This protein binds specifically to retinoblastoma protein pRB in a cell-cycle dependent manner, and it exhibits overall 46% amino acid identity to E2F1. |
| NA | ENSG00000117318 | ID3 | inhibitor of DNA binding 3, HLH protein | 3399 | The protein encoded by this gene is a helix-loop-helix (HLH) protein that can form heterodimers with other HLH proteins. However, the encoded protein lacks a basic DNA-binding domain and therefore inhibits the DNA binding of any HLH protein with which it interacts. |
| NA | ENSG00000142676 | RPL11 | ribosomal protein L11 | 6135 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L5P family of ribosomal proteins. It is located in the cytoplasm. The protein probably associates with the 5S rRNA. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000011007 | TCEB3 | transcription elongation factor B subunit 3 | 6924 | This gene encodes the protein elongin A, which is a subunit of the transcription factor B (SIII) complex. The SIII complex is composed of elongins A/A2, B and C. It activates elongation by RNA polymerase II by suppressing transient pausing of the polymerase at many sites within transcription units. Elongin A functions as the transcriptionally active component of the SIII complex, whereas elongins B and C are regulatory subunits. Elongin A2 is specifically expressed in the testis, and capable of forming a stable complex with elongins B and C. The von Hippel-Lindau tumor suppressor protein binds to elongins B and C, and thereby inhibits transcription elongation. |
| NA | ENSG00000057757 | PITHD1 | PITH (C-terminal proteasome-interacting domain of thioredoxin-like) domain containing 1 | 57095 | NA |
| NA | ENSG00000011009 | LYPLA2 | lysophospholipase II | 11313 | Lysophospholipases are enzymes that act on biological membranes to regulate the multifunctional lysophospholipids. There are alternatively spliced transcript variants described for this gene but the full length nature is not known yet. |
| NA | ENSG00000117308 | GALE | UDP-galactose-4-epimerase | 2582 | This gene encodes UDP-galactose-4-epimerase which catalyzes two distinct but analogous reactions: the epimerization of UDP-glucose to UDP-galactose, and the epimerization of UDP-N-acetylglucosamine to UDP-N-acetylgalactosamine. The bifunctional nature of the enzyme has the important metabolic consequence that mutant cells (or individuals) are dependent not only on exogenous galactose, but also on exogenous N-acetylgalactosamine as a necessary precursor for the synthesis of glycoproteins and glycolipids. Mutations in this gene result in epimerase-deficiency galactosemia, also referred to as galactosemia type 3, a disease characterized by liver damage, early-onset cataracts, deafness and mental retardation, with symptoms ranging from mild (‘peripheral’ form) to severe (‘generalized’ form). Multiple alternatively spliced transcripts encoding the same protein have been identified. |
| NA | ENSG00000117305 | HMGCL | 3-hydroxymethyl-3-methylglutaryl-CoA lyase | 3155 | The protein encoded by this gene belongs to the HMG-CoA lyase family. It is a mitochondrial enzyme that catalyzes the final step of leucine degradation and plays a key role in ketone body formation. Mutations in this gene are associated with HMG-CoA lyase deficiency. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000179163 | FUCA1 | fucosidase, alpha-L- 1, tissue | 2517 | The protein encoded by this gene is a lysosomal enzyme involved in the degradation of fucose-containing glycoproteins and glycolipids. Mutations in this gene are associated with fucosidosis (FUCA1D), which is an autosomal recessive lysosomal storage disease. A pseudogene of this locus is present on chr 2. |
| NA | ENSG00000188822 | CNR2 | cannabinoid receptor 2 | 1269 | The cannabinoid delta-9-tetrahydrocannabinol is the principal psychoactive ingredient of marijuana. The proteins encoded by this gene and the cannabinoid receptor 1 (brain) (CNR1) gene have the characteristics of a guanine nucleotide-binding protein (G-protein)-coupled receptor for cannabinoids. They inhibit adenylate cyclase activity in a dose-dependent, stereoselective, and pertussis toxin-sensitive manner. These proteins have been found to be involved in the cannabinoid-induced CNS effects (including alterations in mood and cognition) experienced by users of marijuana. The cannabinoid receptors are members of family 1 of the G-protein-coupled receptors. |
| NA | ENSG00000189266 | PNRC2 | proline rich nuclear receptor coactivator 2 | 55629 | NA |
| NA | ENSG00000188529 | SRSF10 | serine/arginine-rich splicing factor 10 | 10772 | This gene product is a member of the serine-arginine (SR) family of proteins, which are involved in constitutive and regulated RNA splicing. Members of this family are characterized by N-terminal RNP1 and RNP2 motifs, which are required for binding to RNA, and multiple C-terminal SR/RS repeats, which are important in mediating association with other cellular proteins. This protein interacts with the oncoprotein TLS, and abrogates the influence of TLS on adenovirus E1A pre-mRNA splicing. This gene has pseudogenes on chromosomes 4, 9, 14, 18, and 20. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000185436 | IFNLR1 | interferon lambda receptor 1 | 163702 | The protein encoded by this gene belongs to the class II cytokine receptor family. This protein forms a receptor complex with interleukine 10 receptor, beta (IL10RB). The receptor complex has been shown to interact with three closely related cytokines, including interleukin 28A (IL28A), interleukin 28B (IL28B), and interleukin 29 (IL29). The expression of all three cytokines can be induced by viral infection. The cells overexpressing this protein have been found to have enhanced responses to IL28A and IL29, but decreased response to IL28B. Three alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000001460 | STPG1 | sperm tail PG-rich repeat containing 1 | 90529 | NA |
| NA | ENSG00000001461 | NIPAL3 | NIPA like domain containing 3 | 57185 | NA |
| NA | ENSG00000117602 | RCAN3 | RCAN family member 3 | 11123 | NA |
| NA | ENSG00000133226 | SRRM1 | serine and arginine repetitive matrix 1 | 10250 | NA |
| NA | ENSG00000169504 | CLIC4 | chloride intracellular channel 4 | 25932 | Chloride channels are a diverse group of proteins that regulate fundamental cellular processes including stabilization of cell membrane potential, transepithelial transport, maintenance of intracellular pH, and regulation of cell volume. Chloride intracellular channel 4 (CLIC4) protein, encoded by the CLIC4 gene, is a member of the p64 family; the gene is expressed in many tissues and exhibits a intracellular vesicular pattern in Panc-1 cells (pancreatic cancer cells). |
| NA | ENSG00000117614 | SYF2 | SYF2 pre-mRNA splicing factor | 25949 | This gene encodes a nuclear protein that interacts with cyclin D-type binding-protein 1, which is thought to be a cell cycle regulator at the G1/S transition. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000117616 | RSRP1 | arginine/serine-rich protein 1 | 57035 | NA |
| NA | ENSG00000183726 | TMEM50A | transmembrane protein 50A | 23585 | This gene is located in the RH gene locus, between the RHD and RHCE genes. The function of its protein product is unknown; however, its sequence has potential transmembrane domains suggesting that it may be an integral membrane protein. Its position between the RH genes suggests that polymorphisms in this gene may be tightly linked to RH haplotypes and may contribute to selective pressure for or against certain RH haplotypes. |
| NA | ENSG00000204178 | TMEM57 | transmembrane protein 57 | 55219 | NA |
| NA | ENSG00000157978 | LDLRAP1 | low density lipoprotein receptor adaptor protein 1 | 26119 | The protein encoded by this gene is a cytosolic protein which contains a phosphotyrosine binding (PTD) domain. The PTD domain has been found to interact with the cytoplasmic tail of the LDL receptor. Mutations in this gene lead to LDL receptor malfunction and cause the disorder autosomal recessive hypercholesterolaemia. |
| NA | ENSG00000117643 | MAN1C1 | mannosidase alpha class 1C member 1 | 57134 | NA |
| NA | ENSG00000162430 | SEPN1 | selenoprotein N, 1 | 57190 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. Mutations in this gene cause the classical phenotype of multiminicore disease and congenital muscular dystrophy with spinal rigidity and restrictive respiratory syndrome. Two alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000117640 | MTFR1L | mitochondrial fission regulator 1 like | 56181 | NA |
| NA | ENSG00000127423 | AUNIP | aurora kinase A and ninein interacting protein | 79000 | NA |
| NA | ENSG00000182749 | PAQR7 | progestin and adipoQ receptor family member VII | 164091 | NA |
| NA | ENSG00000117632 | STMN1 | stathmin 1 | 3925 | This gene belongs to the stathmin family of genes. It encodes a ubiquitous cytosolic phosphoprotein proposed to function as an intracellular relay integrating regulatory signals of the cellular environment. The encoded protein is involved in the regulation of the microtubule filament system by destabilizing microtubules. It prevents assembly and promotes disassembly of microtubules. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000158006 | PAFAH2 | platelet activating factor acetylhydrolase 2 | 5051 | This gene encodes platelet-activating factor acetylhydrolase isoform 2, a single-subunit intracellular enzyme that catalyzes the removal of the acetyl group at the SN-2 position of platelet-activating factor (identified as 1-O-alkyl-2-acetyl-sn-glyceryl-3-phosphorylcholine). However, this lipase exhibits a broader substrate specificity than simply platelet activating factor. Two other isoforms of intracellular platelet-activating factor acetylhydrolase exist, and both are multi-subunit enzymes. Additionally, there is a single-subunit serum isoform of this enzyme. |
| NA | ENSG00000175087 | PDIK1L | PDLIM1 interacting kinase 1 like | 149420 | NA |
| NA | ENSG00000142684 | ZNF593 | zinc finger protein 593 | 51042 | NA |
| NA | ENSG00000142675 | CNKSR1 | connector enhancer of kinase suppressor of Ras 1 | 10256 | This gene encodes a protein containing several motifs involved in protein-protein interaction, including PDZ, PH (Pleckstrin homology), and SAM (sterile alpha motif) domains. The encoded protein acts as a scaffold component for receptor tyrosine kinase signaling and may mediate crosstalk between different signaling pathways. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000130695 | CEP85 | centrosomal protein 85kDa | 64793 | This gene encodes a protein that belongs to the centrosome-associated family of proteins. The centrosome is a subcellular organelle in the animal cell that functions as a microtubule organizing center and is involved in cell-cycle progression. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000142669 | SH3BGRL3 | SH3 domain binding glutamate rich protein like 3 | 83442 | NA |
| NA | ENSG00000158062 | UBXN11 | UBX domain protein 11 | 91544 | This gene encodes a protein with a divergent C-terminal UBX domain. The homologous protein in the rat interacts with members of the Rnd subfamily of Rho GTPases at the cell periphery through its C-terminal region. It also interacts with several heterotrimeric G proteins through their G-alpha subunits and promotes Rho GTPase activation. It is proposed to serve a bidirectional role in the promotion and inhibition of Rho activity through upstream signaling pathways. The 3’ coding sequence of this gene contains a polymoprhic region of 24 nt tandem repeats. Several transcripts containing between 1.5 and five repeat units have been reported. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169442 | CD52 | CD52 molecule | 1043 | NA |
| NA | ENSG00000176092 | AIM1L | absent in melanoma 1-like | 55057 | NA |
| NA | ENSG00000131914 | LIN28A | lin-28 homolog A | 79727 | This gene encodes a LIN-28 family RNA-binding protein that acts as a posttranscriptional regulator of genes involved in developmental timing and self-renewal in embryonic stem cells. The encoded protein functions through direct interaction with target mRNAs and by disrupting the maturation of certain miRNAs involved in embryonic development. This protein prevents the terminal processing of the LET7 family of microRNAs which are major regulators of cellular growth and differentiation. Aberrant expression of this gene is associated with cancer progression in multiple tissues. |
| NA | ENSG00000117682 | DHDDS | dehydrodolichyl diphosphate synthase subunit | 79947 | The protein encoded by this gene catalyzes cis-prenyl chain elongation to produce the polyprenyl backbone of dolichol, a glycosyl carrier lipid required for the biosynthesis of several classes of glycoproteins. Mutations in this gene are associated with retinitis pigmentosa type 59. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000198830 | HMGN2 | high mobility group nucleosomal binding domain 2 | 3151 | The protein encoded by this gene binds nucleosomal DNA and is associated with transcriptionally active chromatin. Along with a similar protein, HMGN1, the encoded protein may help maintain an open chromatin configuration around transcribable genes. The protein has also been found to have antimicrobial activity against bacteria, viruses and fungi. |
| NA | ENSG00000117676 | RPS6KA1 | ribosomal protein S6 kinase A1 | 6195 | This gene encodes a member of the RSK (ribosomal S6 kinase) family of serine/threonine kinases. This kinase contains 2 nonidentical kinase catalytic domains and phosphorylates various substrates, including members of the mitogen-activated kinase (MAPK) signalling pathway. The activity of this protein has been implicated in controlling cell growth and differentiation. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000117713 | ARID1A | AT-rich interaction domain 1A | 8289 | This gene encodes a member of the SWI/SNF family, whose members have helicase and ATPase activities and are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The encoded protein is part of the large ATP-dependent chromatin remodeling complex SNF/SWI, which is required for transcriptional activation of genes normally repressed by chromatin. It possesses at least two conserved domains that could be important for its function. First, it has a DNA-binding domain that can specifically bind an AT-rich DNA sequence known to be recognized by a SNF/SWI complex at the beta-globin locus. Second, the C-terminus of the protein can stimulate glucocorticoid receptor-dependent transcriptional activation. It is thought that the protein encoded by this gene confers specificity to the SNF/SWI complex and may recruit the complex to its targets through either protein-DNA or protein-protein interactions. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000060642 | PIGV | phosphatidylinositol glycan anchor biosynthesis class V | 55650 | This gene encodes a mannosyltransferase enzyme involved in the biosynthesis of glycosylphosphatidylinositol (GPI). GPI is a complex glycolipid that functions as a membrane anchor for many proteins and plays a role in multiple cellular processes including protein sorting and signal transduction. The encoded protein is localized to the endoplasmic reticulum and transfers the second mannose to the GPI backbone. Mutations in this gene are associated with hyperphosphatasia mental retardation syndrome. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000204160 | ZDHHC18 | zinc finger DHHC-type containing 18 | 84243 | NA |
| NA | ENSG00000175793 | SFN | stratifin | 2810 | NA |
| NA | ENSG00000142751 | GPN2 | GPN-loop GTPase 2 | 54707 | NA |
| NA | ENSG00000198746 | GPATCH3 | G-patch domain containing 3 | 63906 | NA |
| NA | ENSG00000090273 | NUDC | nudC nuclear distribution protein | 10726 | This gene encodes a nuclear distribution protein that plays an essential role in mitosis and cytokinesis. The encoded protein is involved in spindle formation during mitosis and in microtubule organization during cytokinesis. Pseudogenes of this gene are found on chromosome 2. |
| NA | ENSG00000175707 | KDF1 | keratinocyte differentiation factor 1 | 126695 | NA |
| NA | ENSG00000253368 | TRNP1 | TMF1-regulated nuclear protein 1 | 388610 | NA |
| NA | ENSG00000158246 | FAM46B | family with sequence similarity 46 member B | 115572 | NA |
| NA | ENSG00000090020 | SLC9A1 | solute carrier family 9 member A1 | 6548 | This gene encodes a Na+/H+ antiporter that is a member of the solute carrier family 9. The encoded protein is a plasma membrane transporter that is expressed in the kidney and intestine. This protein plays a central role in regulating pH homeostasis, cell migration and cell volume. This protein may also be involved in tumor growth. |
| NA | ENSG00000142784 | WDTC1 | WD and tetratricopeptide repeats 1 | 23038 | NA |
| NA | ENSG00000186501 | TMEM222 | transmembrane protein 222 | 84065 | NA |
| NA | ENSG00000142765 | SYTL1 | synaptotagmin like 1 | 84958 | NA |
| NA | ENSG00000142733 | MAP3K6 | mitogen-activated protein kinase kinase kinase 6 | 9064 | This gene encodes a serine/threonine protein kinase that forms a component of protein kinase-mediated signal transduction cascades. The encoded kinase participates in the regulation of vascular endothelial growth factor (VEGF) expression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000181773 | GPR3 | G protein-coupled receptor 3 | 2827 | This gene is a member of the G protein-coupled receptor family and is found in the cell membrane. G protein-coupled receptors, characterized by a seven transmembrane domain motif, are involved in translating outside signals into G protein mediated intracellular effects. The encoded protein activates adenylate cyclase and modulates amyloid-beta production in a mouse model, suggesting that it may play a role in Alzheimer’s disease. |
| NA | ENSG00000158195 | WASF2 | WAS protein family member 2 | 10163 | This gene encodes a member of the Wiskott-Aldrich syndrome protein family. The gene product is a protein that forms a multiprotein complex that links receptor kinases and actin. Binding to actin occurs through a C-terminal verprolin homology domain in all family members. The multiprotein complex serves to tranduce signals that involve changes in cell shape, motility or function. The published map location (PMID:10381382) has been changed based on recent genomic sequence comparisons, which indicate that the expressed gene is located on chromosome 1, and a pseudogene may be located on chromosome X. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000126705 | AHDC1 | AT-hook DNA binding motif containing 1 | 27245 | This gene encodes a protein containing two AT-hooks, which likely function in DNA binding. Mutations in this gene were found in individuals with Xia-Gibbs syndrome. |
| NA | ENSG00000126709 | IFI6 | interferon alpha inducible protein 6 | 2537 | This gene was first identified as one of the many genes induced by interferon. The encoded protein may play a critical role in the regulation of apoptosis. A minisatellite that consists of 26 repeats of a 12 nucleotide repeating element resembling the mammalian splice donor consensus sequence begins near the end of the second exon. Alternatively spliced transcript variants that encode different isoforms by using the two downstream repeat units as splice donor sites have been described. |
| NA | ENSG00000009780 | FAM76A | family with sequence similarity 76 member A | 199870 | NA |
| NA | ENSG00000117758 | STX12 | syntaxin 12 | 23673 | NA |
| NA | ENSG00000117751 | PPP1R8 | protein phosphatase 1 regulatory subunit 8 | 5511 | This gene, through alternative splicing, encodes three different isoforms. Two of the protein isoforms encoded by this gene are specific inhibitors of type 1 serine/threonine protein phosphatases and can bind but not cleave RNA. The third protein isoform lacks the phosphatase inhibitory function but is a single-strand endoribonuclease comparable to RNase E of E. coli. This isoform requires magnesium for its function and cleaves specific sites in A+U-rich regions of RNA. |
| NA | ENSG00000130775 | THEMIS2 | thymocyte selection associated family member 2 | 9473 | NA |
| NA | ENSG00000117748 | RPA2 | replication protein A2 | 6118 | NA |
| NA | ENSG00000130768 | SMPDL3B | sphingomyelin phosphodiesterase acid like 3B | 27293 | NA |
| NA | ENSG00000158156 | XKR8 | XK related 8 | 55113 | NA |
| NA | ENSG00000158161 | EYA3 | EYA transcriptional coactivator and phosphatase 3 | 2140 | This gene encodes a member of the eyes absent (EYA) family of proteins. The encoded protein may act as a transcriptional activator and have a role during development. It can act as a mediator of chemoresistance and cell survival in Ewing sarcoma cells, where this gene is up-regulated via a micro-RNA that binds to the 3’ UTR of the transcript. A similar protein in mice acts as a transcriptional activator. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000126698 | DNAJC8 | DnaJ heat shock protein family (Hsp40) member C8 | 22826 | NA |
| NA | ENSG00000130770 | ATPIF1 | ATPase inhibitory factor 1 | 93974 | This gene encodes a mitochondrial ATPase inhibitor. Alternative splicing occurs at this locus and three transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000130766 | SESN2 | sestrin 2 | 83667 | This gene encodes a member of the sestrin family of PA26-related proteins. The encoded protein may function in the regulation of cell growth and survival. This protein may be involved in cellular response to different stress conditions. |
| NA | ENSG00000130772 | MED18 | mediator complex subunit 18 | 54797 | MED18 is a component of the Mediator complex, which is a coactivator for DNA-binding factors that activate transcription via RNA polymerase II (Sato et al., 2003 [PubMed 12584197]). |
| NA | ENSG00000204138 | PHACTR4 | phosphatase and actin regulator 4 | 65979 | This gene encodes a member of the phosphatase and actin regulator (PHACTR) family. Other PHACTR family members have been shown to inhibit protein phosphatase 1 (PP1) activity, and the homolog of this gene in the mouse has been shown to interact with actin and PP1. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000120656 | TAF12 | TATA-box binding protein associated factor 12 | 6883 | Control of transcription by RNA polymerase II involves the basal transcription machinery which is a collection of proteins. These proteins with RNA polymerase II, assemble into complexes which are modulated by transactivator proteins that bind to cis-regulatory elements located adjacent to the transcription start site. Some modulators interact directly with the basal complex, whereas others may act as bridging proteins linking transactivators to the basal transcription factors. Some of these associated factors are weakly attached while others are tightly associated with TBP in the TFIID complex. Among the latter are the TAF proteins. Different TAFs are predicted to mediate the function of distinct transcriptional activators for a variety of gene promoters and RNA polymerases. TAF12 interacts directly with TBP as well as with TAF2I. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000188060 | RAB42 | RAB42, member RAS oncogene family | 115273 | NA |
| NA | ENSG00000162419 | GMEB1 | glucocorticoid modulatory element binding protein 1 | 10691 | This gene encodes a member of KDWK gene family which associates with GMEB2 protein. The GMEB1-GMEB2 complex is essential for parvovirus DNA replication. Studies in rat for a similar gene suggest that this gene’s role is to modulate the transactivation of the glucocorticoid receptor when it is bound to glucocorticoid response elements. Three alternative spliced transcript variants encoding different isoforms exist. |
| NA | ENSG00000198492 | YTHDF2 | YTH N(6)-methyladenosine RNA binding protein 2 | 51441 | This gene encodes a member of the YTH (YT521-B homology) superfamily containing YTH domain. The YTH domain is typical for the eukaryotes and is particularly abundant in plants. The YTH domain is usually located in the middle of the protein sequence and may function in binding to RNA. In addition to a YTH domain, this protein has a proline rich region which may be involved in signal transduction. An Alu-rich domain has been identified in one of the introns of this gene, which is thought to be associated with human longevity. In addition, reciprocal translocations between this gene and the Runx1 (AML1) gene on chromosome 21 has been observed in patients with acute myeloid leukemia. This gene was initially mapped to chromosome 14, which was later turned out to be a pseudogene. Alternatively spliced transcript variants encoding different isoforms have been identified in this gene. |
| NA | ENSG00000159023 | EPB41 | erythrocyte membrane protein band 4.1 | 2035 | The protein encoded by this gene, together with spectrin and actin, constitute the red cell membrane cytoskeletal network. This complex plays a critical role in erythrocyte shape and deformability. Mutations in this gene are associated with type 1 elliptocytosis (EL1). Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000116350 | SRSF4 | serine/arginine-rich splicing factor 4 | 6429 | This gene encodes a member of the arginine/serine-rich splicing factor family. The encoded protein likely functions in mRNA processing. |
| NA | ENSG00000116353 | MECR | mitochondrial trans-2-enoyl-CoA reductase | 51102 | NA |
| NA | ENSG00000060656 | PTPRU | protein tyrosine phosphatase, receptor type U | 10076 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP possesses an extracellular region, a single transmembrane region, and two tandem intracellular catalytic domains, and thus represents a receptor-type PTP. The extracellular region contains a meprin-A5 antigen-PTP (MAM) domain, Ig-like and fibronectin type III-like repeats. This PTP was thought to play roles in cell-cell recognition and adhesion. Studies of the similar gene in mice suggested the role of this PTP in early neural development. The expression of this gene was reported to be regulated by phorbol myristate acetate (PMA) or calcium ionophore in Jurkat T lymphoma cells. Alternatively spliced transcript variants have been reported. |
| NA | ENSG00000162512 | SDC3 | syndecan 3 | 9672 | The protein encoded by this gene belongs to the syndecan proteoglycan family. It may play a role in the organization of cell shape by affecting the actin cytoskeleton, possibly by transferring signals from the cell surface in a sugar-dependent mechanism. Allelic variants of this gene have been associated with obesity. |
| NA | ENSG00000134644 | PUM1 | pumilio RNA binding family member 1 | 9698 | This gene encodes a member of the PUF family, evolutionarily conserved RNA-binding proteins related to the Pumilio proteins of Drosophila and the fem-3 mRNA binding factor proteins of C. elegans. The encoded protein contains a sequence-specific RNA binding domain comprised of eight repeats and N- and C-terminal flanking regions, and serves as a translational regulator of specific mRNAs by binding to their 3’ untranslated regions. The evolutionarily conserved function of the encoded protein in invertebrates and lower vertebrates suggests that the human protein may be involved in translational regulation of embryogenesis, and cell development and differentiation. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000084628 | NKAIN1 | Na+/K+ transporting ATPase interacting 1 | 79570 | NKAIN1 is a member of a family of mammalian proteins with similarity to Drosophila Nkain and interacts with the beta subunit of Na,K-ATPase (ATP1B1; MIM 182330) (Gorokhova et al., 2007 [PubMed 17606467]). |
| NA | ENSG00000060688 | SNRNP40 | small nuclear ribonucleoprotein U5 subunit 40 | 9410 | This gene encodes a component of the U5 small nuclear ribonucleoprotein (snRNP) particle. The U5 snRNP is part of the spliceosome, a multiprotein complex that catalyzes the removal of introns from pre-messenger RNAs. |
| NA | ENSG00000121766 | ZCCHC17 | zinc finger CCHC-type containing 17 | 51538 | NA |
| NA | ENSG00000168528 | SERINC2 | serine incorporator 2 | 347735 | NA |
| NA | ENSG00000142910 | TINAGL1 | tubulointerstitial nephritis antigen like 1 | 64129 | The protein encoded by this gene is similar in sequence to tubulointerstitial nephritis antigen, a secreted glycoprotein that is recognized by antibodies in some types of immune-related tubulointerstitial nephritis. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000162517 | PEF1 | penta-EF-hand domain containing 1 | 553115 | This gene encodes a calcium-binding protein belonging to the penta-EF-hand protein family. The encoded protein has been shown to form a heterodimer with the programmed cell death 6 gene product and may modulate its function in Ca(2+) signaling. Alternative splicing results in multiple transcript variants and a pseudogene has been identified on chromosome 1. |
| NA | ENSG00000084636 | COL16A1 | collagen type XVI alpha 1 | 1307 | This gene encodes the alpha chain of type XVI collagen, a member of the FACIT collagen family (fibril-associated collagens with interrupted helices). Members of this collagen family are found in association with fibril-forming collagens such as type I and II, and serve to maintain the integrity of the extracellular matrix. High levels of type XVI collagen have been found in fibroblasts and keratinocytes, and in smooth muscle and amnion. |
| NA | ENSG00000121753 | ADGRB2 | adhesion G protein-coupled receptor B2 | 576 | This gene encodes a a seven-span transmembrane protein that is thought to be a member of the secretin receptor family. The encoded protein is a brain-specific inhibitor of angiogenesis. The mature peptide may be further cleaved into additional products (PMID:20367554). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000184007 | PTP4A2 | protein tyrosine phosphatase type IVA, member 2 | 8073 | The protein encoded by this gene belongs to a small class of the protein tyrosine phosphatase (PTP) family. PTPs are cell signaling molecules that play regulatory roles in a variety of cellular processes. PTPs in this class contain a protein tyrosine phosphatase catalytic domain and a characteristic C-terminal prenylation motif. This PTP has been shown to primarily associate with plasmic and endosomal membrane through its C-terminal prenylation. This PTP was found to interact with the beta-subunit of Rab geranylgeranyltransferase II (beta GGT II), and thus may function as a regulator of GGT II activity. Overexpression of this gene in mammalian cells conferred a transformed phenotype, which suggested its role in tumorigenesis. Alternatively spliced transcript variants have been described. Related pseudogenes exist on chromosomes 11, 12 and 17. |
| NA | ENSG00000121774 | KHDRBS1 | KH domain containing, RNA binding, signal transduction associated 1 | 10657 | This gene encodes a member of the K homology domain-containing, RNA-binding, signal transduction-associated protein family. The encoded protein appears to have many functions and may be involved in a variety of cellular processes, including alternative splicing, cell cycle regulation, RNA 3’-end formation, tumorigenesis, and regulation of human immunodeficiency virus gene expression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000121775 | TMEM39B | transmembrane protein 39B | 55116 | NA |
| NA | ENSG00000025800 | KPNA6 | karyopherin subunit alpha 6 | 23633 | Nucleocytoplasmic transport, a signal- and energy-dependent process, takes place through nuclear pore complexes embedded in the nuclear envelope. The import of proteins containing a nuclear localization signal (NLS) requires the NLS import receptor, a heterodimer of importin alpha and beta subunits also known as karyopherins. Importin alpha binds the NLS-containing cargo in the cytoplasm and importin beta docks the complex at the cytoplasmic side of the nuclear pore complex. In the presence of nucleoside triphosphates and the small GTP binding protein Ran, the complex moves into the nuclear pore complex and the importin subunits dissociate. Importin alpha enters the nucleoplasm with its passenger protein and importin beta remains at the pore. The protein encoded by this gene is a member of the importin alpha family. |
| NA | ENSG00000084652 | TXLNA | taxilin alpha | 200081 | NA |
| NA | ENSG00000160050 | CCDC28B | coiled-coil domain containing 28B | 79140 | The product of this gene localizes to centrosomes and basal bodies. The protein colocalizes with several proteins associated with Bardet-Biedl syndrome (BBS) and participates in the regulation of cilia development. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160051 | IQCC | IQ motif containing C | 55721 | NA |
| NA | ENSG00000160055 | TMEM234 | transmembrane protein 234 | 56063 | NA |
| NA | ENSG00000084623 | EIF3I | eukaryotic translation initiation factor 3 subunit I | 8668 | NA |
| NA | ENSG00000182866 | LCK | LCK proto-oncogene, Src family tyrosine kinase | 3932 | This gene is a member of the Src family of protein tyrosine kinases (PTKs). The encoded protein is a key signaling molecule in the selection and maturation of developing T-cells. It contains N-terminal sites for myristylation and palmitylation, a PTK domain, and SH2 and SH3 domains which are involved in mediating protein-protein interactions with phosphotyrosine-containing and proline-rich motifs, respectively. The protein localizes to the plasma membrane and pericentrosomal vesicles, and binds to cell surface receptors, including CD4 and CD8, and other signaling molecules. Multiple alternatively spliced variants, encoding the same protein, have been described. |
| NA | ENSG00000116478 | HDAC1 | histone deacetylase 1 | 3065 | Histone acetylation and deacetylation, catalyzed by multisubunit complexes, play a key role in the regulation of eukaryotic gene expression. The protein encoded by this gene belongs to the histone deacetylase/acuc/apha family and is a component of the histone deacetylase complex. It also interacts with retinoblastoma tumor-suppressor protein and this complex is a key element in the control of cell proliferation and differentiation. Together with metastasis-associated protein-2, it deacetylates p53 and modulates its effect on cell growth and apoptosis. |
| NA | ENSG00000175130 | MARCKSL1 | MARCKS-like 1 | 65108 | This gene encodes a member of the myristoylated alanine-rich C-kinase substrate (MARCKS) family. Members of this family play a role in cytoskeletal regulation, protein kinase C signaling and calmodulin signaling. The encoded protein affects the formation of adherens junction. Alternative splicing results in multiple transcript variants. Pseudogenes of this gene are located on the long arm of chromosomes 6 and 10. |
| NA | ENSG00000160058 | BSDC1 | BSD domain containing 1 | 55108 | NA |
| NA | ENSG00000273274 | ZBTB8B | zinc finger and BTB domain containing 8B | 728116 | NA |
| NA | ENSG00000160062 | ZBTB8A | zinc finger and BTB domain containing 8A | 653121 | NA |
| NA | ENSG00000162521 | RBBP4 | retinoblastoma binding protein 4 | 5928 | This gene encodes a ubiquitously expressed nuclear protein which belongs to a highly conserved subfamily of WD-repeat proteins. It is present in protein complexes involved in histone acetylation and chromatin assembly. It is part of the Mi-2 complex which has been implicated in chromatin remodeling and transcriptional repression associated with histone deacetylation. This encoded protein is also part of co-repressor complexes, which is an integral component of transcriptional silencing. It is found among several cellular proteins that bind directly to retinoblastoma protein to regulate cell proliferation. This protein also seems to be involved in transcriptional repression of E2F-responsive genes. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000162520 | SYNC | syncoilin, intermediate filament protein | 81493 | This gene encodes a member of the intermediate filament family which contains an N-terminal head domain, followed by a central coiled-coil region and a short C-terminal tail. The protein is highly expressed in skeletal and cardiac muscle. The protein links the dystrophin associated protein complex (DAPC) to desmin filaments in muscle and may have a structural role in striated muscle. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000162522 | KIAA1522 | KIAA1522 | 57648 | NA |
| NA | ENSG00000134684 | YARS | tyrosyl-tRNA synthetase | 8565 | Aminoacyl-tRNA synthetases catalyze the aminoacylation of tRNA by their cognate amino acid. Because of their central role in linking amino acids with nucleotide triplets contained in tRNAs, aminoacyl-tRNA synthetases are thought to be among the first proteins that appeared in evolution. Tyrosyl-tRNA synthetase belongs to the class I tRNA synthetase family. Cytokine activities have also been observed for the human tyrosyl-tRNA synthetase, after it is split into two parts, an N-terminal fragment that harbors the catalytic site and a C-terminal fragment found only in the mammalian enzyme. The N-terminal fragment is an interleukin-8-like cytokine, whereas the released C-terminal fragment is an EMAP II-like cytokine. |
| NA | ENSG00000121900 | TMEM54 | transmembrane protein 54 | 113452 | NA |
| NA | ENSG00000116514 | RNF19B | ring finger protein 19B | 127544 | This gene encodes a multi-pass membrane protein containing two RING-type and one IBR-type zinc finger motifs. The encoded protin is an E3 ubiquitin-protein ligase that plays a role in the cytotoxic effects of natural killer (NK) cells. Alternative splicing results in multiple transcript variants. There are pseudogenes for this gene on chromosomes X and Y in a possible pseudoautosomal region. |
| NA | ENSG00000004455 | AK2 | adenylate kinase 2 | 204 | Adenylate kinases are involved in regulating the adenine nucleotide composition within a cell by catalyzing the reversible transfer of phosphate groups among adenine nucleotides. Three isozymes of adenylate kinase, namely 1, 2, and 3, have been identified in vertebrates; this gene encodes isozyme 2. Expression of these isozymes is tissue-specific and developmentally regulated. Isozyme 2 is localized in the mitochondrial intermembrane space and may play a role in apoptosis. Mutations in this gene are the cause of reticular dysgenesis. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 1 and 2. |
| NA | ENSG00000116525 | TRIM62 | tripartite motif containing 62 | 55223 | NA |
| NA | ENSG00000160094 | ZNF362 | zinc finger protein 362 | 149076 | NA |
| NA | ENSG00000134686 | PHC2 | polyhomeotic homolog 2 | 1912 | In Drosophila melanogaster, the ‘Polycomb’ group (PcG) of genes are part of a cellular memory system that is responsible for the stable inheritance of gene activity. PcG proteins form a large multimeric, chromatin-associated protein complex. The protein encoded by this gene has homology to the Drosophila PcG protein ‘polyhomeotic’ (Ph) and is known to heterodimerize with EDR1 and colocalize with BMI1 in interphase nuclei of human cells. The specific function in human cells has not yet been determined. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000121904 | CSMD2 | CUB and Sushi multiple domains 2 | 114784 | NA |
| NA | ENSG00000142698 | C1orf94 | chromosome 1 open reading frame 94 | 84970 | NA |
| NA | ENSG00000163866 | SMIM12 | small integral membrane protein 12 | 113444 | NA |
| NA | ENSG00000116544 | DLGAP3 | discs large homolog associated protein 3 | 58512 | NA |
| NA | ENSG00000163867 | ZMYM6 | zinc finger MYM-type containing 6 | 9204 | NA |
| NA | ENSG00000197056 | ZMYM1 | zinc finger MYM-type containing 1 | 79830 | NA |
| NA | ENSG00000116560 | SFPQ | splicing factor proline/glutamine-rich | 6421 | NA |
| NA | ENSG00000146463 | ZMYM4 | zinc finger MYM-type containing 4 | 9202 | NA |
| NA | ENSG00000142687 | KIAA0319L | KIAA0319 like | 79932 | This gene is a candidate gene for dyslexia susceptibility. |
| NA | ENSG00000020129 | NCDN | neurochondrin | 23154 | This gene encodes a leucine-rich cytoplasmic protein, which is highly similar to a mouse protein that negatively regulates Ca/calmodulin-dependent protein kinase II phosphorylation and may be essential for spatial learning processes. Several alternatively spliced transcript variants of this gene have been described. |
| NA | ENSG00000142686 | C1orf216 | chromosome 1 open reading frame 216 | 127703 | NA |
| NA | ENSG00000092853 | CLSPN | claspin | 63967 | The product of this gene is an essential upstream regulator of checkpoint kinase 1 and triggers a checkpoint arrest of the cell cycle in response to replicative stress or DNA damage. The protein is also required for efficient DNA replication during a normal S phase. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000134698 | AGO4 | argonaute 4, RISC catalytic component | 192670 | This gene encodes a member of the Argonaute family of proteins which play a role in RNA interference. The encoded protein is highly basic containing PAZ and PIWI domains, and it may play a role in short-interfering-RNA-mediated gene silencing. This gene is located on chromosome 1 in a cluster of closely related family members including argonaute 3, and eukaryotic translation initiation factor 2C, 1. |
| NA | ENSG00000092847 | AGO1 | argonaute 1, RISC catalytic component | 26523 | This gene encodes a member of the argonaute family of proteins, which associate with small RNAs and have important roles in RNA interference (RNAi) and RNA silencing. This protein binds to microRNAs (miRNAs) or small interfering RNAs (siRNAs) and represses translation of mRNAs that are complementary to them. It is also involved in transcriptional gene silencing (TGS) of promoter regions that are complementary to bound short antigene RNAs (agRNAs), as well as in the degradation of miRNA-bound mRNA targets. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. A recent study showed this gene to be an authentic stop codon readthrough target, and that its mRNA could give rise to an additional C-terminally extended isoform by use of an alternative in-frame translation termination codon. |
| NA | ENSG00000126070 | AGO3 | argonaute 3, RISC catalytic component | 192669 | This gene encodes a member of the Argonaute family of proteins which play a role in RNA interference. The encoded protein is highly basic, contains a PAZ domain and a PIWI domain, and may play a role in short-interfering-RNA-mediated gene silencing. This gene is located on chromosome 1 in a tandem cluster of closely related family members including argonaute 4 and eukaryotic translation initiation factor 2C, 1. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000116863 | ADPRHL2 | ADP-ribosylhydrolase like 2 | 54936 | This gene encodes a member of the ADP-ribosylglycohydrolase family. The encoded enzyme catalyzes the removal of ADP-ribose from ADP-ribosylated proteins. This enzyme localizes to the mitochondria, in addition to the nucleus and cytoplasm. |
| NA | ENSG00000171812 | COL8A2 | collagen type VIII alpha 2 | 1296 | This gene encodes the alpha 2 chain of type VIII collagen. This protein is a major component of the basement membrane of the corneal endothelium and forms homo- or heterotrimers with alpha 1 (VIII) type collagens. Defects in this gene are associated with Fuchs endothelial corneal dystrophy and posterior polymorphous corneal dystrophy type 2. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000054116 | TRAPPC3 | trafficking protein particle complex 3 | 27095 | This gene encodes a component of the trafficking protein particle complex, which tethers transport vesicles to the cis-Golgi membrane. The encoded protein participates in the regulation of transport from the endoplasmic reticulum to the Golgi apparatus. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000116871 | MAP7D1 | MAP7 domain containing 1 | 55700 | NA |
| NA | ENSG00000054118 | THRAP3 | thyroid hormone receptor associated protein 3 | 9967 | NA |
| NA | ENSG00000214193 | SH3D21 | SH3 domain containing 21 | 79729 | NA |
| NA | ENSG00000142694 | EVA1B | eva-1 homolog B (C. elegans) | 55194 | NA |
| NA | ENSG00000116883 | RP11-268J15.5 | NA | ENSG00000116883 | NA |
| NA | ENSG00000196182 | STK40 | serine/threonine kinase 40 | 83931 | NA |
| NA | ENSG00000116885 | OSCP1 | organic solute carrier partner 1 | 127700 | NA |
| NA | ENSG00000116898 | MRPS15 | mitochondrial ribosomal protein S15 | 64960 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S15P family. The encoded protein is more than two times the size of its E. coli counterpart, with the 12S rRNA binding sites conserved. Between human and mouse, the encoded protein is the least conserved among small subunit ribosomal proteins. Pseudogenes corresponding to this gene are found on chromosomes 15q and 19q. |
| NA | ENSG00000163874 | ZC3H12A | zinc finger CCCH-type containing 12A | 80149 | ZC3H12A is an MCP1 (CCL2; MIM 158105)-induced protein that acts as a transcriptional activator and causes cell death of cardiomyocytes, possibly via induction of genes associated with apoptosis. |
| NA | ENSG00000163875 | MEAF6 | MYST/Esa1 associated factor 6 | 64769 | This gene encodes a nuclear protein involved in transcriptional activation. The encoded protein may form a component of several different histone acetyltransferase complexes. There is a pseudogene for this gene on chromosome 2. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000163877 | SNIP1 | Smad nuclear interacting protein 1 | 79753 | This gene encodes a protein that contains a coiled-coil motif and C-terminal forkhead-associated (FHA) domain. The encoded protein functions as a transcriptional coactivator that increases c-Myc activity and inhibits transforming growth factor beta (TGF-beta) and nuclear factor kappa-B (NF-kB) signaling. The encoded protein also regulates the stability of cyclin D1 mRNA, and may play a role in cell proliferation and cancer progression. Mutations in this gene are a cause of psychomotor retardation, epilepsy, and craniofacial dysmorphism (PMRED). |
| NA | ENSG00000163879 | DNALI1 | dynein axonemal light intermediate chain 1 | 7802 | This gene is the human homolog of the Chlamydomonas inner dynein arm gene, p28. The precise function of this gene is not known, however, it is a potential candidate for immotile cilia syndrome (ICS). Ultrastructural defects of the inner dynein arms are seen in patients with ICS. Immotile mutant strains of Chlamydomonas, a biflagellated algae, exhibit similar defects. |
| NA | ENSG00000134697 | GNL2 | G protein nucleolar 2 | 29889 | NA |
| NA | ENSG00000169218 | RSPO1 | R-spondin 1 | 284654 | This gene encodes a secreted activator protein with two cysteine-rich, furin-like domains and one thrombospondin type 1 domain. The encoded protein is a ligand for leucine-rich repeat-containing G-protein coupled receptors (LGR proteins) and positively regulates the Wnt signaling pathway. In mice, the protein induces the rapid onset of crypt cell proliferation and increases intestinal epithelial healing, providing a protective effect against chemotherapy-induced adverse effects. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000134690 | CDCA8 | cell division cycle associated 8 | 55143 | This gene encodes a component of the chromosomal passenger complex. This complex is an essential regulator of mitosis and cell division. This protein is cell-cycle regulated and is required for chromatin-induced microtubule stabilization and spindle formation. Alternate splicing results in multiple transcript variants. Pseudgenes of this gene are found on chromosomes 7, 8 and 16. |
| NA | ENSG00000196449 | YRDC | yrdC N(6)-threonylcarbamoyltransferase domain containing | 79693 | NA |
| NA | ENSG00000197982 | C1orf122 | chromosome 1 open reading frame 122 | 127687 | NA |
| NA | ENSG00000188786 | MTF1 | metal-regulatory transcription factor 1 | 4520 | This gene encodes a transcription factor that induces expression of metallothioneins and other genes involved in metal homeostasis in response to heavy metals such as cadmium, zinc, copper, and silver. The protein is a nucleocytoplasmic shuttling protein that accumulates in the nucleus upon heavy metal exposure and binds to promoters containing a metal-responsive element (MRE). |
| NA | ENSG00000204084 | INPP5B | inositol polyphosphate-5-phosphatase B | 3633 | This gene encodes a member of a family of inositol polyphosphate-5-phosphatases. These enzymes function in the regulation of calcium signaling by inactivating inositol phosphates. The encoded protein is localized to the cytosol and mitochondria, and associates with membranes through an isoprenyl modification near the C-terminus. Alternatively spliced transcript variants of this gene have been described. |
| NA | ENSG00000183431 | SF3A3 | splicing factor 3a subunit 3 | 10946 | This gene encodes subunit 3 of the splicing factor 3a protein complex. The splicing factor 3a heterotrimer includes subunits 1, 2 and 3 and is necessary for the in vitro conversion of 15S U2 snRNP into an active 17S particle that performs pre-mRNA splicing. Subunit 3 interacts with subunit 1 through its amino-terminus while the zinc finger domain of subunit 3 plays a role in its binding to the 15S U2 snRNP. This gene has a pseudogene on chromosome 20. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000183386 | FHL3 | four and a half LIM domains 3 | 2275 | The protein encoded by this gene is a member of a family of proteins containing a four-and-a-half LIM domain, which is a highly conserved double zinc finger motif. The encoded protein has been shown to interact with the cancer developmental regulators SMAD2, SMAD3, and SMAD4, the skeletal muscle myogenesis protein MyoD, and the high-affinity IgE beta chain regulator MZF-1. This protein may be involved in tumor suppression, repression of MyoD expression, and repression of IgE receptor expression. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183520 | UTP11 | UTP11, small subunit processome component homolog (S. cerevisiae) | 51118 | NA |
| NA | ENSG00000185668 | POU3F1 | POU class 3 homeobox 1 | 5453 | NA |
| NA | ENSG00000116954 | RRAGC | Ras related GTP binding C | 64121 | This gene encodes a member of the GTR/RAG GTP-binding protein family. The encoded protein is a monomeric guanine nucleotide-binding protein which forms a heterodimer with RRAGA and RRAGB and is primarily localized to the cytoplasm. The encoded protein promotes intracellular localization of the mTOR complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000158315 | RHBDL2 | rhomboid, veinlet-like 2 (Drosophila) | 54933 | The protein encoded by this gene is a member of the rhomboid family of integral membrane proteins. This family contains proteins that are related to Drosophila rhomboid protein. Members of this family are found in both prokaryotes and eukaryotes and are thought to function as intramembrane serine proteases. The encoded protein is thought to release soluble growth factors by proteolytic cleavage of certain membrane-bound substrates, including ephrin B2 and ephrin B3. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000174574 | AKIRIN1 | akirin 1 | 79647 | NA |
| NA | ENSG00000127603 | KIAA0754 | KIAA0754 | 643314 | NA |
| NA | ENSG00000127603 | MACF1 | microtubule-actin crosslinking factor 1 | 23499 | This gene encodes a large protein containing numerous spectrin and leucine-rich repeat (LRR) domains. The encoded protein is a member of a family of proteins that form bridges between different cytoskeletal elements. This protein facilitates actin-microtubule interactions at the cell periphery and couples the microtubule network to cellular junctions. Alternative splicing results in multiple transcript variants, but the full-length nature of some of these variants has not been determined. |
| TRUE | ENSG00000255103 | NA | NA | NA | NA |
| NA | ENSG00000090621 | PABPC4 | poly(A) binding protein, cytoplasmic 4 (inducible form) | 8761 | Poly(A)-binding proteins (PABPs) bind to the poly(A) tail present at the 3-prime ends of most eukaryotic mRNAs. PABPC4 or IPABP (inducible PABP) was isolated as an activation-induced T-cell mRNA encoding a protein. Activation of T cells increased PABPC4 mRNA levels in T cells approximately 5-fold. PABPC4 contains 4 RNA-binding domains and proline-rich C terminus. PABPC4 is localized primarily to the cytoplasm. It is suggested that PABPC4 might be necessary for regulation of stability of labile mRNA species in activated T cells. PABPC4 was also identified as an antigen, APP1 (activated-platelet protein-1), expressed on thrombin-activated rabbit platelets. PABPC4 may also be involved in the regulation of protein translation in platelets and megakaryocytes or may participate in the binding or stabilization of polyadenylates in platelet dense granules. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163909 | HEYL | hes related family bHLH transcription factor with YRPW motif-like | 26508 | This gene encodes a member of the hairy and enhancer of split-related (HESR) family of basic helix-loop-helix (bHLH)-type transcription factors. The sequence of the encoded protein contains a conserved bHLH and orange domain, but its YRPW motif has diverged from other HESR family members. It is thought to be an effector of Notch signaling and a regulator of cell fate decisions. Alternatively spliced transcript variants have been found, but their biological validity has not been determined. |
| NA | ENSG00000043514 | TRIT1 | tRNA isopentenyltransferase 1 | 54802 | This gene encodes a protein that that is targeted to the mitochondrion and modifies transfer RNAs (tRNAs) by adding a dimethylallyl group onto the adenine at position 37. This modification is important for maintaining the correct reading frame during protein translation. This gene is considered a tumor suppressor and its expression can decrease cell growth. Alternative splicing results in multiple transcripts variants, most of which are likely non-functional. |
| NA | ENSG00000116990 | MYCL | v-myc avian myelocytomatosis viral oncogene lung carcinoma derived homolog | 4610 | NA |
| NA | ENSG00000168389 | MFSD2A | major facilitator superfamily domain containing 2A | 84879 | NA |
| NA | ENSG00000131236 | CAP1 | CAP, adenylate cyclase-associated protein 1 (yeast) | 10487 | The protein encoded by this gene is related to the S. cerevisiae CAP protein, which is involved in the cyclic AMP pathway. The human protein is able to interact with other molecules of the same protein, as well as with CAP2 and actin. Alternatively spliced transcript variants have been identified. |
| NA | ENSG00000131238 | PPT1 | palmitoyl-protein thioesterase 1 | 5538 | The protein encoded by this gene is a small glycoprotein involved in the catabolism of lipid-modified proteins during lysosomal degradation. The encoded enzyme removes thioester-linked fatty acyl groups such as palmitate from cysteine residues. Defects in this gene are a cause of infantile neuronal ceroid lipofuscinosis 1 (CLN1, or INCL) and neuronal ceroid lipofuscinosis 4 (CLN4). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000117000 | RLF | rearranged L-myc fusion | 6018 | NA |
| NA | ENSG00000084073 | ZMPSTE24 | zinc metallopeptidase STE24 | 10269 | This gene encodes a member of the peptidase M48A family. The encoded protein is a zinc metalloproteinase involved in the two step post-translational proteolytic cleavage of carboxy terminal residues of farnesylated prelamin A to form mature lamin A. Mutations in this gene have been associated with mandibuloacral dysplasia and restrictive dermopathy. |
| NA | ENSG00000084070 | SMAP2 | small ArfGAP2 | 64744 | NA |
| NA | ENSG00000187801 | ZFP69B | ZFP69 zinc finger protein B | 65243 | NA |
| NA | ENSG00000187815 | ZFP69 | ZFP69 zinc finger protein | 339559 | NA |
| NA | ENSG00000164002 | EXO5 | exonuclease 5 | 64789 | NA |
| NA | ENSG00000117010 | ZNF684 | zinc finger protein 684 | 127396 | NA |
| NA | ENSG00000117016 | RIMS3 | regulating synaptic membrane exocytosis 3 | 9783 | NA |
| NA | ENSG00000066136 | NFYC | nuclear transcription factor Y subunit gamma | 4802 | This gene encodes one subunit of a trimeric complex forming a highly conserved transcription factor that binds with high specificity to CCAAT motifs in the promoters of a variety of genes. The encoded protein, subunit C, forms a tight dimer with the B subunit, a prerequisite for subunit A association. The resulting trimer binds to DNA with high specificity and affinity. Subunits B and C each contain a histone-like motif. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000179862 | CITED4 | Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 4 | 163732 | The protein encoded by this intronless gene belongs to the CITED family of transcriptional coactivators that bind to several proteins, including CREB-binding protein (CBP) and p300, via a conserved 32 aa C-terminal motif, and regulate gene transcription. This protein also interacts with transcription factor AP2 (TFAP2), and thus may function as a co-activator for TFAP2. Hypermethylation and transcriptional downregulation of this gene has been observed in oligodendroglial tumors with deletions of chromosomal arms 1p and 19q, and associated with longer recurrence-free and overall survival of patients with oligodendroglial tumors. |
| NA | ENSG00000171793 | CTPS1 | CTP synthase 1 | 1503 | This gene encodes an enzyme responsible for the catalytic conversion of UTP (uridine triphosphate) to CTP (cytidine triphospate). This reaction is an important step in the biosynthesis of phospholipids and nucleic acids. Activity of this proten is important in the immune system, and loss of function of this gene has been associated with immunodeficiency. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000010803 | SCMH1 | sex comb on midleg homolog 1 (Drosophila) | 22955 | NA |
| NA | ENSG00000198815 | FOXJ3 | forkhead box J3 | 22887 | NA |
| NA | ENSG00000177181 | RIMKLA | ribosomal modification protein rimK-like family member A | 284716 | NA |
| NA | ENSG00000171960 | PPIH | peptidylprolyl isomerase H | 10465 | The protein encoded by this gene is a member of the peptidyl-prolyl cis-trans isomerase (PPIase) family. PPIases catalyze the cis-trans isomerization of proline imidic peptide bonds in oligopeptides and accelerate the folding of proteins. This protein is a specific component of the complex that includes pre-mRNA processing factors PRPF3, PRPF4, and PRPF18, as well as U4/U5/U6 tri-snRNP. This protein has been shown to possess PPIase activity and may act as a protein chaperone that mediates the interactions between different proteins inside the spliceosome. |
| NA | ENSG00000065978 | YBX1 | Y-box binding protein 1 | 4904 | This gene encodes a highly conserved cold shock domain protein that has broad nucleic acid binding properties. The encoded protein functions as both a DNA and RNA binding protein and has been implicated in numerous cellular processes including regulation of transcription and translation, pre-mRNA splicing, DNA reparation and mRNA packaging. This protein is also a component of messenger ribonucleoprotein (mRNP) complexes and may have a role in microRNA processing. This protein can be secreted through non-classical pathways and functions as an extracellular mitogen. Aberrant expression of the gene is associated with cancer proliferation in numerous tissues. This gene may be a prognostic marker for poor outcome and drug resistance in certain cancers. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on multiple chromosomes. |
| NA | ENSG00000164007 | CLDN19 | claudin 19 | 149461 | The product of this gene belongs to the claudin family. It plays a major role in tight junction-specific obliteration of the intercellular space, through calcium-independent cell-adhesion activity. Defects in this gene are the cause of hypomagnesemia renal with ocular involvement (HOMGO). HOMGO is a progressive renal disease characterized by primary renal magnesium wasting with hypomagnesemia, hypercalciuria and nephrocalcinosis associated with severe ocular abnormalities such as bilateral chorioretinal scars, macular colobomata, significant myopia and nystagmus. Alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000117385 | P3H1 | prolyl 3-hydroxylase 1 | 64175 | This gene encodes an enzyme that is a member of the collagen prolyl hydroxylase family. These enzymes are localized to the endoplasmic reticulum and their activity is required for proper collagen synthesis and assembly. Mutations in this gene are associated with osteogenesis imperfecta type VIII. Three alternatively spliced transcript variants encoding different isoforms have been described. Other variants may exist, but their biological validity has not been determined. |
| NA | ENSG00000164008 | C1orf50 | chromosome 1 open reading frame 50 | 79078 | NA |
| NA | ENSG00000177868 | SVBP | small vasohibin binding protein | 374969 | NA |
| NA | ENSG00000164010 | ERMAP | erythroblast membrane associated protein (Scianna blood group) | 114625 | The protein encoded by this gene is a cell surface transmembrane protein that may act as an erythroid cell receptor, possibly as a mediator of cell adhesion. Polymorphisms in this gene are responsible for the Scianna/Radin blood group system. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000164011 | ZNF691 | zinc finger protein 691 | 51058 | NA |
| NA | ENSG00000117394 | SLC2A1 | solute carrier family 2 member 1 | 6513 | This gene encodes a major glucose transporter in the mammalian blood-brain barrier. The encoded protein is found primarily in the cell membrane and on the cell surface, where it can also function as a receptor for human T-cell leukemia virus (HTLV) I and II. Mutations in this gene have been found in a family with paroxysmal exertion-induced dyskinesia. |
| NA | ENSG00000117395 | EBNA1BP2 | EBNA1 binding protein 2 | 10969 | NA |
| NA | ENSG00000179178 | TMEM125 | transmembrane protein 125 | 128218 | NA |
| NA | ENSG00000253313 | C1orf210 | chromosome 1 open reading frame 210 | 149466 | NA |
| NA | ENSG00000117399 | CDC20 | cell division cycle 20 | 991 | CDC20 appears to act as a regulatory protein interacting with several other proteins at multiple points in the cell cycle. It is required for two microtubule-dependent processes, nuclear movement prior to anaphase and chromosome separation. |
| NA | ENSG00000066322 | ELOVL1 | ELOVL fatty acid elongase 1 | 64834 | NA |
| NA | ENSG00000159479 | MED8 | mediator complex subunit 8 | 112950 | This gene encodes a protein component of the mediator complex, which aids in transcriptional activation through interaction with RNA polymerase II and gene-specific transcription factors. The encoded protein may also function in ubiquitin ligation and protein degradation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000198198 | SZT2 | seizure threshold 2 homolog (mouse) | 23334 | The protein encoded by this gene is expressed in the brain, predominantly in the parietal and frontal cortex as well as in dorsal root ganglia. It is localized to the peroxisome, and is implicated in resistance to oxidative stress. It likely functions by increasing superoxide dismutase (SOD) activity, but itself has no direct SOD activity. Studies in mice show that this gene confers low seizure threshold, and may also enhance epileptogenesis. |
| NA | ENSG00000178922 | HYI | hydroxypyruvate isomerase (putative) | 81888 | This gene encodes a putative hydroxypyruvate isomerase, which likely catalyzes the conversion of hydroxypyruvate to 2-hydroxy-3-oxopropanoate, and may be involved in carbohydrate transport and metabolism. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000142949 | PTPRF | protein tyrosine phosphatase, receptor type F | 5792 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP possesses an extracellular region, a single transmembrane region, and two tandem intracytoplasmic catalytic domains, and thus represents a receptor-type PTP. The extracellular region contains three Ig-like domains, and nine non-Ig like domains similar to that of neural-cell adhesion molecule. This PTP was shown to function in the regulation of epithelial cell-cell contacts at adherents junctions, as well as in the control of beta-catenin signaling. An increased expression level of this protein was found in the insulin-responsive tissue of obese, insulin-resistant individuals, and may contribute to the pathogenesis of insulin resistance. Two alternatively spliced transcript variants of this gene, which encode distinct proteins, have been reported. |
| NA | ENSG00000126091 | ST3GAL3 | ST3 beta-galactoside alpha-2,3-sialyltransferase 3 | 6487 | The protein encoded by this gene is a type II membrane protein that catalyzes the transfer of sialic acid from CMP-sialic acid to galactose-containing substrates. The encoded protein is normally found in the Golgi apparatus but can be proteolytically processed to a soluble form. This protein is a member of glycosyltransferase family 29. Mutations in this gene have been associated with autosomal recessive nonsymdromic mental retardation-12 (MRT12). Multiple transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000117407 | ARTN | artemin | 9048 | The protein encoded by this gene is a member of the glial cell line-derived neurotophic factor (GDNF) family of ligands which are a group of ligands within the TGF-beta superfamily of signaling molecules. GDNFs are unique in having neurotrophic properties and have potential use for gene therapy in neurodegenerative disease. Artemin has been shown in culture to support the survival of a number of peripheral neuron populations and at least one population of dopaminergic CNS neurons. Its role in the PNS and CNS is further substantiated by its expression pattern in the proximity of these neurons. This protein is a ligand for the RET receptor and uses GFR-alpha 3 as a coreceptor. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000117408 | IPO13 | importin 13 | 9670 | This gene encodes a member of the importin-beta family of nuclear transport proteins. The encoded protein mediates the import of specific cargo proteins from the cytoplasm to the nucleus and is dependent on the Ras-related nuclear protein-GTPase system. The encoded protein is also involved in nuclear export of the eukaryotic translation initiation factor 1A. |
| NA | ENSG00000132768 | DPH2 | DPH2 homolog | 1802 | This gene is one of two human genes similar to the yeast gene dph2. The yeast gene was identified by its ability to complement a diphthamide mutant strain, and thus probably functions in diphthamide biosynthesis. Diphthamide is a post-translationally modified histidine residue present in elongation factor 2 (EF2) that is the target of diphtheria toxin ADP-ribosylation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000117410 | ATP6V0B | ATPase H+ transporting V0 subunit b | 533 | This gene encodes a portion of the V0 domain of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. Activity of this enzyme is necessary for such varied processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000117411 | B4GALT2 | beta-1,4-galactosyltransferase 2 | 8704 | This gene is one of seven beta-1,4-galactosyltransferase (beta4GalT) genes. They encode type II membrane-bound glycoproteins that appear to have exclusive specificity for the donor substrate UDP-galactose; all transfer galactose in a beta1,4 linkage to similar acceptor sugars: GlcNAc, Glc, and Xyl. Each beta4GalT has a distinct function in the biosynthesis of different glycoconjugates and saccharide structures. As type II membrane proteins, they have an N-terminal hydrophobic signal sequence that directs the protein to the Golgi apparatus and which then remains uncleaved to function as a transmembrane anchor. By sequence similarity, the beta4GalTs form four groups: beta4GalT1 and beta4GalT2, beta4GalT3 and beta4GalT4, beta4GalT5 and beta4GalT6, and beta4GalT7. The enzyme encoded by this gene synthesizes N-acetyllactosamine in glycolipids and glycoproteins. Its substrate specificity is affected by alpha-lactalbumin but it is not expressed in lactating mammary tissue. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000159214 | CCDC24 | coiled-coil domain containing 24 | 149473 | NA |
| NA | ENSG00000196517 | SLC6A9 | solute carrier family 6 member 9 | 6536 | NA |
| NA | ENSG00000178028 | DMAP1 | DNA methyltransferase 1 associated protein 1 | 55929 | This gene encodes a subunit of several, distinct complexes involved in the repression or activation of transcription. The encoded protein can independently repress transcription and is targeted to replication foci throughout S phase by interacting directly with the N-terminus of DNA methyltransferase 1. During late S phase, histone deacetylase 2 is added to this complex, providing a means to deacetylate histones in transcriptionally inactive heterochromatin following replication. The encoded protein is also a component of the nucleosome acetyltransferase of H4 complex and interacts with the transcriptional corepressor tumor susceptibility gene 101 and the pro-apoptotic death-associated protein 6, among others. Alternatively spliced transcript variants encoding the same protein have been described. |
| NA | ENSG00000117419 | ERI3 | ERI1 exoribonuclease family member 3 | 79033 | NA |
| NA | ENSG00000126106 | TMEM53 | transmembrane protein 53 | 79639 | NA |
| NA | ENSG00000142945 | KIF2C | kinesin family member 2C | 11004 | This gene encodes a kinesin-like protein that functions as a microtubule-dependent molecular motor. The encoded protein can depolymerize microtubules at the plus end, thereby promoting mitotic chromosome segregation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000142937 | RPS8 | ribosomal protein S8 | 6202 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S8E family of ribosomal proteins. It is located in the cytoplasm. Increased expression of this gene in colorectal tumors and colon polyps compared to matched normal colonic mucosa has been observed. This gene is co-transcribed with the small nucleolar RNA genes U38A, U38B, U39, and U40, which are located in its fourth, fifth, first, and second introns, respectively. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000142959 | BEST4 | bestrophin 4 | 266675 | This gene is a member of the bestrophin gene family of anion channels. Bestrophin genes share a similar gene structure with highly conserved exon-intron boundaries, but with distinct 3’ ends. Bestrophins are transmembrane proteins that contain a homologous region rich in aromatic residues, including an invariant arg-phe-pro motif. Mutation in one of the family members (bestrophin 1) is associated with vitelliform macular dystrophy. The bestrophin 4 gene is predominantly expressed in the colon. |
| NA | ENSG00000173846 | PLK3 | polo like kinase 3 | 1263 | The protein encoded by this gene is a member of the highly conserved polo-like kinase family of serine/threonine kinases. Members of this family are characterized by an amino-terminal kinase domain and a carboxy-terminal bipartite polo box domain that functions as a substrate-binding motif and a cellular localization signal. Polo-like kinases are important regulators of cell cycle progression. This gene has also been implicated in stress responses and double-strand break repair. In human cell lines, this protein is reported to associate with centrosomes in a microtubule-dependent manner, and during mitosis, the protein becomes localized to the mitotic apparatus. Expression of a kinase-defective mutant results in abnormal cell morphology caused by changes in microtubule dynamics and mitotic arrest followed by apoptosis. |
| NA | ENSG00000117425 | PTCH2 | patched 2 | 8643 | This gene encodes a transmembrane receptor of the patched gene family. The encoded protein may function as a tumor suppressor in the hedgehog signaling pathway. Alterations in this gene have been associated with nevoid basal cell carcinoma syndrome, basal cell carcinoma, medulloblastoma, and susceptibility to congenital macrostomia. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000070785 | EIF2B3 | eukaryotic translation initiation factor 2B subunit gamma | 8891 | The protein encoded by this gene is one of the subunits of initiation factor eIF2B, which catalyzes the exchange of eukaryotic initiation factor 2-bound GDP for GTP. It has also been found to function as a cofactor of hepatitis C virus internal ribosome entry site-mediated translation. Mutations in this gene have been associated with leukodystrophy with vanishing white matter. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000126107 | HECTD3 | HECT domain E3 ubiquitin protein ligase 3 | 79654 | The protein encoded by this gene transfers ubiquitin from an E2 ubiquitin-conjugating enzyme to targeted substrates, leading to the degradation of those substrates. The encoded protein has been shown to transfer ubiquitin to TRIOBP to facilitate cell cycle progression, and to STX8. |
| NA | ENSG00000162415 | ZSWIM5 | zinc finger SWIM-type containing 5 | 57643 | NA |
| NA | ENSG00000186603 | HPDL | 4-hydroxyphenylpyruvate dioxygenase like | 84842 | NA |
| NA | ENSG00000132781 | MUTYH | mutY DNA glycosylase | 4595 | This gene encodes a DNA glycosylase involved in oxidative DNA damage repair. The enzyme excises adenine bases from the DNA backbone at sites where adenine is inappropriately paired with guanine, cytosine, or 8-oxo-7,8-dihydroguanine, a major oxidatively damaged DNA lesion. The protein is localized to the nucleus and mitochondria. Mutations in this gene result in heritable predisposition to colon and stomach cancer. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132773 | TOE1 | target of EGR1, member 1 (nuclear) | 114034 | NA |
| NA | ENSG00000070759 | TESK2 | testis-specific kinase 2 | 10420 | This gene product is a serine/threonine protein kinase that contains an N-terminal protein kinase domain that is structurally similar to the kinase domains of testis-specific protein kinase-1 and the LIM motif-containing protein kinases (LIMKs). Its overall structure is most related to the former, indicating that it belongs to the TESK subgroup of the LIMK/TESK family of protein kinases. This gene is predominantly expressed in testis and prostate. The developmental expression pattern of the rat gene in testis suggests an important role for this gene in meitoic stages and/or early stages of spermiogenesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000132763 | MMACHC | methylmalonic aciduria (cobalamin deficiency) cblC type, with homocystinuria | 25974 | The exact function of the protein encoded by this gene is not known, however, its C-terminal region shows similarity to TonB, a bacterial protein involved in energy transduction for cobalamin (vitamin B12) uptake. Hence, it is postulated that this protein may have a role in the binding and intracellular trafficking of cobalamin. Mutations in this gene are associated with methylmalonic aciduria and homocystinuria type cblC. |
| NA | ENSG00000117450 | PRDX1 | peroxiredoxin 1 | 5052 | This gene encodes a member of the peroxiredoxin family of antioxidant enzymes, which reduce hydrogen peroxide and alkyl hydroperoxides. The encoded protein may play an antioxidant protective role in cells, and may contribute to the antiviral activity of CD8(+) T-cells. This protein may have a proliferative effect and play a role in cancer development or progression. Four transcript variants encoding the same protein have been identified for this gene. |
| NA | ENSG00000117448 | AKR1A1 | aldo-keto reductase family 1, member A1 (aldehyde reductase) | 10327 | This gene encodes a member of the aldo/keto reductase superfamily, which consists of more than 40 known enzymes and proteins. This member, also known as aldehyde reductase, is involved in the reduction of biogenic and xenobiotic aldehydes and is present in virtually every tissue. Multiple alternatively spliced transcript variants of this gene exist, all encoding the same protein. |
| NA | ENSG00000132780 | NASP | nuclear autoantigenic sperm protein | 4678 | This gene encodes a H1 histone binding protein that is involved in transporting histones into the nucleus of dividing cells. Multiple isoforms are encoded by transcript variants of this gene. The somatic form is expressed in all mitotic cells, is localized to the nucleus, and is coupled to the cell cycle. The testicular form is expressed in embryonic tissues, tumor cells, and the testis. In male germ cells, this protein is localized to the cytoplasm of primary spermatocytes, the nucleus of spermatids, and the periacrosomal region of mature spermatozoa. |
| NA | ENSG00000159592 | GPBP1L1 | GC-rich promoter binding protein 1 like 1 | 60313 | NA |
| NA | ENSG00000159596 | TMEM69 | transmembrane protein 69 | 51249 | NA |
| NA | ENSG00000197429 | IPP | intracisternal A particle-promoted polypeptide | 3652 | The protein encoded by this gene is a member of the kelch family of proteins, which is characterized by a 50 amino acid repeat which interacts with actin. Transcript variants have been described but their full-length nature has not been determined. |
| NA | ENSG00000086015 | MAST2 | microtubule associated serine/threonine kinase 2 | 23139 | NA |
| NA | ENSG00000117461 | PIK3R3 | phosphoinositide-3-kinase regulatory subunit 3 | 8503 | NA |
| NA | ENSG00000085998 | POMGNT1 | protein O-linked mannose N-acetylglucosaminyltransferase 1 (beta 1,2-) | 55624 | This gene encodes a type II transmembrane protein that resides in the Golgi apparatus. It participates in O-mannosyl glycosylation and is specific for alpha linked terminal mannose. Mutations in this gene may be associated with muscle-eye-brain disease and several congenital muscular dystrophies. Alternatively spliced transcript variants that encode different protein isoforms have been described. |
| NA | ENSG00000171357 | LURAP1 | leucine rich adaptor protein 1 | 541468 | NA |
| NA | ENSG00000085999 | RAD54L | RAD54-like (S. cerevisiae) | 8438 | The protein encoded by this gene belongs to the DEAD-like helicase superfamily, and shares similarity with Saccharomyces cerevisiae Rad54, a protein known to be involved in the homologous recombination and repair of DNA. This protein has been shown to play a role in homologous recombination related repair of DNA double-strand breaks. The binding of this protein to double-strand DNA induces a DNA topological change, which is thought to facilitate homologous DNA paring, and stimulate DNA recombination. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000132128 | LRRC41 | leucine rich repeat containing 41 | 10489 | NA |
| NA | ENSG00000173660 | UQCRH | ubiquinol-cytochrome c reductase hinge protein | 7388 | NA |
| NA | ENSG00000117481 | NSUN4 | NOP2/Sun RNA methyltransferase family member 4 | 387338 | NA |
| NA | ENSG00000117480 | FAAH | fatty acid amide hydrolase | 2166 | This gene encodes a protein that is responsible for the hydrolysis of a number of primary and secondary fatty acid amides, including the neuromodulatory compounds anandamide and oleamide. |
| NA | ENSG00000079277 | MKNK1 | MAP kinase interacting serine/threonine kinase 1 | 8569 | This gene encodes a Ser/Thr protein kinase that interacts with, and is activated by ERK1 and p38 mitogen-activated protein kinases, and thus may play a role in the response to environmental stress and cytokines. This kinase may also regulate transcription by phosphorylating eIF4E via interaction with the C-terminal region of eIF4G. Alternatively spliced transcript variants have been noted for this gene. |
| NA | ENSG00000142961 | MOB3C | MOB kinase activator 3C | 148932 | The protein encoded by this gene is similar to the yeast Mob1 protein. Yeast Mob1 binds Mps1p, a protein kinase essential for spindle pole body duplication and mitotic checkpoint regulation. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000159658 | EFCAB14 | EF-hand calcium binding domain 14 | 9813 | NA |
| NA | ENSG00000186377 | CYP4X1 | cytochrome P450 family 4 subfamily X member 1 | 260293 | This gene encodes a member of the cytochrome P450 superfamily of enzymes and is located within a cluster of genes belonging to this superfamily on chromosome 1. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. The expression pattern of a similar rat protein suggests that this protein may be involved in neurovascular function in the brain. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000123473 | STIL | SCL/TAL1 interrupting locus | 6491 | This gene encodes a cytoplasmic protein implicated in regulation of the mitotic spindle checkpoint, a regulatory pathway that monitors chromosome segregation during cell division to ensure the proper distribution of chromosomes to daughter cells. The protein is phosphorylated in mitosis and in response to activation of the spindle checkpoint, and disappears when cells transition to G1 phase. It interacts with a mitotic regulator, and its expression is required to efficiently activate the spindle checkpoint. It is proposed to regulate Cdc2 kinase activity during spindle checkpoint arrest. Chromosomal deletions that fuse this gene and the adjacent locus commonly occur in T cell leukemias, and are thought to arise through illegitimate V-(D)-J recombination events. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132122 | SPATA6 | spermatogenesis associated 6 | 54558 | NA |
| NA | ENSG00000162373 | BEND5 | BEN domain containing 5 | 79656 | NA |
| NA | ENSG00000162374 | ELAVL4 | ELAV like neuron-specific RNA binding protein 4 | 1996 | NA |
| NA | ENSG00000185104 | FAF1 | Fas associated factor 1 | 11124 | Interaction of Fas ligand (TNFSF6) with the FAS antigen (TNFRSF6) mediates programmed cell death, also called apoptosis, in a number of organ systems. The protein encoded by this gene binds to FAS antigen and can initiate apoptosis or enhance apoptosis initiated through FAS antigen. Initiation of apoptosis by the protein encoded by this gene requires a ubiquitin-like domain but not the FAS-binding domain. |
| NA | ENSG00000123091 | RNF11 | ring finger protein 11 | 26994 | The protein encoded by this gene contains a RING-H2 finger motif, which is known to be important for protein-protein interactions. The expression of this gene has been shown to be induced by mutant RET proteins (MEN2A/MEN2B). The germline mutations in RET gene are known to be responsible for the development of multiple endocrine neoplasia (MEN). |
| NA | ENSG00000085831 | TTC39A | tetratricopeptide repeat domain 39A | 22996 | NA |
| NA | ENSG00000085832 | EPS15 | epidermal growth factor receptor pathway substrate 15 | 2060 | This gene encodes a protein that is part of the EGFR pathway. The protein is present at clatherin-coated pits and is involved in receptor-mediated endocytosis of EGF. Notably, this gene is rearranged with the HRX/ALL/MLL gene in acute myelogeneous leukemias. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000117859 | OSBPL9 | oxysterol binding protein like 9 | 114883 | This gene encodes a member of the oxysterol-binding protein (OSBP) family, a group of intracellular lipid receptors. Most members contain an N-terminal pleckstrin homology domain and a highly conserved C-terminal OSBP-like sterol-binding domain, although some members contain only the sterol-binding domain. This family member functions as a cholesterol transfer protein that regulates Golgi structure and function. Multiple transcript variants, most of which encode distinct isoforms, have been identified. Related pseudogenes have been identified on chromosomes 3, 11 and 12. |
| NA | ENSG00000078618 | NRDC | nardilysin convertase | 4898 | This gene encodes a zinc-dependent endopeptidase that cleaves peptide substrates at the N-terminus of arginine residues in dibasic moieties and is a member of the peptidase M16 family. This protein interacts with heparin-binding EGF-like growth factor and plays a role in cell migration and proliferation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169213 | RAB3B | RAB3B, member RAS oncogene family | 5865 | NA |
| NA | ENSG00000117862 | TXNDC12 | thioredoxin domain containing 12 (endoplasmic reticulum) | 51060 | This gene encodes a member of the thioredoxin superfamily. Members of this family are characterized by a conserved active motif called the thioredoxin fold that catalyzes disulfide bond formation and isomerization. This protein localizes to the endoplasmic reticulum and has a single atypical active motif. The encoded protein is mainly involved in catalyzing native disulfide bond formation and displays activity similar to protein-disulfide isomerases. This protein may play a role in defense against endoplasmic reticulum stress. Alternate splicing results in both coding and non-coding variants. |
| NA | ENSG00000198841 | KTI12 | KTI12 chromatin associated homolog | 112970 | NA |
| NA | ENSG00000157077 | ZFYVE9 | zinc finger FYVE-type containing 9 | 9372 | This gene encodes a double zinc finger motif-containing protein that participates in the transforming growth factor-beta (TGFB) signalling pathway. The encoded protein interacts directly with SMAD2 and SMAD3, and recruits SMAD2 to the TGFB receptor. There are multiple pseudogenes for this gene on chromosomes 2, 15, and X. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000154222 | CC2D1B | coiled-coil and C2 domain containing 1B | 200014 | NA |
| NA | ENSG00000085840 | ORC1 | origin recognition complex subunit 1 | 4998 | The origin recognition complex (ORC) is a highly conserved six subunits protein complex essential for the initiation of the DNA replication in eukaryotic cells. Studies in yeast demonstrated that ORC binds specifically to origins of replication and serves as a platform for the assembly of additional initiation factors such as Cdc6 and Mcm proteins. The protein encoded by this gene is the largest subunit of the ORC complex. While other ORC subunits are stable throughout the cell cycle, the levels of this protein vary during the cell cycle, which has been shown to be controlled by ubiquitin-mediated proteolysis after initiation of DNA replication. This protein is found to be selectively phosphorylated during mitosis. It is also reported to interact with MYST histone acetyltransferase 2 (MyST2/HBO1), a protein involved in control of transcription silencing. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000116157 | GPX7 | glutathione peroxidase 7 | 2882 | NA |
| NA | ENSG00000162377 | COA7 | cytochrome c oxidase assembly factor 7 (putative) | 65260 | NA |
| NA | ENSG00000162378 | ZYG11B | zyg-11 family member B, cell cycle regulator | 79699 | NA |
| NA | ENSG00000121310 | ECHDC2 | enoyl-CoA hydratase domain containing 2 | 55268 | NA |
| NA | ENSG00000157184 | CPT2 | carnitine palmitoyltransferase 2 | 1376 | The protein encoded by this gene is a nuclear protein which is transported to the mitochondrial inner membrane. Together with carnitine palmitoyltransferase I, the encoded protein oxidizes long-chain fatty acids in the mitochondria. Defects in this gene are associated with mitochondrial long-chain fatty-acid (LCFA) oxidation disorders. |
| NA | ENSG00000162384 | C1orf123 | chromosome 1 open reading frame 123 | 54987 | NA |
| NA | ENSG00000162385 | MAGOH | mago homolog, exon junction complex core component | 4116 | Drosophila that have mutations in their mago nashi (grandchildless) gene produce progeny with defects in germplasm assembly and germline development. This gene encodes the mammalian mago nashi homolog. In mammals, mRNA expression is not limited to the germ plasm, but is expressed ubiquitously in adult tissues and can be induced by serum stimulation of quiescent fibroblasts. |
| NA | ENSG00000157193 | LRP8 | LDL receptor related protein 8 | 7804 | This gene encodes a member of the low density lipoprotein receptor (LDLR) family. Low density lipoprotein receptors are cell surface proteins that play roles in both signal transduction and receptor-mediated endocytosis of specific ligands for lysosomal degradation. The encoded protein plays a critical role in the migration of neurons during development by mediating Reelin signaling, and also functions as a receptor for the cholesterol transport protein apolipoprotein E. Expression of this gene may be a marker for major depressive disorder. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000058804 | NDC1 | NDC1 transmembrane nucleoporin | 55706 | NA |
| NA | ENSG00000058799 | YIPF1 | Yip1 domain family member 1 | 54432 | NA |
| NA | ENSG00000116212 | LRRC42 | leucine rich repeat containing 42 | 115353 | NA |
| NA | ENSG00000116205 | TCEANC2 | transcription elongation factor A N-terminal and central domain containing 2 | 127428 | NA |
| TRUE | ENSG00000248835 | NA | NA | NA | NA |
| NA | ENSG00000215883 | CYB5RL | cytochrome b5 reductase like | 606495 | NA |
| NA | ENSG00000116221 | MRPL37 | mitochondrial ribosomal protein L37 | 51253 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000157216 | SSBP3 | single stranded DNA binding protein 3 | 23648 | NA |
| NA | ENSG00000162390 | ACOT11 | acyl-CoA thioesterase 11 | 26027 | This gene encodes a member of the acyl-CoA thioesterase family which catalyse the conversion of activated fatty acids to the corresponding non-esterified fatty acid and coenzyme A. Expression of a mouse homolog in brown adipose tissue is induced by low temperatures and repressed by warm temperatures. Higher levels of expression of the mouse homolog has been found in obesity-resistant mice compared with obesity-prone mice, suggesting a role of acyl-CoA thioesterase 11 in obesity. Alternative splicing results in transcript variants. |
| NA | ENSG00000243725 | TTC4 | tetratricopeptide repeat domain 4 | 7268 | This gene encodes a protein that contains tetratricopeptide (TPR) repeats, which often mediate protein-protein interactions and chaperone activity. The encoded protein interacts with heat shock proteins 70 and 90. Alternative splicing results in multiple transcript variants. Naturally-occuring readthrough transcription occurs from upstream gene MROH (maestro heat-like repeat family member 7) to this gene. |
| NA | ENSG00000162396 | PARS2 | prolyl-tRNA synthetase 2, mitochondrial (putative) | 25973 | This gene encodes a putative member of the class II family of aminoacyl-tRNA synthetases. These enzymes play a critical role in protein biosynthesis by charging tRNAs with their cognate amino acids. This protein is encoded by the nuclear genome but is likely to be imported to the mitochondrion where it is thought to catalyze the ligation of proline to tRNA molecules. Mutations have been found in this gene in some patients with Alpers syndrome. |
| NA | ENSG00000116133 | DHCR24 | 24-dehydrocholesterol reductase | 1718 | This gene encodes a flavin adenine dinucleotide (FAD)-dependent oxidoreductase which catalyzes the reduction of the delta-24 double bond of sterol intermediates during cholesterol biosynthesis. The protein contains a leader sequence that directs it to the endoplasmic reticulum membrane. Missense mutations in this gene have been associated with desmosterolosis. Also, reduced expression of the gene occurs in the temporal cortex of Alzheimer disease patients and overexpression has been observed in adrenal gland cancer cells. |
| NA | ENSG00000169174 | PCSK9 | proprotein convertase subtilisin/kexin type 9 | 255738 | This gene encodes a member of the subtilisin-like proprotein convertase family, which includes proteases that process protein and peptide precursors trafficking through regulated or constitutive branches of the secretory pathway. The encoded protein undergoes an autocatalytic processing event with its prosegment in the ER and is constitutively secreted as an inactive protease into the extracellular matrix and trans-Golgi network. It is expressed in liver, intestine and kidney tissues and escorts specific receptors for lysosomal degradation. It plays a role in cholesterol and fatty acid metabolism. Mutations in this gene have been associated with autosomal dominant familial hypercholesterolemia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000162402 | USP24 | ubiquitin specific peptidase 24 | 23358 | Modification of cellular proteins by ubiquitin is an essential regulatory mechanism controlled by the coordinated action of multiple ubiquitin-conjugating and deubiquitinating enzymes. USP24 belongs to a large family of cysteine proteases that function as deubiquitinating enzymes (Quesada et al., 2004 [PubMed 14715245]). |
| NA | ENSG00000162407 | PLPP3 | phospholipid phosphatase 3 | 8613 | The protein encoded by this gene is a member of the phosphatidic acid phosphatase (PAP) family. PAPs convert phosphatidic acid to diacylglycerol, and function in de novo synthesis of glycerolipids as well as in receptor-activated signal transduction mediated by phospholipase D. This protein is a membrane glycoprotein localized at the cell plasma membrane. It has been shown to actively hydrolyze extracellular lysophosphatidic acid and short-chain phosphatidic acid. The expression of this gene is found to be enhanced by epidermal growth factor in Hela cells. |
| NA | ENSG00000162409 | PRKAA2 | protein kinase AMP-activated catalytic subunit alpha 2 | 5563 | The protein encoded by this gene is a catalytic subunit of the AMP-activated protein kinase (AMPK). AMPK is a heterotrimer consisting of an alpha catalytic subunit, and non-catalytic beta and gamma subunits. AMPK is an important energy-sensing enzyme that monitors cellular energy status. In response to cellular metabolic stresses, AMPK is activated, and thus phosphorylates and inactivates acetyl-CoA carboxylase (ACC) and beta-hydroxy beta-methylglutaryl-CoA reductase (HMGCR), key enzymes involved in regulating de novo biosynthesis of fatty acid and cholesterol. Studies of the mouse counterpart suggest that this catalytic subunit may control whole-body insulin sensitivity and is necessary for maintaining myocardial energy homeostasis during ischemia. |
| NA | ENSG00000173406 | DAB1 | DAB1, reelin adaptor protein | 1600 | The laminar organization of multiple neuronal types in the cerebral cortex is required for normal cognitive function. In mice, the disabled-1 gene plays a central role in brain development, directing the migration of cortical neurons past previously formed neurons to reach their proper layer. This gene is similar to disabled-1, and the protein encoded by this gene is thought to be a signal transducer that interacts with protein kinase pathways to regulate neuronal positioning in the developing brain. Alternatively spliced transcript variants of this gene have been reported, but their full length nature has not been determined. |
| NA | ENSG00000162601 | MYSM1 | Myb like, SWIRM and MPN domains 1 | 114803 | NA |
| NA | ENSG00000177606 | JUN | jun proto-oncogene | 3725 | This gene is the putative transforming gene of avian sarcoma virus 17. It encodes a protein which is highly similar to the viral protein, and which interacts directly with specific target DNA sequences to regulate gene expression. This gene is intronless and is mapped to 1p32-p31, a chromosomal region involved in both translocations and deletions in human malignancies. |
| NA | ENSG00000172456 | FGGY | FGGY carbohydrate kinase domain containing | 55277 | This gene encodes a protein that phosphorylates carbohydrates such as ribulose, ribitol, and L-arabinitol. Genome-wide association studies in some populations have found an association between polymorphisms in this gene and sporadic amyotrophic lateral sclerosis, but studies of other populations have not been able to replicate this association. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000134709 | HOOK1 | hook microtubule-tethering protein 1 | 51361 | This gene encodes a member of the hook family of coiled-coil proteins, which bind to microtubules and organelles through their N- and C-terminal domains, respectively. The encoded protein localizes to discrete punctuate subcellular structures, and interacts with several members of the Rab GTPase family involved in endocytosis. It is thought to link endocytic membrane trafficking to the microtubule cytoskeleton. Several alternatively spliced transcript variants have been identified, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000134716 | CYP2J2 | cytochrome P450 family 2 subfamily J member 2 | 1573 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. This protein localizes to the endoplasmic reticulum and is thought to be the predominant enzyme responsible for epoxidation of endogenous arachidonic acid in cardiac tissue. Multiple transcript variants have been found for this gene. |
| NA | ENSG00000162599 | NFIA | nuclear factor I/A | 4774 | This gene encodes a member of the NF1 (nuclear factor 1) family of transcription factors. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000162604 | TM2D1 | TM2 domain containing 1 | 83941 | The protein encoded by this gene is a beta-amyloid peptide-binding protein. It contains a structural module related to that of the seven transmembrane domain G protein-coupled receptor superfamily and known to be important in heterotrimeric G protein activation. Beta-amyloid peptide has been established to be a causative factor in neuron death and the consequent diminution of cognitive abilities observed in Alzheimer’s disease. This protein may be a target of neurotoxic beta-amyloid peptide, and may mediate cellular vulnerability to beta-amyloid peptide toxicity through a G protein-regulated program of cell death. Several transcript variants have been found for this gene. |
| NA | ENSG00000240563 | L1TD1 | LINE-1 type transposase domain containing 1 | 54596 | NA |
| NA | ENSG00000162607 | USP1 | ubiquitin specific peptidase 1 | 7398 | This gene encodes a member of the ubiquitin-specific processing (UBP) family of proteases that is a deubiquitinating enzyme (DUB) with His and Cys domains. This protein is located in the cytoplasm and cleaves the ubiquitin moiety from ubiquitin-fused precursors and ubiquitinylated proteins. The protein specifically deubiquitinates a protein in the Fanconi anemia (FA) DNA repair pathway. Alternate transcriptional splice variants have been characterized. |
| NA | ENSG00000116641 | DOCK7 | dedicator of cytokinesis 7 | 85440 | The protein encoded by this gene is a guanine nucleotide exchange factor (GEF) that plays a role in axon formation and neuronal polarization. The encoded protein displays GEF activity toward RAC1 and RAC3 Rho small GTPases but not toward CDC42. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125703 | ATG4C | autophagy related 4C cysteine peptidase | 84938 | Autophagy is the process by which endogenous proteins and damaged organelles are destroyed intracellularly. Autophagy is postulated to be essential for cell homeostasis and cell remodeling during differentiation, metamorphosis, non-apoptotic cell death, and aging. Reduced levels of autophagy have been described in some malignant tumors, and a role for autophagy in controlling the unregulated cell growth linked to cancer has been proposed. This gene encodes a member of the autophagin protein family. The encoded protein is also designated as a member of the C-54 family of cysteine proteases. Alternate transcriptional splice variants, encoding the same protein, have been characterized. |
| NA | ENSG00000187140 | FOXD3 | forkhead box D3 | 27022 | This gene belongs to the forkhead family of transcription factors which is characterized by a distinct forkhead domain. Mutations in this gene cause autoimmune susceptibility 1. |
| NA | ENSG00000142856 | ITGB3BP | integrin subunit beta 3 binding protein | 23421 | This gene encodes a transcriptional coregulator that binds to and enhances the activity of members of the nuclear receptor families, thyroid hormone receptors and retinoid X receptors. This protein also acts as a corepressor of NF-kappaB-dependent signaling. This protein induces apoptosis in breast cancer cells through a caspase 2-mediated signaling pathway. This protein is also a component of the centromere-specific histone H3 variant nucleosome associated complex (CENP-NAC) and may be involved in mitotic progression by recruiting the histone H3 variant CENP-A to the centromere. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000203965 | EFCAB7 | EF-hand calcium binding domain 7 | 84455 | NA |
| NA | ENSG00000079739 | PGM1 | phosphoglucomutase 1 | 5236 | The protein encoded by this gene is an isozyme of phosphoglucomutase (PGM) and belongs to the phosphohexose mutase family. There are several PGM isozymes, which are encoded by different genes and catalyze the transfer of phosphate between the 1 and 6 positions of glucose. In most cell types, this PGM isozyme is predominant, representing about 90% of total PGM activity. In red cells, PGM2 is a major isozyme. This gene is highly polymorphic. Mutations in this gene cause glycogen storage disease type 14. Alternativley spliced transcript variants encoding different isoforms have been identified in this gene. |
| NA | ENSG00000158966 | CACHD1 | cache domain containing 1 | 57685 | NA |
| NA | ENSG00000162437 | RAVER2 | ribonucleoprotein, PTB-binding 2 | 55225 | NA |
| NA | ENSG00000162434 | JAK1 | Janus kinase 1 | 3716 | Janus kinase 1, is a member of a new class of protein-tyrosine kinases (PTK) characterized by the presence of a second phosphotransferase-related domain immediately N-terminal to the PTK domain. The second phosphotransferase domain bears all the hallmarks of a protein kinase, although its structure differs significantly from that of the PTK and threonine/serine kinase family members. JAK1 is a large, widely expressed membrane-associated phosphoprotein. JAK1 is involved in the interferon-alpha/beta and -gamma signal transduction pathways. The reciprocal interdependence between JAK1 and TYK2 activities in the interferon-alpha pathway, and between JAK1 and JAK2 in the interferon-gamma pathway, may reflect a requirement for these kinases in the correct assembly of interferon receptor complexes. These kinases couple cytokine ligand binding to tyrosine phosphorylation of various known signaling proteins and of a unique family of transcription factors termed the signal transducers and activators of transcription, or STATs. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000162433 | AK4 | adenylate kinase 4 | 205 | This gene encodes a member of the adenylate kinase family of enzymes. The encoded protein is localized to the mitochondrial matrix. Adenylate kinases regulate the adenine and guanine nucleotide compositions within a cell by catalyzing the reversible transfer of phosphate group among these nucleotides. Five isozymes of adenylate kinase have been identified in vertebrates. Expression of these isozymes is tissue-specific and developmentally regulated. A pseudogene for this gene has been located on chromosome 17. Three transcript variants encoding the same protein have been identified for this gene. Sequence alignment suggests that the gene defined by NM_013410, NM_203464, and NM_001005353 is located on chromosome 1. |
| NA | ENSG00000116675 | DNAJC6 | DnaJ heat shock protein family (Hsp40) member C6 | 9829 | DNAJC6 belongs to the evolutionarily conserved DNAJ/HSP40 family of proteins, which regulate molecular chaperone activity by stimulating ATPase activity. DNAJ proteins may have up to 3 distinct domains: a conserved 70-amino acid J domain, usually at the N terminus, a glycine/phenylalanine (G/F)-rich region, and a cysteine-rich domain containing 4 motifs resembling a zinc finger domain (Ohtsuka and Hata, 2000 [PubMed 11147971]). |
| NA | ENSG00000116678 | LEPR | leptin receptor | 3953 | The protein encoded by this gene belongs to the gp130 family of cytokine receptors that are known to stimulate gene transcription via activation of cytosolic STAT proteins. This protein is a receptor for leptin (an adipocyte-specific hormone that regulates body weight), and is involved in the regulation of fat metabolism, as well as in a novel hematopoietic pathway that is required for normal lymphopoiesis. Mutations in this gene have been associated with obesity and pituitary dysfunction. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. It is noteworthy that this gene and LEPROT gene (GeneID:54741) share the same promoter and the first 2 exons, however, encode distinct proteins (PMID:9207021). |
| NA | ENSG00000213625 | LEPROT | leptin receptor overlapping transcript | 54741 | LEPROT is associated with the Golgi complex and endosomes and has a role in cell surface expression of growth hormone receptor (GHR; MIM 600946) and leptin receptor (OBR, or LEPR; MIM 601007), thereby altering receptor-mediated cell signaling (Couturier et al., 2007 [PubMed 18042720]; Touvier et al., 2009 [PubMed 19907080]). |
| NA | ENSG00000184588 | PDE4B | phosphodiesterase 4B | 5142 | This gene is a member of the type IV, cyclic AMP (cAMP)-specific, cyclic nucleotide phosphodiesterase (PDE) family. The encoded protein regulates the cellular concentrations of cyclic nucleotides and thereby play a role in signal transduction. Altered activity of this protein has been associated with schizophrenia and bipolar affective disorder. Alternative splicing and the use of alternative promoters results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000152760 | TCTEX1D1 | Tctex1 domain containing 1 | 200132 | NA |
| NA | ENSG00000116704 | SLC35D1 | solute carrier family 35 member D1 | 23169 | Glycosylation of cellular glycoconjugates occurs in the endoplasmic reticulum (ER) and Golgi compartment, and requires transport of nucleotide sugars from the cytosol into the lumen of the ER and Golgi by specific transporters. The protein encoded by this gene resides in the ER, and transports both UDP-glucuronic acid (UDP-GlcA) and UDP-N-acetylgalactosamine (UDP-GalNAc) from the cytoplasm to the ER lumen. It may participate in glucuronidation and/or chondroitin sulfate biosynthesis. Mutations in this gene are associated with Schneckenbecken dysplasia. |
| NA | ENSG00000142864 | SERBP1 | SERPINE1 mRNA binding protein 1 | 26135 | NA |
| NA | ENSG00000116717 | GADD45A | growth arrest and DNA damage inducible alpha | 1647 | This gene is a member of a group of genes whose transcript levels are increased following stressful growth arrest conditions and treatment with DNA-damaging agents. The protein encoded by this gene responds to environmental stresses by mediating activation of the p38/JNK pathway via MTK1/MEKK4 kinase. The DNA damage-induced transcription of this gene is mediated by both p53-dependent and -independent mechanisms. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000066557 | LRRC40 | leucine rich repeat containing 40 | 55631 | NA |
| NA | ENSG00000116754 | SRSF11 | serine/arginine-rich splicing factor 11 | 9295 | This gene encodes 54-kD nuclear protein that contains an arginine/serine-rich region similar to segments found in pre-mRNA splicing factors. Although the function of this protein is not yet known, structure and immunolocalization data suggest that it may play a role in pre-mRNA processing. Alternative splicing results in multiple transcript variants encoding different proteins. In addition, a pseudogene of this gene has been found on chromosome 12. |
| NA | ENSG00000118454 | ANKRD13C | ankyrin repeat domain 13C | 81573 | NA |
| NA | ENSG00000132485 | ZRANB2 | zinc finger RANBP2-type containing 2 | 9406 | NA |
| NA | ENSG00000172260 | NEGR1 | neuronal growth regulator 1 | 257194 | NA |
| NA | ENSG00000162620 | LRRIQ3 | leucine-rich repeats and IQ motif containing 3 | 127255 | NA |
| NA | ENSG00000254685 | FPGT | fucose-1-phosphate guanylyltransferase | 8790 | L-fucose is a key sugar in glycoproteins and other complex carbohydrates since it may be involved in many of the functional roles of these macromolecules, such as in cell-cell recognition. The fucosyl donor for these fucosylated oligosaccharides is GDP-beta-L-fucose. There are two alternate pathways for the biosynthesis of GDP-fucose; the major pathway converts GDP-alpha-D-mannose to GDP-beta-L-fucose. The protein encoded by this gene participates in an alternate pathway that is present in certain mammalian tissues, such as liver and kidney, and appears to function as a salvage pathway to reutilize L-fucose arising from the turnover of glycoproteins and glycolipids. This pathway involves the phosphorylation of L-fucose to form beta-L-fucose-1-phosphate, and then condensation of the beta-L-fucose-1-phosphate with GTP by fucose-1-phosphate guanylyltransferase to form GDP-beta-L-fucose. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the neighboring downstream TNNI3 interacting kinase (TNNI3K) gene. |
| NA | ENSG00000116791 | CRYZ | crystallin zeta | 1429 | Crystallins are separated into two classes: taxon-specific, or enzyme, and ubiquitous. The latter class constitutes the major proteins of vertebrate eye lens and maintains the transparency and refractive index of the lens. The former class is also called phylogenetically-restricted crystallins. This gene encodes a taxon-specific crystallin protein which has NADPH-dependent quinone reductase activity distinct from other known quinone reductases. It lacks alcohol dehydrogenase activity although by similarity it is considered a member of the zinc-containing alcohol dehydrogenase family. Unlike other mammalian species, in humans, lens expression is low. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. One pseudogene is known to exist. |
| NA | ENSG00000137968 | SLC44A5 | solute carrier family 44 member 5 | 204962 | NA |
| NA | ENSG00000117054 | ACADM | acyl-CoA dehydrogenase, C-4 to C-12 straight chain | 34 | This gene encodes the medium-chain specific (C4 to C12 straight chain) acyl-Coenzyme A dehydrogenase. The homotetramer enzyme catalyzes the initial step of the mitochondrial fatty acid beta-oxidation pathway. Defects in this gene cause medium-chain acyl-CoA dehydrogenase deficiency, a disease characterized by hepatic dysfunction, fasting hypoglycemia, and encephalopathy, which can result in infantile death. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000184005 | ST6GALNAC3 | ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 3 | 256435 | ST6GALNAC3 belongs to a family of sialyltransferases that transfer sialic acids from CMP-sialic acid to terminal positions of carbohydrate groups in glycoproteins and glycolipids (Lee et al., 1999 [PubMed 10207017]). |
| NA | ENSG00000117069 | ST6GALNAC5 | ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 5 | 81849 | The protein encoded by this gene is a Golgi type II transmembrane glycosyltransferase. The encoded protein catalyzes the transfer of sialic acid to cell surface proteins to modulate cell-cell interactions. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000154027 | AK5 | adenylate kinase 5 | 26289 | This gene encodes a member of the adenylate kinase family, which is involved in regulating the adenine nucleotide composition within a cell by catalyzing the reversible transfer of phosphate groups among adenine nucleotides. This member is related to the UMP/CMP kinase of several species. It is located in the cytosol and expressed exclusively in brain. Alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000036549 | ZZZ3 | zinc finger ZZ-type containing 3 | 26009 | NA |
| NA | ENSG00000077254 | USP33 | ubiquitin specific peptidase 33 | 23032 | This gene encodes a deubiquinating enzyme important in a variety of processes, including Slit-dependent cell migration and beta-2 adrenergic receptor signaling. The protein is negatively regulated through ubiquitination by von Hippel-Lindau tumor protein (VHL). Alternative splicing results in multiple transcript variants and protein isoforms. |
| NA | ENSG00000180488 | FAM73A | family with sequence similarity 73 member A | 374986 | NA |
| NA | ENSG00000162614 | NEXN | nexilin (F actin binding protein) | 91624 | This gene encodes a filamentous actin-binding protein that may function in cell adhesion and migration. Mutations in this gene have been associated with dilated cardiomyopathy, also known as CMD1CC. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000162613 | FUBP1 | far upstream element binding protein 1 | 8880 | The protein encoded by this gene is a single stranded DNA-binding protein that binds to multiple DNA elements, including the far upstream element (FUSE) located upstream of c-myc. Binding to FUSE occurs on the non-coding strand, and is important to the regulation of c-myc in undifferentiated cells. This protein contains three domains, an amphipathic helix N-terminal domain, a DNA-binding central domain, and a C-terminal transactivation domain that contains three tyrosine-rich motifs. The N-terminal domain is thought to repress the activity of the C-terminal domain. This protein is also thought to bind RNA, and contains 3’-5’ helicase activity with in vitro activity on both DNA-DNA and RNA-RNA duplexes. Aberrant expression of this gene has been found in malignant tissues, and this gene is important to neural system and lung development. Binding of this protein to viral RNA is thought to play a role in several viral diseases, including hepatitis C and hand, foot and mouth disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000162616 | DNAJB4 | DnaJ heat shock protein family (Hsp40) member B4 | 11080 | The protein encoded by this gene is a molecular chaperone, tumor suppressor, and member of the heat shock protein-40 family. The encoded protein binds the cell adhesion protein E-cadherin and targets it to the plasma membrane. This protein also binds incorrectly folded E-cadherin and targets it for endoplasmic reticulum-associated degradation. This gene is a strong tumor suppressor for colorectal carcinoma, and downregulation of it may serve as a good biomarker for predicting patient outcomes. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000117114 | ADGRL2 | adhesion G protein-coupled receptor L2 | 23266 | This gene encodes a member of the latrophilin subfamily of G-protein coupled receptors. The encoded protein participates in the regulation of exocytosis. The proprotein is thought to be further cleaved within a cysteine-rich G-protein-coupled receptor proteolysis site into two chains that are non-covalently bound at the cell membrane. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000137941 | TTLL7 | tubulin tyrosine ligase like 7 | 79739 | NA |
| NA | ENSG00000142875 | PRKACB | protein kinase cAMP-activated catalytic subunit beta | 5567 | The protein encoded by this gene is a member of the serine/threonine protein kinase family. The encoded protein is a catalytic subunit of cAMP (cyclic AMP)-dependent protein kinase, which mediates signalling though cAMP. cAMP signaling is important to a number of processes, including cell proliferaton and differentiation. Multiple alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000203943 | SAMD13 | sterile alpha motif domain containing 13 | 148418 | NA |
| NA | ENSG00000117133 | RPF1 | ribosome production factor 1 homolog | 80135 | NA |
| NA | ENSG00000174021 | GNG5 | G protein subunit gamma 5 | 2787 | G proteins are trimeric (alpha-beta-gamma) membrane-associated proteins that regulate flow of information from cell surface receptors to a variety of internal metabolic effectors. Interaction of a G protein with its activated receptor promotes exchange of GTP for GDP that is bound to the alpha subunit. The alpha-GTP complex dissociates from the beta-gamma heterodimer so that the subunits, in turn, may interact with and regulate effector molecules (Gilman, 1987 [PubMed 3113327]; summary by Ahmad et al., 1995) [PubMed 7606925]. |
| NA | ENSG00000117151 | CTBS | chitobiase | 1486 | Chitobiase is a lysosomal glycosidase involved in degradation of asparagine-linked oligosaccharides on glycoproteins (Aronson and Kuranda, 1989 [PubMed 2531691]). |
| NA | ENSG00000171517 | LPAR3 | lysophosphatidic acid receptor 3 | 23566 | This gene encodes a member of the G protein-coupled receptor family, as well as the EDG family of proteins. This protein functions as a cellular receptor for lysophosphatidic acid and mediates lysophosphatidic acid-evoked calcium mobilization. This receptor couples predominantly to G(q/11) alpha proteins. |
| NA | ENSG00000055732 | MCOLN3 | mucolipin 3 | 55283 | This gene encodes one of members of the mucolipin cation channel proteins. Mutation studies of the highly similar protein in mice have shown that the protein is found in cochlea hair cells, and mutant mice show early-onset hearing loss and balance problems. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000097096 | SYDE2 | synapse defective 1, Rho GTPase, homolog 2 (C. elegans) | 84144 | NA |
| NA | ENSG00000162642 | C1orf52 | chromosome 1 open reading frame 52 | 148423 | NA |
| NA | ENSG00000142867 | BCL10 | B-cell CLL/lymphoma 10 | 8915 | This gene was identified by its translocation in a case of mucosa-associated lymphoid tissue (MALT) lymphoma. The protein encoded by this gene contains a caspase recruitment domain (CARD), and has been shown to induce apoptosis and to activate NF-kappaB. This protein is reported to interact with other CARD domain containing proteins including CARD9, 10, 11 and 14, which are thought to function as upstream regulators in NF-kappaB signaling. This protein is found to form a complex with MALT1, a protein encoded by another gene known to be translocated in MALT lymphoma. MALT1 and this protein are thought to synergize in the activation of NF-kappaB, and the deregulation of either of them may contribute to the same pathogenetic process that leads to the malignancy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000153904 | DDAH1 | dimethylarginine dimethylaminohydrolase 1 | 23576 | This gene belongs to the dimethylarginine dimethylaminohydrolase (DDAH) gene family. The encoded enzyme plays a role in nitric oxide generation by regulating cellular concentrations of methylarginines, which in turn inhibit nitric oxide synthase activity. |
| NA | ENSG00000142871 | CYR61 | cysteine rich angiogenic inducer 61 | 3491 | The secreted protein encoded by this gene is growth factor-inducible and promotes the adhesion of endothelial cells. The encoded protein interacts with several integrins and with heparan sulfate proteoglycan. This protein also plays a role in cell proliferation, differentiation, angiogenesis, apoptosis, and extracellular matrix formation. |
| NA | ENSG00000117174 | ZNHIT6 | zinc finger HIT-type containing 6 | 54680 | NA |
| NA | ENSG00000122417 | ODF2L | outer dense fiber of sperm tails 2 like | 57489 | NA |
| NA | ENSG00000097033 | SH3GLB1 | SH3-domain GRB2 like endophilin B1 | 51100 | This gene encodes a SRC homology 3 domain-containing protein. The encoded protein interacts with the proapoptotic member of the Bcl-2 family, Bcl-2-associated X protein (Bax) and may be involved in regulating apoptotic signaling pathways. This protein may also be involved in maintaining mitochondrial morphology. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000153936 | HS2ST1 | heparan sulfate 2-O-sulfotransferase 1 | 9653 | Heparan sulfate biosynthetic enzymes are key components in generating a myriad of distinct heparan sulfate fine structures that carry out multiple biologic activities. This gene encodes a member of the heparan sulfate biosynthetic enzyme family that transfers sulfate to the 2 position of the iduronic acid residue of heparan sulfate. The disruption of this gene resulted in no kidney formation in knockout embryonic mice, indicating that the absence of this enzyme may interfere with the signaling required for kidney formation. Two alternatively spliced transcript variants that encode different proteins have been found for this gene. |
| NA | ENSG00000143013 | LMO4 | LIM domain only 4 | 8543 | This gene encodes a cysteine-rich protein that contains two LIM domains but lacks a DNA-binding homeodomain. The encoded protein may play a role as a transcriptional regulator or as an oncogene. |
| NA | ENSG00000065243 | PKN2 | protein kinase N2 | 5586 | NA |
| NA | ENSG00000137947 | GTF2B | general transcription factor IIB | 2959 | This gene encodes the general transcription factor IIB, one of the ubiquitous factors required for transcription initiation by RNA polymerase II. The protein localizes to the nucleus where it forms a complex (the DAB complex) with transcription factors IID and IIA. Transcription factor IIB serves as a bridge between IID, the factor which initially recognizes the promoter sequence, and RNA polymerase II. |
| NA | ENSG00000137944 | CCBL2 | cysteine conjugate-beta lyase 2 | 56267 | This gene encodes an aminotransferase that transaminates kynurenine to form kynurenic acid. Kynurenic acid is a metabolite of tryptophan. Multiple alternatively spliced transcript variants that encode different proteins have been described for this gene. This gene shares 5’ exon structure with the RNA binding motif protein, X-linked-like 1 locus on chromosome 1, but the coding sequences are non-overlapping. |
| NA | ENSG00000213516 | RBMXL1 | RNA binding motif protein, X-linked-like 1 | 494115 | This gene represents a retrogene of RNA binding motif protein, X-linked (RBMX), which is located on chromosome X. While all introns in the coding sequence have been processed out compared to the RBMX locus, the ORF is intact and there is specific evidence for transcription at this location. The preservation of the ORF by purifying selection in all Old World monkeys carrying it suggests that this locus is likely to be functional, possibly during male meiosis when X chromosomal genes are silenced or during haploid stages of spermatogenesis. This gene shares 5’ exon structure with the cysteine conjugate-beta lyase 2 locus on chromosome 1, but the coding sequences are non-overlapping. Alternative splicing results in two transcript variants. |
| NA | ENSG00000197147 | LRRC8B | leucine-rich repeat containing 8 family member B | 23507 | NA |
| NA | ENSG00000171488 | LRRC8C | leucine-rich repeat containing 8 family member C | 84230 | NA |
| NA | ENSG00000171492 | LRRC8D | leucine-rich repeat containing 8 family member D | 55144 | NA |
| NA | ENSG00000162664 | ZNF326 | zinc finger protein 326 | 284695 | NA |
| NA | ENSG00000162669 | HFM1 | HFM1, ATP-dependent DNA helicase homolog | 164045 | The protein encoded by this gene is thought to be an ATP-dependent DNA helicase and is expressed mainly in germ-line cells. Defects in this gene are a cause of premature ovarian failure 9 (POF9). |
| NA | ENSG00000097046 | CDC7 | cell division cycle 7 | 8317 | This gene encodes a cell division cycle protein with kinase activity that is critical for the G1/S transition. The yeast homolog is also essential for initiation of DNA replication as cell division occurs. Overexpression of this gene product may be associated with neoplastic transformation for some tumors. Multiple alternatively spliced transcript variants that encode the same protein have been detected. |
| NA | ENSG00000069702 | TGFBR3 | transforming growth factor beta receptor III | 7049 | This locus encodes the transforming growth factor (TGF)-beta type III receptor. The encoded receptor is a membrane proteoglycan that often functions as a co-receptor with other TGF-beta receptor superfamily members. Ectodomain shedding produces soluble TGFBR3, which may inhibit TGFB signaling. Decreased expression of this receptor has been observed in various cancers. Alternatively spliced transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000172031 | EPHX4 | epoxide hydrolase 4 | 253152 | NA |
| NA | ENSG00000174842 | GLMN | glomulin, FKBP associated protein | 11146 | This gene encodes a phosphorylated protein that is a member of a Skp1-Cullin-F-box-like complex. The protein is essential for normal development of the vasculature and mutations in this gene have been associated with glomuvenous malformations, also called glomangiomas. Multiple splice variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000122484 | RPAP2 | RNA polymerase II associated protein 2 | 79871 | NA |
| NA | ENSG00000067208 | EVI5 | ecotropic viral integration site 5 | 7813 | NA |
| NA | ENSG00000122406 | RPL5 | ribosomal protein L5 | 6125 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L18P family of ribosomal proteins. It is located in the cytoplasm. The protein binds 5S rRNA to form a stable complex called the 5S ribonucleoprotein particle (RNP), which is necessary for the transport of nonribosome-associated cytoplasmic 5S rRNA to the nucleolus for assembly into ribosomes. The protein interacts specifically with the beta subunit of casein kinase II. Variable expression of this gene in colorectal cancers compared to adjacent normal tissues has been observed, although no correlation between the level of expression and the severity of the disease has been found. This gene is co-transcribed with the small nucleolar RNA gene U21, which is located in its fifth intron. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000154511 | FAM69A | family with sequence similarity 69 member A | 388650 | This gene encodes a member of the FAM69 family of cysteine-rich type II transmembrane proteins. These proteins localize to the endoplasmic reticulum but their specific functions are unknown. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000143033 | MTF2 | metal response element binding transcription factor 2 | 22823 | NA |
| NA | ENSG00000122483 | CCDC18 | coiled-coil domain containing 18 | 343099 | NA |
| NA | ENSG00000117505 | DR1 | down-regulator of transcription 1 | 1810 | This gene encodes a TBP- (TATA box-binding protein) associated phosphoprotein that represses both basal and activated levels of transcription. The encoded protein is phosphorylated in vivo and this phosphorylation affects its interaction with TBP. This protein contains a histone fold motif at the amino terminus, a TBP-binding domain, and a glutamine- and alanine-rich region. The binding of DR1 repressor complexes to TBP-promoter complexes may establish a mechanism in which an altered DNA conformation, together with the formation of higher order complexes, inhibits the assembly of the preinitiation complex and controls the rate of RNA polymerase II transcription. |
| NA | ENSG00000137942 | FNBP1L | formin binding protein 1 like | 54874 | The protein encoded by this gene binds to both CDC42 and N-WASP. This protein promotes CDC42-induced actin polymerization by activating the N-WASP-WIP complex and, therefore, is involved in a pathway that links cell surface signals to the actin cytoskeleton. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000137936 | BCAR3 | breast cancer anti-estrogen resistance 3 | 8412 | Breast tumors are initially dependent on estrogens for growth and progression and can be inhibited by anti-estrogens such as tamoxifen. However, breast cancers progress to become anti-estrogen resistant. Breast cancer anti-estrogen resistance gene 3 was identified in the search for genes involved in the development of estrogen resistance. The gene encodes a component of intracellular signal transduction that causes estrogen-independent proliferation in human breast cancer cells. The protein contains a putative src homology 2 (SH2) domain, a hall mark of cellular tyrosine kinase signaling molecules, and is partly homologous to the cell division cycle protein CDC48. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000067334 | DNTTIP2 | deoxynucleotidyltransferase, terminal, interacting protein 2 | 30836 | This gene is thought to be involved in chromatin remodeling and gene transcription. The encoded nuclear protein binds to and enhances the transcriptional activity of the estrogen receptor alpha, and also interacts with terminal deoxynucleotidyltransferase. The expression profile of this gene is a potential biomarker for chronic obstructive pulmonary disease. |
| NA | ENSG00000137962 | ARHGAP29 | Rho GTPase activating protein 29 | 9411 | NA |
| NA | ENSG00000117528 | ABCD3 | ATP binding cassette subfamily D member 3 | 5825 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the ALD subfamily, which is involved in peroxisomal import of fatty acids and/or fatty acyl-CoAs in the organelle. All known peroxisomal ABC transporters are half transporters which require a partner half transporter molecule to form a functional homodimeric or heterodimeric transporter. This peroxisomal membrane protein likely plays an important role in peroxisome biogenesis. Mutations have been associated with some forms of Zellweger syndrome, a heterogeneous group of peroxisome assembly disorders. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000117525 | F3 | coagulation factor III, tissue factor | 2152 | This gene encodes coagulation factor III which is a cell surface glycoprotein. This factor enables cells to initiate the blood coagulation cascades, and it functions as the high-affinity receptor for the coagulation factor VII. The resulting complex provides a catalytic event that is responsible for initiation of the coagulation protease cascades by specific limited proteolysis. Unlike the other cofactors of these protease cascades, which circulate as nonfunctional precursors, this factor is a potent initiator that is fully functional when expressed on cell surfaces. There are 3 distinct domains of this factor: extracellular, transmembrane, and cytoplasmic. This protein is the only one in the coagulation pathway for which a congenital deficiency has not been described. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000117519 | CNN3 | calponin 3 | 1266 | This gene encodes a protein with a markedly acidic C terminus; the basic N-terminus is highly homologous to the N-terminus of a related gene, CNN1. Members of the CNN gene family all contain similar tandemly repeated motifs. This encoded protein is associated with the cytoskeleton but is not involved in contraction. |
| NA | ENSG00000152078 | TMEM56 | transmembrane protein 56 | 148534 | NA |
| NA | ENSG00000162627 | SNX7 | sorting nexin 7 | 51375 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein does not contain a coiled coil region like some family members, and its exact function is unknown. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 11. |
| NA | ENSG00000117598 | PLPPR5 | phospholipid phosphatase related 5 | 163404 | The protein encoded by this gene is a type 2 member of the phosphatidic acid phosphatase (PAP) family. All type 2 members of this protein family contain 6 transmembrane regions, and a consensus N-glycosylation site. PAPs convert phosphatidic acid to diacylglycerol, and function in de novo synthesis of glycerolipids as well as in receptor-activated signal transduction mediated by phospholipase D. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000162688 | AGL | amylo-alpha-1, 6-glucosidase, 4-alpha-glucanotransferase | 178 | This gene encodes the glycogen debrancher enzyme which is involved in glycogen degradation. This enzyme has two independent catalytic activities which occur at different sites on the protein: a 4-alpha-glucotransferase activity and a amylo-1,6-glucosidase activity. Mutations in this gene are associated with glycogen storage disease although a wide range of enzymatic and clinical variability occurs which may be due to tissue-specific alternative splicing. Alternatively spliced transcripts encoding different isoforms have been described. |
| NA | ENSG00000117620 | SLC35A3 | solute carrier family 35 member A3 | 23443 | This gene encodes a UDP-N-acetylglucosamine transporter found in the golgi apparatus membrane. In cattle, a missense mutation in this gene causes complex vertebral malformation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000156875 | MFSD14A | major facilitator superfamily domain containing 14A | 64645 | NA |
| NA | ENSG00000156876 | SASS6 | SAS-6 centriolar assembly protein | 163786 | SAS6 is necessary for centrosome duplication and functions during procentriole formation; SAS6 functions to ensure that each centriole seeds the formation of a single procentriole per cell cycle Strnad et al., (2007) [PubMed 17681132]. |
| NA | ENSG00000122435 | TRMT13 | tRNA methyltransferase 13 homolog (S. cerevisiae) | 54482 | NA |
| NA | ENSG00000137992 | DBT | dihydrolipoamide branched chain transacylase E2 | 1629 | The branched-chain alpha-keto acid dehydrogenase complex (BCKD) is an inner-mitochondrial enzyme complex involved in the breakdown of the branched-chain amino acids isoleucine, leucine, and valine. The BCKD complex is thought to be composed of a core of 24 transacylase (E2) subunits, and associated decarboxylase (E1), dehydrogenase (E3), and regulatory subunits. This gene encodes the transacylase (E2) subunit. Mutations in this gene result in maple syrup urine disease, type 2. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000137996 | RTCA | RNA 3’-terminal phosphate cyclase | 8634 | This gene encodes a member of the RNA 3’-phosphate cyclase family. The encoded protein plays a role in RNA metabolism by catalyzing the ATP-dependent conversion of the 3’-phosphate of RNA substrates to a 2’,3’-cyclic phosphodiester. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000079335 | CDC14A | cell division cycle 14A | 8556 | The protein encoded by this gene is a member of the dual specificity protein tyrosine phosphatase family. It is highly similar to Saccharomyces cerevisiae Cdc14, a protein tyrosine phosphatase involved in the exit of cell mitosis and initiation of DNA replication, suggesting a role in cell cycle control. This protein has been shown to interact with, and dephosphorylate tumor suppressor protein p53, and is thought to regulate the function of p53. Alternative splicing of this gene results in several transcript variants encoding distinct isoforms. |
| NA | ENSG00000162695 | SLC30A7 | solute carrier family 30 member 7 | 148867 | Zinc functions as a cofactor for numerous enzymes, nuclear factors, and hormones and as an intra- and intercellular signal ion. Members of the zinc transporter (ZNT)/SLC30 subfamily of the cation diffusion facilitator family, such as SLC30A7, permit cellular efflux of zinc (Seve et al., 2004 [PubMed 15154973]). |
| NA | ENSG00000117543 | DPH5 | diphthamide biosynthesis 5 | 51611 | This gene encodes a component of the diphthamide synthesis pathway. Diphthamide is a post-translationally modified histidine residue found only on translation elongation factor 2. It is conserved from archaebacteria to humans, and is targeted by diphtheria toxin and Pseudomonas exotoxin A to halt cellular protein synthesis. The yeast and Chinese hamster homologs of this protein catalyze the trimethylation of the histidine residue on elongation factor 2, resulting in a diphthine moiety that is subsequently amidated to yield diphthamide. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000118733 | OLFM3 | olfactomedin 3 | 118427 | NA |
| NA | ENSG00000060718 | COL11A1 | collagen type XI alpha 1 | 1301 | This gene encodes one of the two alpha chains of type XI collagen, a minor fibrillar collagen. Type XI collagen is a heterotrimer but the third alpha chain is a post-translationally modified alpha 1 type II chain. Mutations in this gene are associated with type II Stickler syndrome and with Marshall syndrome. A single-nucleotide polymorphism in this gene is also associated with susceptibility to lumbar disc herniation. Multiple transcript variants have been identified for this gene. |
| NA | ENSG00000185946 | RNPC3 | RNA binding region (RNP1, RRM) containing 3 | 55599 | Two types of spliceosomes catalyze splicing of pre-mRNAs. The major U2-type spliceosome is found in all eukaryotes and removes U2-type introns, which represent more than 99% of pre-mRNA introns. The minor U12-type spliceosome is found in some eukaryotes and removes U12-type introns, which are rare and have distinct splice consensus signals. The U12-type spliceosome consists of several small nuclear RNAs and associated proteins. This gene encodes a 65K protein that is a component of the U12-type spliceosome. This protein contains two RNA recognition motifs (RRMs), suggesting that it may contact one of the small nuclear RNAs of the minor spliceosome. |
| NA | ENSG00000240038 | AMY2B | amylase, alpha 2B (pancreatic) | 280 | Amylases are secreted proteins that hydrolyze 1,4-alpha-glucoside bonds in oligosaccharides and polysaccharides, and thus catalyze the first step in digestion of dietary starch and glycogen. The human genome has a cluster of several amylase genes that are expressed at high levels in either salivary gland or pancreas. This gene encodes an amylase isoenzyme produced by the pancreas. |
| NA | ENSG00000198890 | PRMT6 | protein arginine methyltransferase 6 | 55170 | The protein encoded by this gene belongs to the arginine N-methyltransferase family, which catalyze the sequential transfer of methyl group from S-adenosyl-L-methionine to the side chain nitrogens of arginine residues within proteins, to form methylated arginine derivatives and S-adenosyl-L-homocysteine. This protein can catalyze both, the formation of omega-N monomethylarginine and asymmetrical dimethylarginine, with a strong preference for the latter. It specifically mediates the asymmetric dimethylation of Arg2 of histone H3, and the methylated form represents a specific tag for epigenetic transcriptional repression. This protein also forms a complex with, and methylates DNA polymerase beta, resulting in stimulation of polymerase activity by enhancing DNA binding and processivity. |
| NA | ENSG00000134215 | VAV3 | vav guanine nucleotide exchange factor 3 | 10451 | This gene is a member of the VAV gene family. The VAV proteins are guanine nucleotide exchange factors (GEFs) for Rho family GTPases that activate pathways leading to actin cytoskeletal rearrangements and transcriptional alterations. This gene product acts as a GEF preferentially for RhoG, RhoA, and to a lesser extent, RAC1, and it associates maximally with the nucleotide-free states of these GTPases. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000162636 | FAM102B | family with sequence similarity 102 member B | 284611 | NA |
| NA | ENSG00000162639 | HENMT1 | HEN1 methyltransferase homolog 1 | 113802 | NA |
| NA | ENSG00000134186 | PRPF38B | pre-mRNA processing factor 38B | 55119 | NA |
| NA | ENSG00000143107 | FNDC7 | fibronectin type III domain containing 7 | 163479 | NA |
| NA | ENSG00000121957 | GPSM2 | G-protein signaling modulator 2 | 29899 | The protein encoded by this gene belongs to a family of proteins that modulate activation of G proteins, which transduce extracellular signals received by cell surface receptors into integrated cellular responses. The N-terminal half of this protein contains 10 copies of leu-gly-asn (LGN) repeat, and the C-terminal half contains 4 GoLoco motifs, which are involved in guanine nucleotide exchange. This protein may play a role in neuroblast division and in the development of normal hearing. Mutations in this gene are associated with autosomal recessive nonsyndromic deafness (DFNB82). |
| NA | ENSG00000121940 | CLCC1 | chloride channel CLIC like 1 | 23155 | NA |
| NA | ENSG00000085433 | WDR47 | WD repeat domain 47 | 22911 | NA |
| NA | ENSG00000197780 | TAF13 | TATA-box binding protein associated factor 13 | 6884 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes a small subunit associated with a subset of TFIID complexes. This subunit interacts with TBP and with two other small subunits of TFIID, TAF10 and TAF11. There is a pseudogene located on chromosome 6. |
| NA | ENSG00000215717 | TMEM167B | transmembrane protein 167B | 56900 | NA |
| NA | ENSG00000031698 | SARS | seryl-tRNA synthetase | 6301 | This gene belongs to the class II amino-acyl tRNA family. The encoded enzyme catalyzes the transfer of L-serine to tRNA (Ser) and is related to bacterial and yeast counterparts. Multiple alternatively spliced transcript variants have been described but the biological validity of all variants is unknown. |
| NA | ENSG00000143126 | CELSR2 | cadherin EGF LAG seven-pass G-type receptor 2 | 1952 | The protein encoded by this gene is a member of the flamingo subfamily, part of the cadherin superfamily. The flamingo subfamily consists of nonclassic-type cadherins; a subpopulation that does not interact with catenins. The flamingo cadherins are located at the plasma membrane and have nine cadherin domains, seven epidermal growth factor-like repeats and two laminin A G-type repeats in their ectodomain. They also have seven transmembrane domains, a characteristic unique to this subfamily. It is postulated that these proteins are receptors involved in contact-mediated communication, with cadherin domains acting as homophilic binding regions and the EGF-like domains involved in cell adhesion and receptor-ligand interactions. The specific function of this particular member has not been determined. |
| NA | ENSG00000134222 | PSRC1 | proline/serine-rich coiled-coil 1 | 84722 | This gene encodes a proline-rich protein that is a target for regulation by the tumor suppressor protein p53. The encoded protein plays an important role in mitosis by recruiting and regulating microtubule depolymerases that destabalize microtubules. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000134243 | SORT1 | sortilin 1 | 6272 | This gene encodes a member of the VPS10-related sortilin family of proteins. The encoded preproprotein is proteolytically processed by furin to generate the mature receptor. This receptor plays a role in the trafficking of different proteins to either the cell surface, or subcellular compartments such as lysosomes and endosomes. Expression levels of this gene may influence the risk of myocardial infarction in human patients. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000143106 | PSMA5 | proteasome subunit alpha 5 | 5686 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the peptidase T1A family, that is a 20S core alpha subunit. Multiple alternatively spliced transcript variants encoding two distinct isoforms have been found for this gene. |
| NA | ENSG00000162650 | ATXN7L2 | ataxin 7 like 2 | 127002 | NA |
| NA | ENSG00000181754 | AMIGO1 | adhesion molecule with Ig-like domain 1 | 57463 | NA |
| NA | ENSG00000116337 | AMPD2 | adenosine monophosphate deaminase 2 | 271 | The protein encoded by this gene is important in purine metabolism by converting AMP to IMP. The encoded protein, which acts as a homotetramer, is one of three AMP deaminases found in mammals. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000168765 | GSTM4 | glutathione S-transferase mu 4 | 2948 | Cytosolic and membrane-bound forms of glutathione S-transferase are encoded by two distinct supergene families. At present, eight distinct classes of the soluble cytoplasmic mammalian glutathione S-transferases have been identified: alpha, kappa, mu, omega, pi, sigma, theta and zeta. This gene encodes a glutathione S-transferase that belongs to the mu class. The mu class of enzymes functions in the detoxification of electrophilic compounds, including carcinogens, therapeutic drugs, environmental toxins and products of oxidative stress, by conjugation with glutathione. The genes encoding the mu class of enzymes are organized in a gene cluster on chromosome 1p13.3 and are known to be highly polymorphic. These genetic variations can change an individual’s susceptibility to carcinogens and toxins as well as affect the toxicity and efficacy of certain drugs. Diversification of these genes has occurred in regions encoding substrate-binding domains, as well as in tissue expression patterns, to accommodate an increasing number of foreign compounds. Multiple transcript variants, each encoding a distinct protein isoform, have been identified. |
| NA | ENSG00000213366 | GSTM2 | glutathione S-transferase mu 2 (muscle) | 2946 | Cytosolic and membrane-bound forms of glutathione S-transferase are encoded by two distinct supergene families. At present, eight distinct classes of the soluble cytoplasmic mammalian glutathione S-transferases have been identified: alpha, kappa, mu, omega, pi, sigma, theta and zeta. This gene encodes a glutathione S-transferase that belongs to the mu class. The mu class of enzymes functions in the detoxification of electrophilic compounds, including carcinogens, therapeutic drugs, environmental toxins and products of oxidative stress, by conjugation with glutathione. The genes encoding the mu class of enzymes are organized in a gene cluster on chromosome 1p13.3 and are known to be highly polymorphic. These genetic variations can change an individual’s susceptibility to carcinogens and toxins as well as affect the toxicity and efficacy of certain drugs. |
| NA | ENSG00000134184 | GSTM1 | glutathione S-transferase mu 1 | 2944 | Cytosolic and membrane-bound forms of glutathione S-transferase are encoded by two distinct supergene families. At present, eight distinct classes of the soluble cytoplasmic mammalian glutathione S-transferases have been identified: alpha, kappa, mu, omega, pi, sigma, theta and zeta. This gene encodes a glutathione S-transferase that belongs to the mu class. The mu class of enzymes functions in the detoxification of electrophilic compounds, including carcinogens, therapeutic drugs, environmental toxins and products of oxidative stress, by conjugation with glutathione. The genes encoding the mu class of enzymes are organized in a gene cluster on chromosome 1p13.3 and are known to be highly polymorphic. These genetic variations can change an individual’s susceptibility to carcinogens and toxins as well as affect the toxicity and efficacy of certain drugs. Null mutations of this class mu gene have been linked with an increase in a number of cancers, likely due to an increased susceptibility to environmental toxins and carcinogens. Multiple protein isoforms are encoded by transcript variants of this gene. |
| NA | ENSG00000134202 | GSTM3 | glutathione S-transferase mu 3 (brain) | 2947 | Cytosolic and membrane-bound forms of glutathione S-transferase are encoded by two distinct supergene families. At present, eight distinct classes of the soluble cytoplasmic mammalian glutathione S-transferases have been identified: alpha, kappa, mu, omega, pi, sigma, theta and zeta. This gene encodes a glutathione S-transferase that belongs to the mu class. The mu class of enzymes functions in the detoxification of electrophilic compounds, including carcinogens, therapeutic drugs, environmental toxins and products of oxidative stress, by conjugation with glutathione. The genes encoding the mu class of enzymes are organized in a gene cluster on chromosome 1p13.3 and are known to be highly polymorphic. These genetic variations can change an individual’s susceptibility to carcinogens and toxins as well as affect the toxicity and efficacy of certain drugs. Mutations of this class mu gene have been linked with a slight increase in a number of cancers, likely due to exposure with environmental toxins. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168710 | AHCYL1 | adenosylhomocysteinase like 1 | 10768 | The protein encoded by this gene interacts with inositol 1,4,5-trisphosphate receptor, type 1 and may be involved in the conversion of S-adenosyl-L-homocysteine to L-homocysteine and adenosine. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000143093 | STRIP1 | striatin interacting protein 1 | 85369 | This gene encodes a member of the striatin-interacting phosphatase and kinase complex, which is involved in localization of the Golgi body. The encoded protein participates in cytosketelal organization. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000116396 | KCNC4 | potassium voltage-gated channel subfamily C member 4 | 3749 | The Shaker gene family of Drosophila encodes components of voltage-gated potassium channels and is comprised of four subfamilies. Based on sequence similarity, this gene is similar to the Shaw subfamily. The protein encoded by this gene belongs to the delayed rectifier class of channel proteins and is an integral membrane protein that mediates the voltage-dependent potassium ion permeability of excitable membranes. It generates atypical voltage-dependent transient current that may be important for neuronal excitability. Multiple transcript variants have been found for this gene. |
| NA | ENSG00000162775 | RBM15 | RNA binding motif protein 15 | 64783 | Members of the SPEN (Split-end) family of proteins, including RBM15, have repressor function in several signaling pathways and may bind to RNA through interaction with spliceosome components (Hiriart et al., 2005 [PubMed 16129689]). |
| NA | ENSG00000134248 | LAMTOR5 | late endosomal/lysosomal adaptor, MAPK and MTOR activator 5 | 10542 | This gene encodes a protein that specifically complexes with the C-terminus of hepatitis B virus X protein (HBx). The function of this protein is to negatively regulate HBx activity and thus to alter the replication life cycle of the virus. |
| NA | ENSG00000121931 | LRIF1 | ligand dependent nuclear receptor interacting factor 1 | 55791 | NA |
| NA | ENSG00000134255 | CEPT1 | choline/ethanolamine phosphotransferase 1 | 10390 | Cholinephosphotransferase catalyses the final step in the synthesis of phosphatidylcholine by the transfer of phosphocholine from CDP-choline to diacylglycerol. The synthesis of phosphatidylethanolamine by ethanolaminephosphotransferase occurs using an analogous reaction. This gene codes for a choline/ethanolaminephosphotransferase. The protein can synthesize either choline- or ethanolamine- containing phospholipids. Two alternatively spliced transcripts encoding the same isoform have been identified. |
| NA | ENSG00000173947 | PIFO | primary cilia formation | 128344 | NA |
| NA | ENSG00000116455 | WDR77 | WD repeat domain 77 | 79084 | The protein encoded by this gene is an androgen receptor coactivator that forms a complex with protein arginine methyltransferase 5, which modifies specific arginines to dimethylarginines in several spliceosomal Sm proteins. The encoded protein may be involved in the early stages of prostate cancer, with most of the protein being nuclear-localized in benign cells but cytoplasmic in cancer cells. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000116459 | ATP5F1 | ATP synthase, H+ transporting, mitochondrial Fo complex subunit B1 | 515 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. The catalytic portion of mitochondrial ATP synthase consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and a single representative of the other 3. The proton channel seems to have nine subunits (a, b, c, d, e, f, g, F6 and 8). This gene encodes the b subunit of the proton channel. |
| NA | ENSG00000116473 | RAP1A | RAP1A, member of RAS oncogene family | 5906 | This gene encodes a member of the Ras family of small GTPases. The encoded protein undergoes a change in conformational state and activity, depending on whether it is bound to GTP or GDP. This protein is activated by several types of guanine nucleotide exchange factors (GEFs), and inactivated by two groups of GTPase-activating proteins (GAPs). The activation status of the encoded protein is therefore affected by the balance of intracellular levels of GEFs and GAPs. The encoded protein regulates signaling pathways that affect cell proliferation and adhesion, and may play a role in tumor malignancy. Pseudogenes of this gene have been defined on chromosomes 14 and 17. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197852 | FAM212B | family with sequence similarity 212 member B | 55924 | NA |
| NA | ENSG00000197852 | LOC101928718 | uncharacterized LOC101928718 | 101928718 | NA |
| NA | ENSG00000064703 | DDX20 | DEAD-box helicase 20 | 11218 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which has an ATPase activity and is a component of the survival of motor neurons (SMN) complex. This protein interacts directly with SMN, the spinal muscular atrophy gene product, and may play a catalytic role in the function of the SMN complex on RNPs. |
| NA | ENSG00000143079 | CTTNBP2NL | CTTNBP2 N-terminal like | 55917 | NA |
| NA | ENSG00000007341 | ST7L | suppression of tumorigenicity 7 like | 54879 | This gene was identified by its similarity to the ST7 tumor suppressor gene found in the chromosome 7q31 region. This gene is clustered in a tail-to-tail manner with the WNT2B gene in a chromosomal region known to be deleted and rearranged in a variety of cancers. Several transcript variants encoding many different isoforms have been described, but some have not been fully characterized. |
| NA | ENSG00000116489 | CAPZA1 | capping actin protein of muscle Z-line alpha subunit 1 | 829 | CAPZA1 is a member of the F-actin capping protein alpha subunit family. This gene encodes the alpha subunit of the barbed-end actin binding protein. The protein regulates growth of the actin filament by capping the barbed end of growing actin filaments. |
| NA | ENSG00000155363 | MOV10 | Mov10 RISC complex RNA helicase | 4343 | NA |
| NA | ENSG00000155366 | RHOC | ras homolog family member C | 389 | This gene encodes a member of the Rho family of small GTPases, which cycle between inactive GDP-bound and active GTP-bound states and function as molecular switches in signal transduction cascades. Rho proteins promote reorganization of the actin cytoskeleton and regulate cell shape, attachment, and motility. The protein encoded by this gene is prenylated at its C-terminus, and localizes to the cytoplasm and plasma membrane. It is thought to be important in cell locomotion. Overexpression of this gene is associated with tumor cell proliferation and metastasis. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000155367 | PPM1J | protein phosphatase, Mg2+/Mn2+ dependent 1J | 333926 | This gene encodes the serine/threonine protein phosphatase. The mouse homolog of this gene apparently belongs to the protein phosphatase 2C family of genes. The exact function of this gene is not yet known. |
| NA | ENSG00000155380 | SLC16A1 | solute carrier family 16 member 1 | 6566 | The protein encoded by this gene is a proton-linked monocarboxylate transporter that catalyzes the movement of many monocarboxylates, such as lactate and pyruvate, across the plasma membrane. Mutations in this gene are associated with erythrocyte lactate transporter defect. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000198799 | LRIG2 | leucine-rich repeats and immunoglobulin like domains 2 | 9860 | This gene encodes a transmembrane protein containing leucine-rich repeats and immunoglobulin-like domains. The encoded protein promotes epidermal growth factor signalling, resulting in increased proliferation. Its expression in the cytoplasm of glioma cells is correlated with poor survival. Mutations in this gene can cause urofacial syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000081026 | MAGI3 | membrane associated guanylate kinase, WW and PDZ domain containing 3 | 260425 | NA |
| NA | ENSG00000116793 | PHTF1 | putative homeodomain transcription factor 1 | 10745 | NA |
| NA | ENSG00000081019 | RSBN1 | round spermatid basic protein 1 | 54665 | NA |
| NA | ENSG00000134262 | AP4B1 | adaptor related protein complex 4 beta 1 subunit | 10717 | This gene encodes a subunit of a heterotetrameric adapter-like complex 4 that is involved in targeting proteins from the trans-Golgi network to the endosomal-lysosomal system. Mutations in this gene are associated with cerebral palsy spastic quadriplegic type 5 (CPSQ5) disorder. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000118655 | DCLRE1B | DNA cross-link repair 1B | 64858 | DNA interstrand cross-links prevent strand separation, thereby physically blocking transcription, replication, and segregation of DNA. DCLRE1B is one of several evolutionarily conserved genes involved in repair of interstrand cross-links (Dronkert et al., 2000 [PubMed 10848582]). |
| NA | ENSG00000197323 | TRIM33 | tripartite motif containing 33 | 51592 | The protein encoded by this gene is thought to be a transcriptional corepressor. However, molecules that interact with this protein have not yet been identified. The protein is a member of the tripartite motif family. This motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. Three alternatively spliced transcript variants for this gene have been described, however, the full-length nature of one variant has not been determined. |
| NA | ENSG00000175984 | DENND2C | DENN domain containing 2C | 163259 | NA |
| NA | ENSG00000213281 | NRAS | neuroblastoma RAS viral (v-ras) oncogene homolog | 4893 | This is an N-ras oncogene encoding a membrane protein that shuttles between the Golgi apparatus and the plasma membrane. This shuttling is regulated through palmitoylation and depalmitoylation by the ZDHHC9-GOLGA7 complex. The encoded protein, which has intrinsic GTPase activity, is activated by a guanine nucleotide-exchange factor and inactivated by a GTPase activating protein. Mutations in this gene have been associated with somatic rectal cancer, follicular thyroid cancer, autoimmune lymphoproliferative syndrome, Noonan syndrome, and juvenile myelomonocytic leukemia. |
| NA | ENSG00000009307 | CSDE1 | cold shock domain containing E1 | 7812 | NA |
| NA | ENSG00000052723 | SIKE1 | suppressor of IKBKE 1 | 80143 | SIKE interacts with IKK-epsilon (IKBKE; MIM 605048) and TBK1 (MIM 604834) and acts as a suppressor of TLR3 (MIM 603029) and virus-triggered interferon activation pathways (Huang et al., 2005 [PubMed 16281057]). |
| NA | ENSG00000134198 | TSPAN2 | tetraspanin 2 | 10100 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000173218 | VANGL1 | VANGL planar cell polarity protein 1 | 81839 | This gene encodes a member of the tretraspanin family. The encoded protein may be involved in mediating intestinal trefoil factor induced wound healing in the intestinal mucosa. Mutations in this gene are associated with neural tube defects. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000163393 | SLC22A15 | solute carrier family 22 member 15 | 55356 | Organic ion transporters, such as SLC22A15, transport various medically and physiologically important compounds, including pharmaceuticals, toxins, hormones, neurotransmitters, and cellular metabolites. These transporters are also referred to as amphiphilic solute facilitators (ASFs). |
| NA | ENSG00000163399 | ATP1A1 | ATPase Na+/K+ transporting subunit alpha 1 | 476 | The protein encoded by this gene belongs to the family of P-type cation transport ATPases, and to the subfamily of Na+/K+ -ATPases. Na+/K+ -ATPase is an integral membrane protein responsible for establishing and maintaining the electrochemical gradients of Na and K ions across the plasma membrane. These gradients are essential for osmoregulation, for sodium-coupled transport of a variety of organic and inorganic molecules, and for electrical excitability of nerve and muscle. This enzyme is composed of two subunits, a large catalytic subunit (alpha) and a smaller glycoprotein subunit (beta). The catalytic subunit of Na+/K+ -ATPase is encoded by multiple genes. This gene encodes an alpha 1 subunit. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000116815 | CD58 | CD58 molecule | 965 | This gene encodes a member of the immunoglobulin superfamily. The encoded protein is a ligand of the T lymphocyte CD2 protein, and functions in adhesion and activation of T lymphocytes. The protein is localized to the plasma membrane. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000134247 | PTGFRN | prostaglandin F2 receptor inhibitor | 5738 | NA |
| NA | ENSG00000134253 | TRIM45 | tripartite motif containing 45 | 80263 | This gene encodes a member of the tripartite motif family. The encoded protein may function as a transcriptional repressor of the mitogen-activated protein kinase pathway. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000196505 | GDAP2 | ganglioside induced differentiation associated protein 2 | 54834 | NA |
| NA | ENSG00000065183 | WDR3 | WD repeat domain 3 | 10885 | This gene encodes a nuclear protein containing 10 WD repeats. WD repeats are approximately 30- to 40-amino acid domains containing several conserved residues, which usually include a trp-asp at the C-terminal end. Proteins belonging to the WD repeat family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. |
| NA | ENSG00000116874 | WARS2 | tryptophanyl tRNA synthetase 2, mitochondrial | 10352 | Aminoacyl-tRNA synthetases catalyze the aminoacylation of tRNA by their cognate amino acid. Because of their central role in linking amino acids with nucleotide triplets contained in tRNAs, aminoacyl-tRNA synthetases are thought to be among the first proteins that appeared in evolution. Two forms of tryptophanyl-tRNA synthetase exist, a cytoplasmic form, named WARS, and a mitochondrial form, named WARS2. This gene encodes the mitochondrial tryptophanyl-tRNA synthetase. Two alternative transcripts encoding different isoforms have been described. |
| NA | ENSG00000143067 | ZNF697 | zinc finger protein 697 | 90874 | NA |
| NA | ENSG00000092621 | PHGDH | phosphoglycerate dehydrogenase | 26227 | This gene encodes the enzyme which is involved in the early steps of L-serine synthesis in animal cells. L-serine is required for D-serine and other amino acid synthesis. The enzyme requires NAD/NADH as a cofactor and forms homotetramers for activity. Mutations in this gene have been found in a family with congenital microcephaly, psychomotor retardation and other symptoms. Multiple alternatively spliced transcript variants have been found, however the full-length nature of most are not known. |
| NA | ENSG00000134250 | NOTCH2 | notch 2 | 4853 | This gene encodes a member of the Notch family. Members of this Type 1 transmembrane protein family share structural characteristics including an extracellular domain consisting of multiple epidermal growth factor-like (EGF) repeats, and an intracellular domain consisting of multiple, different domain types. Notch family members play a role in a variety of developmental processes by controlling cell fate decisions. The Notch signaling network is an evolutionarily conserved intercellular signaling pathway which regulates interactions between physically adjacent cells. In Drosophilia, notch interaction with its cell-bound ligands (delta, serrate) establishes an intercellular signaling pathway that plays a key role in development. Homologues of the notch-ligands have also been identified in human, but precise interactions between these ligands and the human notch homologues remain to be determined. This protein is cleaved in the trans-Golgi network, and presented on the cell surface as a heterodimer. This protein functions as a receptor for membrane bound ligands, and may play a role in vascular, renal and hepatic development. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000188610 | FAM72B | family with sequence similarity 72 member B | 653820 | NA |
| NA | ENSG00000236334 | PPIAL4G | peptidylprolyl isomerase A like 4G | 644591 | NA |
| NA | ENSG00000215784 | FAM72D | family with sequence similarity 72 member D | 728833 | NA |
| NA | ENSG00000162825 | NBPF20 | neuroblastoma breakpoint family member 20 | 100288142 | This gene is a member of the neuroblastoma breakpoint family (NBPF) which consists of dozens of recently duplicated genes primarily located in segmental duplications on human chromosome 1. This gene family has experienced its greatest expansion within the human lineage and has expanded, to a lesser extent, among primates in general. Members of this gene family are characterized by tandemly repeated copies of DUF1220 protein domains. Gene copy number variations in the human chromosomal region 1q21.1, where most DUF1220 domains are located, have been implicated in a number of developmental and neurogenetic diseases such as microcephaly, macrocephaly, autism, schizophrenia, mental retardation, congenital heart disease, neuroblastoma, and congenital kidney and urinary tract anomalies. Altered expression of some gene family members is associated with several types of cancer. This gene family contains numerous pseudogenes. |
| TRUE | ENSG00000255854 | NA | NA | NA | NA |
| TRUE | ENSG00000168614 | NA | NA | NA | NA |
| TRUE | ENSG00000268172 | NA | NA | NA | NA |
| NA | ENSG00000213240 | RP11-458D21.5 | NA | ENSG00000213240 | NA |
| TRUE | ENSG00000163386 | NA | NA | NA | NA |
| TRUE | ENSG00000117289 | NA | NA | NA | NA |
| NA | ENSG00000121851 | POLR3GL | polymerase (RNA) III subunit G like | 84265 | NA |
| TRUE | ENSG00000152022 | NA | NA | NA | NA |
| TRUE | ENSG00000131795 | NA | NA | NA | NA |
| NA | ENSG00000131779 | PEX11B | peroxisomal biogenesis factor 11 beta | 8799 | The protein encoded by this gene facilitates peroxisomal proliferation and interacts with PEX19. The encoded protein is found in the peroxisomal membrane. Several transcript variants, some protein-coding and some not protein-coding, have been found for this gene. |
| NA | ENSG00000198483 | ANKRD35 | ankyrin repeat domain 35 | 148741 | NA |
| NA | ENSG00000131788 | PIAS3 | protein inhibitor of activated STAT 3 | 10401 | This gene encodes a member of the PIAS [protein inhibitor of activated STAT (signal transducer and activator of transcription)] family of transcriptional modulators. The protein functions as a SUMO (small ubiquitin-like modifier)-E3 ligase which catalyzes the covalent attachment of a SUMO protein to specific target substrates. It directly binds to several transcription factors and either blocks or enhances their activity. Alternatively spliced transcript variants of this gene have been identified, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000186364 | NUDT17 | nudix hydrolase 17 | 200035 | NA |
| TRUE | ENSG00000121848 | NA | NA | NA | NA |
| NA | ENSG00000117262 | GPR89A | G protein-coupled receptor 89A | 653519 | GPR89A is a nearly identical copy of the GPR89B gene (MIM 612806). |
| TRUE | ENSG00000152042 | NA | NA | NA | NA |
| TRUE | ENSG00000186275 | NA | NA | NA | NA |
| NA | ENSG00000116128 | BCL9 | B-cell CLL/lymphoma 9 | 607 | BCL9 is associated with B-cell acute lymphoblastic leukemia. It may be a target of translocation in B-cell malignancies with abnormalities of 1q21. Its function is unknown. The overexpression of BCL9 may be of pathogenic significance in B-cell malignancies. |
| NA | ENSG00000162836 | ACP6 | acid phosphatase 6, lysophosphatidic | 51205 | NA |
| TRUE | ENSG00000143140 | NA | NA | NA | NA |
| NA | ENSG00000188092 | GPR89B | G protein-coupled receptor 89B | 51463 | NA |
| TRUE | ENSG00000203836 | NA | NA | NA | NA |
| TRUE | ENSG00000122497 | NA | NA | NA | NA |
| TRUE | ENSG00000203832 | NA | NA | NA | NA |
| TRUE | ENSG00000243452 | NA | NA | NA | NA |
| NA | ENSG00000203814 | HIST2H2BF | histone cluster 2, H2bf | 440689 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. This structure consists of approximately 146 bp of DNA wrapped around a nucleosome, an octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene encodes a replication-dependent histone that is a member of the histone H2B family and is found in a histone cluster on chromosome 1. |
| TRUE | ENSG00000183941 | NA | NA | NA | NA |
| NA | ENSG00000184678 | HIST2H2BE | histone cluster 2, H2be | 8349 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene encodes a replication-dependent histone that is a member of the histone H2B family, and generates two transcripts through the use of the conserved stem-loop termination motif, and the polyA addition motif. The protein has antibacterial and antifungal antimicrobial activity. |
| NA | ENSG00000184260 | HIST2H2AC | histone cluster 2, H2ac | 8338 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H2A family. |
| NA | ENSG00000178096 | BOLA1 | bolA family member 1 | 51027 | NA |
| NA | ENSG00000159164 | SV2A | synaptic vesicle glycoprotein 2A | 9900 | NA |
| NA | ENSG00000143368 | SF3B4 | splicing factor 3b subunit 4 | 10262 | This gene encodes one of four subunits of the splicing factor 3B. The protein encoded by this gene cross-links to a region in the pre-mRNA immediately upstream of the branchpoint sequence in pre-mRNA in the prespliceosomal complex A. It also may be involved in the assembly of the B, C and E spliceosomal complexes. In addition to RNA-binding activity, this protein interacts directly and highly specifically with subunit 2 of the splicing factor 3B. This protein contains two N-terminal RNA-recognition motifs (RRMs), consistent with the observation that it binds directly to pre-mRNA. |
| TRUE | ENSG00000163113 | NA | NA | NA | NA |
| NA | ENSG00000136631 | VPS45 | vacuolar protein sorting 45 homolog (S. cerevisiae) | 11311 | Vesicle mediated protein sorting plays an important role in segregation of intracellular molecules into distinct organelles. Genetic studies in yeast have identified more than 40 vacuolar protein sorting (VPS) genes involved in vesicle transport to vacuoles. This gene is a member of the Sec1 domain family, and shows a high degree of sequence similarity to mouse, rat and yeast Vps45. The exact function of this gene is not known, but its high expression in peripheral blood mononuclear cells suggests a role in trafficking proteins, including inflammatory mediators. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000023902 | PLEKHO1 | pleckstrin homology domain containing O1 | 51177 | NA |
| NA | ENSG00000117362 | APH1A | aph-1 homolog A, gamma secretase subunit | 51107 | This gene encodes a component of the gamma secretase complex that cleaves integral membrane proteins such as Notch receptors and beta-amyloid precursor protein. The gamma secretase complex contains this gene product, or the paralogous anterior pharynx defective 1 homolog B (APH1B), along with the presenilin, nicastrin, and presenilin enhancer-2 proteins. The precise function of this seven-transmembrane-domain protein is unknown though it is suspected of facilitating the association of nicastrin and presenilin in the gamma secretase complex as well as interacting with substrates of the gamma secretase complex prior to their proteolytic processing. Polymorphisms in a promoter region of this gene have been associated with an increased risk for developing sporadic Alzheimer’s disease. Alternative splicing results in multiple protein-coding and non-protein-coding transcript variants. |
| NA | ENSG00000159208 | CIART | circadian associated repressor of transcription | 148523 | NA |
| TRUE | ENSG00000187145 | NA | NA | NA | NA |
| NA | ENSG00000117360 | PRPF3 | pre-mRNA processing factor 3 | 9129 | The removal of introns from nuclear pre-mRNAs occurs on complexes called spliceosomes, which are made up of 4 small nuclear ribonucleoprotein (snRNP) particles and an undefined number of transiently associated splicing factors. This gene product is one of several proteins that associate with U4 and U6 snRNPs. Mutations in this gene are associated with retinitis pigmentosa-18. |
| NA | ENSG00000143374 | TARS2 | threonyl-tRNA synthetase 2, mitochondrial (putative) | 80222 | This gene encodes a member of the class-II aminoacyl-tRNA synthetase family. The encoded protein is a mitochondrial aminoacyl-tRNA synthetase. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 4. |
| NA | ENSG00000143384 | MCL1 | myeloid cell leukemia 1 | 4170 | This gene encodes an anti-apoptotic protein, which is a member of the Bcl-2 family. Alternative splicing results in multiple transcript variants. The longest gene product (isoform 1) enhances cell survival by inhibiting apoptosis while the alternatively spliced shorter gene products (isoform 2 and isoform 3) promote apoptosis and are death-inducing. |
| NA | ENSG00000143420 | ENSA | endosulfine alpha | 2029 | The protein encoded by this gene belongs to a highly conserved cAMP-regulated phosphoprotein (ARPP) family. This protein was identified as an endogenous ligand for the sulfonylurea receptor, ABCC8/SUR1. ABCC8 is the regulatory subunit of the ATP-sensitive potassium (KATP) channel, which is located on the plasma membrane of pancreatic beta cells and plays a key role in the control of insulin release from pancreatic beta cells. This protein is thought to be an endogenous regulator of KATP channels. In vitro studies have demonstrated that this protein modulates insulin secretion through the interaction with KATP channel, and this gene has been proposed as a candidate gene for type 2 diabetes. At least eight alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000143457 | GOLPH3L | golgi phosphoprotein 3 like | 55204 | The Golgi complex plays a key role in the sorting and modification of proteins exported from the endoplasmic reticulum. The protein encoded by this gene is localized at the Golgi stack and may have a regulatory role in Golgi trafficking. |
| NA | ENSG00000143387 | CTSK | cathepsin K | 1513 | The protein encoded by this gene is a lysosomal cysteine proteinase involved in bone remodeling and resorption. This protein, which is a member of the peptidase C1 protein family, is predominantly expressed in osteoclasts. However, the encoded protein is also expressed in a significant fraction of human breast cancers, where it could contribute to tumor invasiveness. Mutations in this gene are the cause of pycnodysostosis, an autosomal recessive disease characterized by osteosclerosis and short stature. |
| NA | ENSG00000143437 | ARNT | aryl hydrocarbon receptor nuclear translocator | 405 | This gene encodes a protein containing a basic helix-loop-helix domain and two characteristic PAS domains along with a PAC domain. The encoded protein binds to ligand-bound aryl hydrocarbon receptor and aids in the movement of this complex to the nucleus, where it promotes the expression of genes involved in xenobiotic metabolism. This protein is also a co-factor for transcriptional regulation by hypoxia-inducible factor 1. Chromosomal translocation of this locus with the ETV6 (ets variant 6) gene on chromosome 12 have been described in leukemias. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000143379 | SETDB1 | SET domain bifurcated 1 | 9869 | This gene encodes a histone methyltransferase which regulates histone methylation, gene silencing, and transcriptional repression. This gene has been identified as a target for treatment in Huntington Disease, given that gene silencing and transcription dysfunction likely play a role in the disease pathogenesis. Alternatively spliced transcript variants of this gene have been described. |
| NA | ENSG00000143418 | CERS2 | ceramide synthase 2 | 29956 | This gene encodes a protein that has sequence similarity to yeast longevity assurance gene 1. Mutation or overexpression of the related gene in yeast has been shown to alter yeast lifespan. The human protein may play a role in the regulation of cell growth. Alternatively spliced transcript variants encoding the same protein have been described. |
| NA | ENSG00000143412 | ANXA9 | annexin A9 | 8416 | The annexins are a family of calcium-dependent phospholipid-binding proteins. Members of the annexin family contain 4 internal repeat domains, each of which includes a type II calcium-binding site. The calcium-binding sites are required for annexins to aggregate and cooperatively bind anionic phospholipids and extracellular matrix proteins. This gene encodes a divergent member of the annexin protein family in which all four homologous type II calcium-binding sites in the conserved tetrad core contain amino acid substitutions that ablate their function. However, structural analysis suggests that the conserved putative ion channel formed by the tetrad core is intact. |
| NA | ENSG00000143409 | FAM63A | family with sequence similarity 63 member A | 55793 | NA |
| NA | ENSG00000163141 | BNIPL | BCL2/adenovirus E1B 19kD interacting protein like | 149428 | The protein encoded by this gene interacts with several other proteins, such as BCL2, ARHGAP1, MIF and GFER. It may function as a bridge molecule between BCL2 and ARHGAP1/CDC42 in promoting cell death. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000143443 | C1orf56 | chromosome 1 open reading frame 56 | 54964 | NA |
| NA | ENSG00000143458 | GABPB2 | GA binding protein transcription factor beta subunit 2 | 126626 | NA |
| NA | ENSG00000143434 | SEMA6C | semaphorin 6C | 10500 | This gene encodes a member of the semaphorin family. Semaphorins represent important molecular signals controlling multiple aspects of the cellular response that follows CNS injury, and thus may play an important role in neural regeneration. |
| NA | ENSG00000163155 | LYSMD1 | LysM domain containing 1 | 388695 | NA |
| NA | ENSG00000159352 | PSMD4 | proteasome 26S subunit, non-ATPase 4 | 5710 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes one of the non-ATPase subunits of the 19S regulator lid. Pseudogenes have been identified on chromosomes 10 and 21. |
| NA | ENSG00000232671 | RP11-126K1.2 | NA | ENSG00000232671 | NA |
| NA | ENSG00000143373 | ZNF687 | zinc finger protein 687 | 57592 | NA |
| NA | ENSG00000143393 | PI4KB | phosphatidylinositol 4-kinase beta | 5298 | NA |
| NA | ENSG00000143390 | RFX5 | regulatory factor X5 | 5993 | A lack of MHC-II expression results in a severe immunodeficiency syndrome called MHC-II deficiency, or the bare lymphocyte syndrome (BLS; MIM 209920). At least 4 complementation groups have been identified in B-cell lines established from patients with BLS. The molecular defects in complementation groups B, C, and D all lead to a deficiency in RFX, a nuclear protein complex that binds to the X box of MHC-II promoters. The lack of RFX binding activity in complementation group C results from mutations in the RFX5 gene encoding the 75-kD subunit of RFX (Steimle et al., 1995). RFX5 is the fifth member of the growing family of DNA-binding proteins sharing a novel and highly characteristic DNA-binding domain called the RFX motif. Multiple alternatively spliced transcript variants have been found but the full-length natures of only two have been determined. |
| NA | ENSG00000159377 | PSMB4 | proteasome subunit beta 4 | 5692 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the proteasome B-type family, also known as the T1B family, that is a 20S core beta subunit. |
| NA | ENSG00000143375 | CGN | cingulin | 57530 | NA |
| NA | ENSG00000143367 | TUFT1 | tuftelin 1 | 7286 | Tuftelin is an acidic protein that is thought to play a role in dental enamel mineralization and is implicated in caries susceptibility. It is also thought to be involved with adaptation to hypoxia, mesenchymal stem cell function, and neurotrophin nerve growth factor mediated neuronal differentiation. |
| NA | ENSG00000143376 | SNX27 | sorting nexin family member 27 | 81609 | This gene encodes a member of the sorting nexin family, a diverse group of cytoplasmic and membrane-associated proteins involved in endocytosis of plasma membrane receptors and protein trafficking through these compartments. All members of this protein family contain a phosphoinositide binding domain (PX domain). A highly similar protein in mouse is responsible for the specific recruitment of an isoform of serotonin 5-hydroxytryptamine 4 receptor into early endosomes, suggesting the analogous role for the human protein. |
| NA | ENSG00000182134 | TDRKH | tudor and KH domain containing | 11022 | NA |
| NA | ENSG00000159445 | THEM4 | thioesterase superfamily member 4 | 117145 | Protein kinase B (PKB) is a major downstream target of receptor tyrosine kinases that signal via phosphatidylinositol 3-kinase. Upon cell stimulation, PKB is translocated to the plasma membrane, where it is phosphorylated in the C-terminal regulatory domain. The protein encoded by this gene negatively regulates PKB activity by inhibiting phosphorylation. Transcription of this gene is commonly downregulated in glioblastomas. |
| NA | ENSG00000163191 | S100A11 | S100 calcium binding protein A11 | 6282 | The protein encoded by this gene is a member of the S100 family of proteins containing 2 EF-hand calcium-binding motifs. S100 proteins are localized in the cytoplasm and/or nucleus of a wide range of cells, and involved in the regulation of a number of cellular processes such as cell cycle progression and differentiation. S100 genes include at least 13 members which are located as a cluster on chromosome 1q21. This protein may function in motility, invasion, and tubulin polymerization. Chromosomal rearrangements and altered expression of this gene have been implicated in tumor metastasis. |
| NA | ENSG00000197956 | S100A6 | S100 calcium binding protein A6 | 6277 | The protein encoded by this gene is a member of the S100 family of proteins containing 2 EF-hand calcium-binding motifs. S100 proteins are localized in the cytoplasm and/or nucleus of a wide range of cells, and involved in the regulation of a number of cellular processes such as cell cycle progression and differentiation. S100 genes include at least 13 members which are located as a cluster on chromosome 1q21. This protein may function in stimulation of Ca2+-dependent insulin release, stimulation of prolactin secretion, and exocytosis. Chromosomal rearrangements and altered expression of this gene have been implicated in melanoma. |
| NA | ENSG00000196154 | S100A4 | S100 calcium binding protein A4 | 6275 | The protein encoded by this gene is a member of the S100 family of proteins containing 2 EF-hand calcium-binding motifs. S100 proteins are localized in the cytoplasm and/or nucleus of a wide range of cells, and involved in the regulation of a number of cellular processes such as cell cycle progression and differentiation. S100 genes include at least 13 members which are located as a cluster on chromosome 1q21. This protein may function in motility, invasion, and tubulin polymerization. Chromosomal rearrangements and altered expression of this gene have been implicated in tumor metastasis. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000189334 | S100A14 | S100 calcium binding protein A14 | 57402 | This gene encodes a member of the S100 protein family which contains an EF-hand motif and binds calcium. The gene is located in a cluster of S100 genes on chromosome 1. Levels of the encoded protein have been found to be lower in cancerous tissue and associated with metastasis suggesting a tumor suppressor function (PMID: 19956863, 19351828). |
| NA | ENSG00000143621 | ILF2 | interleukin enhancer binding factor 2 | 3608 | The protein encoded by this gene is a transcription factor required for T-cell expression of the interleukin 2 gene. It also binds RNA and is an essential component for encapsidation and protein priming of hepatitis B viral polymerase. The encoded 45 kDa protein (NF45, ILF2) forms a complex with the 90 kDa interleukin enhancer-binding factor 3 (NF90, ILF3), and this complex has been shown to affect the redistribution of nuclear mRNA to the cytoplasm, to repair DNA breaks by nonhomologous end joining, and to negatively regulate the microRNA processing pathway. Knockdown of NF45 or NF90 protein retards cell growth, possibly by inhibition of mRNA stabilization. Alternative splicing results in multiple transcript variants. Related pseudogenes have been found on chromosomes 3 and 14. |
| NA | ENSG00000169418 | NPR1 | natriuretic peptide receptor 1 | 4881 | Guanylyl cyclases, catalyzing the production of cGMP from GTP, are classified as soluble and membrane forms (Garbers and Lowe, 1994 [PubMed 7982997]). The membrane guanylyl cyclases, often termed guanylyl cyclases A through F, form a family of cell-surface receptors with a similar topographic structure: an extracellular ligand-binding domain, a single membrane-spanning domain, and an intracellular region that contains a protein kinase-like domain and a cyclase catalytic domain. GC-A and GC-B function as receptors for natriuretic peptides; they are also referred to as atrial natriuretic peptide receptor A (NPR1) and type B (NPR2; MIM 108961). Also see NPR3 (MIM 108962), which encodes a protein with only the ligand-binding transmembrane and 37-amino acid cytoplasmic domains. NPR1 is a membrane-bound guanylate cyclase that serves as the receptor for both atrial and brain natriuretic peptides (ANP (MIM 108780) and BNP (MIM 600295), respectively). |
| NA | ENSG00000143554 | SLC27A3 | solute carrier family 27 member 3 | 11000 | NA |
| NA | ENSG00000198837 | DENND4B | DENN domain containing 4B | 9909 | NA |
| NA | ENSG00000160741 | CRTC2 | CREB regulated transcription coactivator 2 | 200186 | This gene encodes a member of the transducers of regulated cAMP response element-binding protein activity family of transcription coactivators. These proteins promote the transcription of genes targeted by the cAMP response element-binding protein, and therefore play an important role in many cellular processes. Under basal conditions the encoded protein is phosphorylated by AMP-activated protein kinase or the salt-inducible kinases and is sequestered in the cytoplasm. Upon activation by elevated cAMP or calcium, the encoded protein translocates to the nucleus and increases target gene expression. Single nucleotide polymorphisms in this gene may increase the risk of type 2 diabetes. A pseudogene of this gene is located on the long arm of chromosome 5. |
| NA | ENSG00000143570 | SLC39A1 | solute carrier family 39 member 1 | 27173 | This gene encodes a member of the zinc-iron permease family. The encoded protein is localized to the cell membrane and acts as a zinc uptake transporter. This gene has been linked to prostate cancer, breast cancer, and Alzheimer’s disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000143578 | CREB3L4 | cAMP responsive element binding protein 3-like 4 | 148327 | This gene encodes a CREB (cAMP responsive element binding) protein with a transmembrane domain which localizes it to the ER membrane. The encoded protein is a transcriptional activator which contains a dimerization domain, and this protein may function in a number of processing pathways including protein processing. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000143543 | JTB | jumping translocation breakpoint | 10899 | NA |
| NA | ENSG00000143545 | RAB13 | RAB13, member RAS oncogene family | 5872 | This gene is a member of the Rab family of small G proteins and plays a role in regulating membrane trafficking between trans-Golgi network (TGN) and recycling endosomes (RE). The encoded protein is involved in the assembly of tight junctions, which are components of the apical junctional complex (AJC) of epithelial cells. The AJC plays a role in forming a barrier between luminal contents and the underlying tissue. Additional functions associated with the protein include endocytic recycling of occludin, regulation of epithelial cell scattering, neuronal regeneration and regulation of neurite outgrowth. Alternately spliced transcript variants have been observed for this gene. A pseudogene associated with this gene is located on chromosome 12. |
| NA | ENSG00000177954 | RPS27 | ribosomal protein S27 | 6232 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S27E family of ribosomal proteins. It contains a C4-type zinc finger domain that can bind to zinc. The encoded protein has been shown to be able to bind to nucleic acid. It is located in the cytoplasm as a ribosomal component, but it has also been detected in the nucleus. Studies in rat indicate that ribosomal protein S27 is located near ribosomal protein S18 in the 40S subunit and is covalently linked to translation initiation factor eIF3. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000143549 | TPM3 | tropomyosin 3 | 7170 | This gene encodes a member of the tropomyosin family of actin-binding proteins. Tropomyosins are dimers of coiled-coil proteins that provide stability to actin filaments and regulate access of other actin-binding proteins. Mutations in this gene result in autosomal dominant nemaline myopathy and other muscle disorders. This locus is involved in translocations with other loci, including anaplastic lymphoma receptor tyrosine kinase (ALK) and neurotrophic tyrosine kinase receptor type 1 (NTRK1), which result in the formation of fusion proteins that act as oncogenes. There are numerous pseudogenes for this gene on different chromosomes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000143569 | UBAP2L | ubiquitin associated protein 2 like | 9898 | NA |
| NA | ENSG00000143515 | ATP8B2 | ATPase phospholipid transporting 8B2 | 57198 | The protein encoded by this gene belongs to the family of P-type cation transport ATPases, and to the subfamily of aminophospholipid-transporting ATPases. The aminophospholipid translocases transport phosphatidylserine and phosphatidylethanolamine from one side of a bilayer to another. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000160712 | IL6R | interleukin 6 receptor | 3570 | This gene encodes a subunit of the interleukin 6 (IL6) receptor complex. Interleukin 6 is a potent pleiotropic cytokine that regulates cell growth and differentiation and plays an important role in the immune response. The IL6 receptor is a protein complex consisting of this protein and interleukin 6 signal transducer (IL6ST/GP130/IL6-beta), a receptor subunit also shared by many other cytokines. Dysregulated production of IL6 and this receptor are implicated in the pathogenesis of many diseases, such as multiple myeloma, autoimmune diseases and prostate cancer. Alternatively spliced transcript variants encoding distinct isoforms have been reported. A pseudogene of this gene is found on chromosome 9. |
| NA | ENSG00000160714 | UBE2Q1 | ubiquitin conjugating enzyme E2 Q1 | 55585 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes (E1s), ubiquitin-conjugating enzymes (E2s), and ubiquitin-protein ligases (E3s). This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. The encoded protein is 98% identical to the mouse counterpart. |
| NA | ENSG00000160716 | CHRNB2 | cholinergic receptor nicotinic beta 2 subunit | 1141 | Neuronal acetylcholine receptors are homo- or heteropentameric complexes composed of homologous alpha and beta subunits. They belong to a superfamily of ligand-gated ion channels which allow the flow of sodium and potassium across the plasma membrane in response to ligands such as acetylcholine and nicotine. This gene encodes one of several beta subunits. Mutations in this gene are associated with autosomal dominant nocturnal frontal lobe epilepsy. |
| NA | ENSG00000143603 | KCNN3 | potassium calcium-activated channel subfamily N member 3 | 3782 | Action potentials in vertebrate neurons are followed by an afterhyperpolarization (AHP) that may persist for several seconds and may have profound consequences for the firing pattern of the neuron. Each component of the AHP is kinetically distinct and is mediated by different calcium-activated potassium channels. This gene belongs to the KCNN family of potassium channels. It encodes an integral membrane protein that forms a voltage-independent calcium-activated channel, which is thought to regulate neuronal excitability by contributing to the slow component of synaptic AHP. This gene contains two CAG repeat regions in the coding sequence. It was thought that expansion of one or both of these repeats could lead to an increased susceptibility to schizophrenia or bipolar disorder, but studies indicate that this is probably not the case. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163344 | PMVK | phosphomevalonate kinase | 10654 | This gene encodes a peroxisomal enzyme that catalyzes the conversion of mevalonate 5-phosphate into mevalonate 5-diphosphate, the fifth reaction of the cholesterol biosynthetic pathway. Studies in rat show that the message level and the enzyme activity of this protein is regulated by sterol, and that this regulation is coordinated with 3-hydroxy-3-methylglutaryl coenzyme A reductase, the rate-limiting enzyme of cholesterol biosynthesis. |
| NA | ENSG00000163346 | PBXIP1 | pre-B-cell leukemia homeobox interacting protein 1 | 57326 | The protein encoded by this gene interacts with the PBX1 homeodomain protein, inhibiting its transcriptional activation potential by preventing its binding to DNA. The encoded protein, which is primarily cytosolic but can shuttle to the nucleus, also can interact with estrogen receptors alpha and beta and promote the proliferation of breast cancer, brain tumors, and lung cancer. Several transcript variants encoding different isoforms have been found for this gene. More variants exist, but their full-length natures have yet to be determined. |
| NA | ENSG00000163348 | PYGO2 | pygopus family PHD finger 2 | 90780 | NA |
| NA | ENSG00000160691 | SHC1 | SHC (Src homology 2 domain containing) transforming protein 1 | 6464 | This gene encodes three main isoforms that differ in activities and subcellular location. While all three are adapter proteins in signal transduction pathways, the longest (p66Shc) may be involved in regulating life span and the effects of reactive oxygen species. The other two isoforms, p52Shc and p46Shc, link activated receptor tyrosine kinases to the Ras pathway by recruitment of the GRB2/SOS complex. p66Shc is not involved in Ras activation. Unlike the other two isoforms, p46Shc is targeted to the mitochondrial matrix. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000160688 | FLAD1 | flavin adenine dinucleotide synthetase 1 | 80308 | This gene encodes the enzyme that catalyzes adenylation of flavin mononucleotide (FMN) to form flavin adenine dinucleotide (FAD) coenzyme. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000160685 | ZBTB7B | zinc finger and BTB domain containing 7B | 51043 | This gene encodes a zinc finger-containing transcription factor that acts as a key regulator of lineage commitment of immature T-cell precursors. It is necessary and sufficient for commitment of CD4 lineage, while its absence causes CD8 commitment. It also functions as a transcriptional repressor of type I collagen genes. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000143537 | ADAM15 | ADAM metallopeptidase domain 15 | 8751 | The protein encoded by this gene is a member of the ADAM (a disintegrin and metalloproteinase) protein family. ADAM family members are type I transmembrane glycoproteins known to be involved in cell adhesion and proteolytic ectodomain processing of cytokines and adhesion molecules. This protein contains multiple functional domains including a zinc-binding metalloprotease domain, a disintegrin-like domain, as well as a EGF-like domain. Through its disintegrin-like domain, this protein specifically interacts with the integrin beta chain, beta 3. It also interacts with Src family protein-tyrosine kinases in a phosphorylation-dependent manner, suggesting that this protein may function in cell-cell adhesion as well as in cellular signaling. Multiple alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000243364 | EFNA4 | ephrin-A4 | 1945 | This gene encodes a member of the ephrin (EPH) family. The ephrins and EPH-related receptors comprise the largest subfamily of receptor protein-tyrosine kinases and have been implicated in mediating developmental events, especially in the nervous system and in erythropoiesis. Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. This gene encodes an EFNA class ephrin. Three transcript variants that encode distinct proteins have been identified. |
| NA | ENSG00000143590 | EFNA3 | ephrin-A3 | 1944 | This gene encodes a member of the ephrin (EPH) family. The ephrins and EPH-related receptors comprise the largest subfamily of receptor protein-tyrosine kinases and have been implicated in mediating developmental events, especially in the nervous system and in erythropoiesis. Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. This gene encodes an EFNA class ephrin. |
| NA | ENSG00000169242 | EFNA1 | ephrin-A1 | 1942 | This gene encodes a member of the ephrin (EPH) family. The ephrins and EPH-related receptors comprise the largest subfamily of receptor protein-tyrosine kinases and have been implicated in mediating developmental events, especially in the nervous system and in erythropoiesis. Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. This gene encodes an EFNA class ephrin which binds to the EPHA2, EPHA4, EPHA5, EPHA6, and EPHA7 receptors. Two transcript variants that encode different isoforms were identified through sequence analysis. |
| NA | ENSG00000169241 | SLC50A1 | solute carrier family 50 member 1 | 55974 | NA |
| NA | ENSG00000179085 | DPM3 | dolichyl-phosphate mannosyltransferase subunit 3 | 54344 | Dolichol-phosphate mannose (Dol-P-Man) serves as a donor of mannosyl residues on the lumenal side of the endoplasmic reticulum (ER). Lack of Dol-P-Man results in defective surface expression of GPI-anchored proteins. Dol-P-Man is synthesized from GDP-mannose and dolichol-phosphate on the cytosolic side of the ER by the enzyme dolichyl-phosphate mannosyltransferase. The protein encoded by this gene is a subunit of dolichyl-phosphate mannosyltransferase and acts as a stabilizer subunit of the dolichyl-phosphate mannosyltransferase complex. |
| NA | ENSG00000163462 | TRIM46 | tripartite motif containing 46 | 80128 | NA |
| NA | ENSG00000185499 | MUC1 | mucin 1, cell surface associated | 4582 | This gene encodes a membrane-bound protein that is a member of the mucin family. Mucins are O-glycosylated proteins that play an essential role in forming protective mucous barriers on epithelial surfaces. These proteins also play a role in intracellular signaling. This protein is expressed on the apical surface of epithelial cells that line the mucosal surfaces of many different tissues including lung, breast stomach and pancreas. This protein is proteolytically cleaved into alpha and beta subunits that form a heterodimeric complex. The N-terminal alpha subunit functions in cell-adhesion and the C-terminal beta subunit is involved in cell signaling. Overexpression, aberrant intracellular localization, and changes in glycosylation of this protein have been associated with carcinomas. This gene is known to contain a highly polymorphic variable number tandem repeats (VNTR) domain. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000169231 | THBS3 | thrombospondin 3 | 7059 | The protein encoded by this gene belongs to the thrombospondin family. Thrombospondin family members are adhesive glycoproteins that mediate cell-to-cell and cell-to-matrix interactions. This protein forms a pentameric molecule linked by a single disulfide bond. This gene shares a common promoter with metaxin 1. Alternate splicing results in coding and non-coding transcript variants. |
| NA | ENSG00000177628 | GBA | glucosylceramidase beta | 2629 | This gene encodes a lysosomal membrane protein that cleaves the beta-glucosidic linkage of glycosylceramide, an intermediate in glycolipid metabolism. Mutations in this gene cause Gaucher disease, a lysosomal storage disease characterized by an accumulation of glucocerebrosides. A related pseudogene is approximately 12 kb downstream of this gene on chromosome 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160767 | FAM189B | family with sequence similarity 189 member B | 10712 | This gene is located near the gene for the lysosomal enzyme glucosylceramidase; a deficiency in this enzyme is associated with Gaucher disease. The encoded protein has been identified as a potential binding partner of a WW domain-containing protein which is involved in apoptosis and tumor suppression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000143630 | HCN3 | hyperpolarization activated cyclic nucleotide gated potassium channel 3 | 57657 | This gene encodes a multi-pass membrane protein that functions as a voltage gated cation channel. The encoded protein is a member of a family of closely related cyclic adenosine monophosphate-binding channel proteins. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160752 | FDPS | farnesyl diphosphate synthase | 2224 | This gene encodes an enzyme that catalyzes the production of geranyl pyrophosphate and farnesyl pyrophosphate from isopentenyl pyrophosphate and dimethylallyl pyrophosphate. The resulting product, farnesyl pyrophosphate, is a key intermediate in cholesterol and sterol biosynthesis, a substrate for protein farnesylation and geranylgeranylation, and a ligand or agonist for certain hormone receptors and growth receptors. Drugs that inhibit this enzyme prevent the post-translational modifications of small GTPases and have been used to treat diseases related to bone resorption. Multiple pseudogenes have been found on chromosomes 1, 7, 14, 15, 21 and X. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000160753 | RUSC1 | RUN and SH3 domain containing 1 | 23623 | NA |
| NA | ENSG00000125459 | MSTO1 | misato 1, mitochondrial distribution and morphology regulator | 55154 | NA |
| NA | ENSG00000163374 | YY1AP1 | YY1 associated protein 1 | 55249 | The encoded gene product presumably interacts with YY1 protein; however, its exact function is not known. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000116580 | GON4L | gon-4 like | 54856 | NA |
| NA | ENSG00000132718 | SYT11 | synaptotagmin 11 | 23208 | This gene is a member of the synaptotagmin gene family and encodes a protein similar to other family members that are known calcium sensors and mediate calcium-dependent regulation of membrane trafficking in synaptic transmission. The encoded protein is also a substrate for ubiquitin-E3-ligase parkin. The gene has previously been referred to as synaptotagmin XII but has been renamed synaptotagmin XI to be consistent with mouse and rat official nomenclature. |
| NA | ENSG00000143622 | RIT1 | Ras-like without CAAX 1 | 6016 | This gene encodes a member of a subfamily of Ras-related GTPases. The encoded protein is involved in regulating p38 MAPK-dependent signaling cascades related to cellular stress. This protein also cooperates with nerve growth factor to promote neuronal development and regeneration. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000116584 | ARHGEF2 | Rho/Rac guanine nucleotide exchange factor 2 | 9181 | Rho GTPases play a fundamental role in numerous cellular processes that are initiated by extracellular stimuli that work through G protein coupled receptors. The encoded protein may form complex with G proteins and stimulate rho-dependent signals. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000163479 | SSR2 | signal sequence receptor, beta (translocon-associated protein beta) | 6746 | The signal sequence receptor (SSR) is a glycosylated endoplasmic reticulum (ER) membrane receptor associated with protein translocation across the ER membrane. The SSR consists of 2 subunits, a 34-kD glycoprotein (alpha-SSR or SSR1) and a 22-kD glycoprotein (beta-SSR or SSR2). The human beta-signal sequence receptor gene (SSR2) maps to chromosome bands 1q21-q23. |
| NA | ENSG00000160803 | UBQLN4 | ubiquilin 4 | 56893 | NA |
| NA | ENSG00000132698 | RAB25 | RAB25, member RAS oncogene family | 57111 | The protein encoded by this gene is a member of the RAS superfamily of small GTPases. The encoded protein is involved in membrane trafficking and cell survival. This gene has been found to be a tumor suppressor and an oncogene, depending on the context. Two variants, one protein-coding and the other not, have been found for this gene. |
| NA | ENSG00000254726 | MEX3A | mex-3 RNA binding family member A | 92312 | NA |
| NA | ENSG00000160789 | LMNA | lamin A/C | 4000 | The nuclear lamina consists of a two-dimensional matrix of proteins located next to the inner nuclear membrane. The lamin family of proteins make up the matrix and are highly conserved in evolution. During mitosis, the lamina matrix is reversibly disassembled as the lamin proteins are phosphorylated. Lamin proteins are thought to be involved in nuclear stability, chromatin structure and gene expression. Vertebrate lamins consist of two types, A and B. Alternative splicing results in multiple transcript variants. Mutations in this gene lead to several diseases: Emery-Dreifuss muscular dystrophy, familial partial lipodystrophy, limb girdle muscular dystrophy, dilated cardiomyopathy, Charcot-Marie-Tooth disease, and Hutchinson-Gilford progeria syndrome. |
| NA | ENSG00000196189 | SEMA4A | semaphorin 4A | 64218 | This gene encodes a member of the semaphorin family of soluble and transmembrane proteins. Semaphorins are involved in numerous functions, including axon guidance, morphogenesis, carcinogenesis, and immunomodulation. The encoded protein is a single-pass type I membrane protein containing an immunoglobulin-like C2-type domain, a PSI domain and a sema domain. It inhibits axonal extension by providing local signals to specify territories inaccessible for growing axons. It is an activator of T-cell-mediated immunity and suppresses vascular endothelial growth factor (VEGF)-mediated endothelial cell migration and proliferation in vitro and angiogenesis in vivo. Mutations in this gene are associated with retinal degenerative diseases including retinitis pigmentosa type 35 (RP35) and cone-rod dystrophy type 10 (CORD10). Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000160785 | SLC25A44 | solute carrier family 25 member 44 | 9673 | SLC25A44 belongs to the SLC25 family of mitochondrial carrier proteins (Haitina et al., 2006 [PubMed 16949250]). |
| NA | ENSG00000160783 | PMF1 | polyamine-modulated factor 1 | 11243 | NA |
| NA | ENSG00000160781 | PAQR6 | progestin and adipoQ receptor family member VI | 79957 | NA |
| NA | ENSG00000198952 | SMG5 | SMG5 nonsense mediated mRNA decay factor | 23381 | SMG5 is involved in nonsense-mediated mRNA decay (Ohnishi et al., 2003 [PubMed 14636577]). |
| NA | ENSG00000163472 | TMEM79 | transmembrane protein 79 | 84283 | NA |
| NA | ENSG00000163468 | CCT3 | chaperonin containing TCP1 subunit 3 | 7203 | The protein encoded by this gene is a molecular chaperone that is a member of the chaperonin containing TCP1 complex (CCT), also known as the TCP1 ring complex (TRiC). This complex consists of two identical stacked rings, each containing eight different proteins. Unfolded polypeptides enter the central cavity of the complex and are folded in an ATP-dependent manner. The complex folds various proteins, including actin and tubulin. Alternate transcriptional splice variants have been characterized for this gene. In addition, a pseudogene of this gene has been found on chromosome 8. |
| NA | ENSG00000163467 | TSACC | TSSK6 activating co-chaperone | 128229 | NA |
| NA | ENSG00000125462 | C1orf61 | chromosome 1 open reading frame 61 | 10485 | NA |
| NA | ENSG00000116604 | MEF2D | myocyte enhancer factor 2D | 4209 | This gene is a member of the myocyte-specific enhancer factor 2 (MEF2) family of transcription factors. Members of this family are involved in control of muscle and neuronal cell differentiation and development, and are regulated by class II histone deacetylases. Fusions of the encoded protein with Deleted in Azoospermia-Associated Protein 1 (DAZAP1) due to a translocation have been found in an acute lymphoblastic leukemia cell line, suggesting a role in leukemogenesis. The encoded protein may also be involved in Parkinson disease and myotonic dystrophy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000183856 | IQGAP3 | IQ motif containing GTPase activating protein 3 | 128239 | NA |
| NA | ENSG00000163382 | NAXE | NAD(P)HX epimerase | 128240 | The product of this gene interacts with apolipoprotein A-I (apoA-I), the major apolipoprotein of high-density lipoproteins (HDLs). It is secreted into some bodily fluids, and its synthesis and secretion are stimulated in vitro by incubating cells with apoA-I. The human genome contains related pseudogenes. |
| NA | ENSG00000160818 | GPATCH4 | G-patch domain containing 4 | 54865 | NA |
| NA | ENSG00000132692 | BCAN | brevican | 63827 | This gene encodes a member of the lectican family of chondroitin sulfate proteoglycans that is specifically expressed in the central nervous system. This protein is developmentally regulated and may function in the formation of the brain extracellular matrix. This protein is highly expressed in gliomas and may promote the growth and cell motility of brain tumor cells. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000132688 | NES | nestin | 10763 | This gene encodes a member of the intermediate filament protein family and is expressed primarily in nerve cells. |
| NA | ENSG00000143320 | CRABP2 | cellular retinoic acid binding protein 2 | 1382 | This gene encodes a member of the retinoic acid (RA, a form of vitamin A) binding protein family and lipocalin/cytosolic fatty-acid binding protein family. The protein is a cytosol-to-nuclear shuttling protein, which facilitates RA binding to its cognate receptor complex and transfer to the nucleus. It is involved in the retinoid signaling pathway, and is associated with increased circulating low-density lipoprotein cholesterol. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000143303 | RRNAD1 | ribosomal RNA adenine dimethylase domain containing 1 | 51093 | NA |
| NA | ENSG00000143314 | MRPL24 | mitochondrial ribosomal protein L24 | 79590 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein which is more than twice the size of its E.coli counterpart (EcoL24). Sequence analysis identified two transcript variants that encode the same protein. |
| NA | ENSG00000143321 | HDGF | hepatoma-derived growth factor | 3068 | This gene encodes a member of the hepatoma-derived growth factor family. The encoded protein has mitogenic and DNA-binding activity and may play a role in cellular proliferation and differentiation. High levels of expression of this gene enhance the growth of many tumors. This gene was thought initially to be located on chromosome X; however, that location has been determined to correspond to a related pseudogene. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000143294 | PRCC | papillary renal cell carcinoma (translocation-associated) | 5546 | This gene encodes a protein that may play a role in pre-mRNA splicing. Chromosomal translocations (X;1)(p11;q21) that result in fusion of this gene to TFE3 (GeneID 7030) have been associated with papillary renal cell carcinoma. A PRCC-TFE3 fusion protein is expressed in affected carcinomas and is likely associated with altered gene transactivation. This fusion protein has also been associated with disruption of the cell cycle. |
| NA | ENSG00000027869 | SH2D2A | SH2 domain containing 2A | 9047 | This gene encodes an adaptor protein thought to function in T-cell signal transduction. A related protein in mouse is responsible for the activation of lymphocyte-specific protein-tyrosine kinase and functions in downstream signaling. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000132694 | ARHGEF11 | Rho guanine nucleotide exchange factor 11 | 9826 | Rho GTPases play a fundamental role in numerous cellular processes that are initiated by extracellular stimuli that work through G protein coupled receptors. The encoded protein may form a complex with G proteins and stimulate Rho-dependent signals. A similar protein in rat interacts with glutamate transporter EAAT4 and modulates its glutamate transport activity. Expression of the rat protein induces the reorganization of the actin cytoskeleton and its overexpression induces the formation of membrane ruffling and filopodia. Two alternative transcripts encoding different isoforms have been described. |
| NA | ENSG00000253831 | ETV3L | ETS variant 3 like | 440695 | NA |
| NA | ENSG00000183853 | KIRREL | kin of IRRE like (Drosophila) | 55243 | NEPH1 is a member of the nephrin-like protein family, which includes NEPH2 (MIM 607761) and NEPH3 (MIM 607762). The cytoplasmic domains of these proteins interact with the C terminus of podocin (NPHS2; MIM 604766), and the genes are expressed in kidney podocytes, cells involved in ensuring size- and charge-selective ultrafiltration (Sellin et al., 2003 [PubMed 12424224]). |
| NA | ENSG00000163568 | AIM2 | absent in melanoma 2 | 9447 | AIM2 is a member of the IFI20X /IFI16 family. It plays a putative role in tumorigenic reversion and may control cell proliferation. Interferon-gamma induces expression of AIM2. |
| NA | ENSG00000162706 | CADM3 | cell adhesion molecule 3 | 57863 | IGSF4B is a brain-specific protein related to the calcium-independent cell-cell adhesion molecules known as nectins (see PVRL3; MIM 607147) (Kakunaga et al., 2005 [PubMed 15741237]). |
| NA | ENSG00000158716 | DUSP23 | dual specificity phosphatase 23 | 54935 | NA |
| NA | ENSG00000158710 | TAGLN2 | transgelin 2 | 8407 | The protein encoded by this gene is similar to the protein transgelin, which is one of the earliest markers of differentiated smooth muscle. The specific function of this protein has not yet been determined, although it is thought to be a tumor suppressor. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000085552 | IGSF9 | immunoglobulin superfamily member 9 | 57549 | NA |
| NA | ENSG00000143315 | PIGM | phosphatidylinositol glycan anchor biosynthesis class M | 93183 | This gene encodes a transmembrane protein that is located in the endoplasmic reticulum and is involved in GPI-anchor biosynthesis. The glycosylphosphatidylinositol (GPI)-anchor is a glycolipid which contains three mannose molecules in its core backbone. The GPI-anchor is found on many blood cells and serves to anchor proteins to the cell surface. This gene encodes a mannosyltransferase, GPI-MT-I, that transfers the first mannose to GPI on the lumenal side of the endoplasmic reticulum. |
| NA | ENSG00000162729 | IGSF8 | immunoglobulin superfamily member 8 | 93185 | This gene encodes a member the EWI subfamily of the immunoglobulin protein superfamily. Members of this family contain a single transmembrane domain, an EWI (Glu-Trp-Ile)-motif and a variable number of immunoglobulin domains. This protein interacts with the tetraspanins CD81 and CD9 and may regulate their role in certain cellular functions including cell migration and viral infection. The encoded protein may also function as a tumor suppressor by inhibiting the proliferation of certain cancers. Alternate splicing results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000018625 | ATP1A2 | ATPase Na+/K+ transporting subunit alpha 2 | 477 | The protein encoded by this gene belongs to the family of P-type cation transport ATPases, and to the subfamily of Na+/K+ -ATPases. Na+/K+ -ATPase is an integral membrane protein responsible for establishing and maintaining the electrochemical gradients of Na and K ions across the plasma membrane. These gradients are essential for osmoregulation, for sodium-coupled transport of a variety of organic and inorganic molecules, and for electrical excitability of nerve and muscle. This enzyme is composed of two subunits, a large catalytic subunit (alpha) and a smaller glycoprotein subunit (beta). The catalytic subunit of Na+/K+ -ATPase is encoded by multiple genes. This gene encodes an alpha 2 subunit. Mutations in this gene result in familial basilar or hemiplegic migraines, and in a rare syndrome known as alternating hemiplegia of childhood. |
| NA | ENSG00000162734 | PEA15 | phosphoprotein enriched in astrocytes 15 | 8682 | This gene encodes a death effector domain-containing protein that functions as a negative regulator of apoptosis. The encoded protein is an endogenous substrate for protein kinase C. This protein is also overexpressed in type 2 diabetes mellitus, where it may contribute to insulin resistance in glucose uptake. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000132716 | DCAF8 | DDB1 and CUL4 associated factor 8 | 50717 | This gene encodes a WD repeat-containing protein that interacts with the Cul4-Ddb1 E3 ligase macromolecular complex. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000122218 | COPA | coatomer protein complex subunit alpha | 1314 | In eukaryotic cells, protein transport between the endoplasmic reticulum and Golgi compartments is mediated in part by non-clathrin-coated vesicular coat proteins (COPs). Seven coat proteins have been identified, and they represent subunits of a complex known as coatomer. The subunits are designated alpha-COP, beta-COP, beta-prime-COP, gamma-COP, delta-COP, epsilon-COP, and zeta-COP. The alpha-COP, encoded by COPA, shares high sequence similarity with RET1P, the alpha subunit of the coatomer complex in yeast. Also, the N-terminal 25 amino acids of alpha-COP encode the bioactive peptide, xenin, which stimulates exocrine pancreatic secretion and may act as a gastrointestinal hormone. Alternative splicing results in multiple splice forms encoding distinct isoforms. |
| NA | ENSG00000162736 | NCSTN | nicastrin | 23385 | This gene encodes a type I transmembrane glycoprotein that is an integral component of the multimeric gamma-secretase complex. The encoded protein cleaves integral membrane proteins, including Notch receptors and beta-amyloid precursor protein, and may be a stabilizing cofactor required for gamma-secretase complex assembly. The cleavage of beta-amyloid precursor protein yields amyloid beta peptide, the main component of the neuritic plaque and the hallmark lesion in the brains of patients with Alzheimer’s disease; however, the nature of the encoded protein’s role in Alzheimer’s disease is not known for certain. Mutations in this gene are associated with familial acne inversa. A pseudogene of this gene is present on chromosome 21. Alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000162738 | VANGL2 | VANGL planar cell polarity protein 2 | 57216 | The protein encoded by this gene is a membrane protein involved in the regulation of planar cell polarity, especially in the stereociliary bundles of the cochlea. The encoded protein transmits directional signals to individual cells or groups of cells in epithelial sheets. This protein is also involved in the development of the neural plate. |
| NA | ENSG00000158764 | ITLN2 | intelectin 2 | 142683 | NA |
| NA | ENSG00000158769 | F11R | F11 receptor | 50848 | Tight junctions represent one mode of cell-to-cell adhesion in epithelial or endothelial cell sheets, forming continuous seals around cells and serving as a physical barrier to prevent solutes and water from passing freely through the paracellular space. The protein encoded by this immunoglobulin superfamily gene member is an important regulator of tight junction assembly in epithelia. In addition, the encoded protein can act as (1) a receptor for reovirus, (2) a ligand for the integrin LFA1, involved in leukocyte transmigration, and (3) a platelet receptor. Multiple 5’ alternatively spliced variants, encoding the same protein, have been identified but their biological validity has not been established. |
| NA | ENSG00000215845 | TSTD1 | thiosulfate sulfurtransferase (rhodanese)-like domain containing 1 | 100131187 | NA |
| NA | ENSG00000158773 | USF1 | upstream transcription factor 1 | 7391 | This gene encodes a member of the basic helix-loop-helix leucine zipper family, and can function as a cellular transcription factor. The encoded protein can activate transcription through pyrimidine-rich initiator (Inr) elements and E-box motifs. This gene has been linked to familial combined hyperlipidemia (FCHL). Alternative splicing of this gene results in multiple transcript variants. A related pseudogene has been defined on chromosome 21. |
| NA | ENSG00000162755 | KLHDC9 | kelch domain containing 9 | 126823 | NA |
| NA | ENSG00000158796 | DEDD | death effector domain containing | 9191 | This gene encodes a protein that contains a death effector domain (DED). DED is a protein-protein interaction domain shared by adaptors, regulators and executors of the programmed cell death pathway. Overexpression of this gene was shown to induce weak apoptosis. Upon stimulation, this protein was found to translocate from cytoplasm to nucleus and colocalize with UBTF, a basal factor required for RNA polymerase I transcription, in the nucleolus. At least three transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000143222 | UFC1 | ubiquitin-fold modifier conjugating enzyme 1 | 51506 | UFC1 is an E2-like conjugating enzyme for ubiquitin-fold modifier-1 (UFM1; MIM 610553) (Komatsu et al., 2004 [PubMed 15071506]). |
| NA | ENSG00000143258 | USP21 | ubiquitin specific peptidase 21 | 27005 | This gene encodes a member of the C19 peptidase family, also known as family 2 of ubiquitin carboxy-terminal hydrolases. The encoded protein cleaves ubiquitin from ubiquitinated proteins for recycling in intracellular protein degradation. The encoded protein is also able to release NEDD8, a ubiquitin-like protein, from NEDD8-conjugated proteins. This gene has been referred to as USP16 and USP23 but is now known as USP21. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000143224 | PPOX | protoporphyrinogen oxidase | 5498 | This gene encodes the penultimate enzyme of heme biosynthesis, which catalyzes the 6-electron oxidation of protoporphyrinogen IX to form protoporphyrin IX. Mutations in this gene cause variegate porphyria, an autosomal dominant disorder of heme metabolism resulting from a deficiency in protoporphyrinogen oxidase, an enzyme located on the inner mitochondrial membrane. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000158850 | B4GALT3 | beta-1,4-galactosyltransferase 3 | 8703 | This gene is one of seven beta-1,4-galactosyltransferase (beta4GalT) genes. They encode type II membrane-bound glycoproteins that appear to have exclusive specificity for the donor substrate UDP-galactose; all transfer galactose in a beta1,4 linkage to similar acceptor sugars: GlcNAc, Glc, and Xyl. Each beta4GalT has a distinct function in the biosynthesis of different glycoconjugates and saccharide structures. As type II membrane proteins, they have an N-terminal hydrophobic signal sequence that directs the protein to the Golgi apparatus and which then remains uncleaved to function as a transmembrane anchor. By sequence similarity, the beta4GalTs form four groups: beta4GalT1 and beta4GalT2, beta4GalT3 and beta4GalT4, beta4GalT5 and beta4GalT6, and beta4GalT7. This gene encodes an enzyme that may be mainly involved in the synthesis of the first N-acetyllactosamine unit of poly-N-acetyllactosamine chains. Multiple alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000158859 | ADAMTS4 | ADAM metallopeptidase with thrombospondin type 1 motif 4 | 9507 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) protein family. Members of this family share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. The enzyme encoded by this gene lacks a C-terminal TS motif. The encoded preproprotein is proteolytically processed to generate the mature protease. This protease is responsible for the degradation of aggrecan, a major proteoglycan of cartilage, and brevican, a brain-specific extracellular matrix protein. The expression of this gene is upregulated in arthritic disease and this may contribute to disease progression through the degradation of aggrecan. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000158887 | MPZ | myelin protein zero | 4359 | This gene is specifically expressed in Schwann cells of the peripheral nervous system and encodes a type I transmembrane glycoprotein that is a major structural protein of the peripheral myelin sheath. The encoded protein contains a large hydrophobic extracellular domain and a smaller basic intracellular domain, which are essential for the formation and stabilization of the multilamellar structure of the compact myelin. Mutations in this gene are associated with autosomal dominant form of Charcot-Marie-Tooth disease type 1 (CMT1B) and other polyneuropathies, such as Dejerine-Sottas syndrome (DSS) and congenital hypomyelinating neuropathy (CHN). A recent study showed that two isoforms are produced from the same mRNA by use of alternative in-frame translation termination codons via a stop codon readthrough mechanism. |
| NA | ENSG00000143252 | SDHC | succinate dehydrogenase complex subunit C | 6391 | This gene encodes one of four nuclear-encoded subunits that comprise succinate dehydrogenase, also known as mitochondrial complex II, a key enzyme complex of the tricarboxylic acid cycle and aerobic respiratory chains of mitochondria. The encoded protein is one of two integral membrane proteins that anchor other subunits of the complex, which form the catalytic core, to the inner mitochondrial membrane. There are several related pseudogenes for this gene on different chromosomes. Mutations in this gene have been associated with paragangliomas. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000162745 | OLFML2B | olfactomedin like 2B | 25903 | NA |
| NA | ENSG00000198929 | NOS1AP | nitric oxide synthase 1 adaptor protein | 9722 | This gene encodes a cytosolic protein that binds to the signaling molecule, neuronal nitric oxide synthase (nNOS). This protein has a C-terminal PDZ-binding domain that mediates interactions with nNOS and an N-terminal phosphotyrosine binding (PTB) domain that binds to the small monomeric G protein, Dexras1. Studies of the related mouse and rat proteins have shown that this protein functions as an adapter protein linking nNOS to specific targets, such as Dexras1 and the synapsins. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000152332 | UHMK1 | U2AF homology motif (UHM) kinase 1 | 127933 | The gene encodes a serine/threonine protein kinase that promotes cell cycle progression through G1 by phosphorylation of the cyclin-dependent kinase inhibitor 1B (p27Kip1), which causes nuclear export and degradation. The encoded protein is also thought to function in the adult nervous system and the gene has been associated with schizophrenia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000117143 | UAP1 | UDP-N-acetylglucosamine pyrophosphorylase 1 | 6675 | NA |
| NA | ENSG00000162733 | DDR2 | discoidin domain receptor tyrosine kinase 2 | 4921 | Receptor tyrosine kinases (RTKs) play a key role in the communication of cells with their microenvironment. These molecules are involved in the regulation of cell growth, differentiation, and metabolism. In several cases the biochemical mechanism by which RTKs transduce signals across the membrane has been shown to be ligand induced receptor oligomerization and subsequent intracellular phosphorylation. This autophosphorylation leads to phosphorylation of cytosolic targets as well as association with other molecules, which are involved in pleiotropic effects of signal transduction. RTKs have a tripartite structure with extracellular, transmembrane, and cytoplasmic regions. This gene encodes a member of a novel subclass of RTKs and contains a distinct extracellular region encompassing a factor VIII-like domain. Alternative splicing in the 5’ UTR results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000132196 | HSD17B7 | hydroxysteroid (17-beta) dehydrogenase 7 | 51478 | HSD17B7 encodes an enzyme that functions both as a 17-beta-hydroxysteroid dehydrogenase (EC 1.1.1.62) in the biosynthesis of sex steroids and as a 3-ketosteroid reductase (EC 1.1.1.270) in the biosynthesis of cholesterol (Marijanovic et al., 2003 [PubMed 12829805]). |
| NA | ENSG00000143248 | RGS5 | regulator of G-protein signaling 5 | 8490 | This gene encodes a member of the regulators of G protein signaling (RGS) family. The RGS proteins are signal transduction molecules which are involved in the regulation of heterotrimeric G proteins by acting as GTPase activators. This gene is a hypoxia-inducible factor-1 dependent, hypoxia-induced gene which is involved in the induction of endothelial apoptosis. This gene is also one of three genes on chromosome 1q contributing to elevated blood pressure. Alternatively spliced transcript variants have been identified. |
| NA | ENSG00000143228 | NUF2 | NUF2, NDC80 kinetochore complex component | 83540 | This gene encodes a protein that is highly similar to yeast Nuf2, a component of a conserved protein complex associated with the centromere. Yeast Nuf2 disappears from the centromere during meiotic prophase when centromeres lose their connection to the spindle pole body, and plays a regulatory role in chromosome segregation. The encoded protein is found to be associated with centromeres of mitotic HeLa cells, which suggests that this protein is a functional homolog of yeast Nuf2. Alternatively spliced transcript variants that encode the same protein have been described. |
| NA | ENSG00000143198 | MGST3 | microsomal glutathione S-transferase 3 | 4259 | This gene encodes a member of the MAPEG (Membrane Associated Proteins in Eicosanoid and Glutathione metabolism) protein family. Members of this family are involved in the production of leukotrienes and prostaglandin E, important mediators of inflammation. This gene encodes an enzyme which catalyzes the conjugation of leukotriene A4 and reduced glutathione to produce leukotriene C4. This enzyme also demonstrates glutathione-dependent peroxidase activity towards lipid hydroperoxides. |
| NA | ENSG00000143179 | UCK2 | uridine-cytidine kinase 2 | 7371 | This gene encodes a pyrimidine ribonucleoside kinase. The encoded protein (EC 2.7.1.48) catalyzes phosphorylation of uridine and cytidine to uridine monophosphate (UMP) and cytidine monophosphate (CMP), respectively. |
| NA | ENSG00000143157 | POGK | pogo transposable element with KRAB domain | 57645 | The exact function of the protein encoded by this gene is not known. However, this gene product contains a KRAB domain (which is involved in protein-protein interactions) at the N-terminus, and a transposase domain at the C-terminus, suggesting that it may belong to the family of DNA-mediated transposons in human. |
| NA | ENSG00000152382 | TADA1 | transcriptional adaptor 1 | 117143 | TADA1L is a protein subunit of the human STAGA complex (SPT3; (MIM 602947)/TAF9 (MIM 600822)/GCN5 (MIM 602301) acetyltransferase complex), which is a chromatin-modifying multiprotein complex (Martinez et al., 2001 [PubMed 11564863]). |
| NA | ENSG00000143190 | POU2F1 | POU class 2 homeobox 1 | 5451 | The OCT1 transcription factor was among the first identified members of the POU transcription factor family (summarized by Sturm et al., 1993 [PubMed 8314572]). Members of this family contain the POU domain, a 160-amino acid region necessary for DNA binding to the octameric sequence ATGCAAAT. |
| NA | ENSG00000143162 | CREG1 | cellular repressor of E1A stimulated genes 1 | 8804 | The adenovirus E1A protein both activates and represses gene expression to promote cellular proliferation and inhibit differentiation. The protein encoded by this gene antagonizes transcriptional activation and cellular transformation by E1A. This protein shares limited sequence similarity with E1A and binds both the general transcription factor TBP and the tumor suppressor pRb in vitro. This gene may contribute to the transcriptional control of cell growth and differentiation. |
| NA | ENSG00000197965 | MPZL1 | myelin protein zero like 1 | 9019 | NA |
| NA | ENSG00000143158 | MPC2 | mitochondrial pyruvate carrier 2 | 25874 | NA |
| NA | ENSG00000143147 | GPR161 | G protein-coupled receptor 161 | 23432 | Upon ligand binding, G protein-coupled receptors, such as GPR161, activate cytoplasmic G proteins (see GNAS, MIM 139320), allowing the receptors to transduce extracellular signals across the plasma membrane into the cell. Phosphorylation of the receptor attenuates signaling (Matteson et al., 2008 [PubMed 18250320]). |
| NA | ENSG00000143155 | TIPRL | TOR signaling pathway regulator | 261726 | TIPRL is an inhibitory regulator of protein phosphatase-2A (PP2A) (see PPP2CA; MIM 176915), PP4 (see PPP4C; MIM 602035), and PP6 (see PPP6C; MIM 612725) (McConnell et al., 2007 [PubMed 17384681]). |
| NA | ENSG00000213064 | SFT2D2 | SFT2 domain containing 2 | 375035 | NA |
| NA | ENSG00000143153 | ATP1B1 | ATPase Na+/K+ transporting subunit beta 1 | 481 | The protein encoded by this gene belongs to the family of Na+/K+ and H+/K+ ATPases beta chain proteins, and to the subfamily of Na+/K+ -ATPases. Na+/K+ -ATPase is an integral membrane protein responsible for establishing and maintaining the electrochemical gradients of Na and K ions across the plasma membrane. These gradients are essential for osmoregulation, for sodium-coupled transport of a variety of organic and inorganic molecules, and for electrical excitability of nerve and muscle. This enzyme is composed of two subunits, a large catalytic subunit (alpha) and a smaller glycoprotein subunit (beta). The beta subunit regulates, through assembly of alpha/beta heterodimers, the number of sodium pumps transported to the plasma membrane. The glycoprotein subunit of Na+/K+ -ATPase is encoded by multiple genes. This gene encodes a beta 1 subunit. Alternatively spliced transcript variants encoding different isoforms have been described, but their biological validity is not known. |
| NA | ENSG00000143156 | NME7 | NME/NM23 family member 7 | 29922 | NA |
| NA | ENSG00000117475 | BLZF1 | basic leucine zipper nuclear factor 1 | 8548 | NA |
| NA | ENSG00000000460 | C1orf112 | chromosome 1 open reading frame 112 | 55732 | NA |
| NA | ENSG00000000457 | SCYL3 | SCY1 like pseudokinase 3 | 57147 | This gene encodes a protein with a kinase domain and four HEAT repeats. The encoded protein interacts with the C-terminal domain of ezrin, an ERM protein, and may play a role in cell adhesion and migration. Alternative splicing results in multiple transcript variants encoding multiple isoforms. |
| NA | ENSG00000075945 | KIFAP3 | kinesin associated protein 3 | 22920 | The small G protein GDP dissociation stimulator (smg GDS) is a regulator protein having two activities on a group of small G proteins including the Rho and Rap1 family members and Ki-Ras; one is to stimulate their GDP/GTP exchange reactions, and the other is to inhibit their interactions with membranes. The protein encoded by this gene contains 9 ‘Armadillo’ repeats and interacts with the smg GDS protein through these repeats. This protein, which is highly concentrated around the endoplasmic reticulum, is phosphorylated by v-src, and this phosphorylation reduces the affinity of the protein for smg GDS. It is thought that this protein serves as a linker between human chromosome-associated polypeptide (HCAP) and KIF3A/B, a kinesin superfamily protein in the nucleus, and that it plays a role in the interaction of chromosomes with an ATPase motor protein. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000120370 | GORAB | golgin, RAB6-interacting | 92344 | This gene encodes a member of the golgin family, a group of coiled-coil proteins localized to the Golgi. The encoded protein may function in the secretory pathway. The encoded protein, which also localizes to the cytoplasm, was identified by interactions with the N-terminal kinase-like protein, and thus it may function in mitosis. Mutations in this gene have been associated with geroderma osteodysplastica. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000117523 | PRRC2C | proline rich coiled-coil 2C | 23215 | NA |
| NA | ENSG00000117533 | VAMP4 | vesicle associated membrane protein 4 | 8674 | Synaptobrevins/VAMPs, syntaxins, and the 25-kD synaptosomal-associated protein SNAP25 are the main components of a protein complex involved in the docking and/or fusion of synaptic vesicles with the presynaptic membrane. The protein encoded by this gene is a member of the vesicle-associated membrane protein (VAMP)/synaptobrevin family. This protein may play a role in trans-Golgi network-to-endosome transport. |
| NA | ENSG00000010165 | METTL13 | methyltransferase like 13 | 51603 | NA |
| NA | ENSG00000197959 | DNM3 | dynamin 3 | 26052 | This gene encodes a member of a family of guanosine triphosphate (GTP)-binding proteins that associate with microtubules and are involved in vesicular transport. The encoded protein functions in the development of megakaryocytes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000094975 | SUCO | SUN domain containing ossification factor | 51430 | NA |
| NA | ENSG00000117592 | PRDX6 | peroxiredoxin 6 | 9588 | The protein encoded by this gene is a member of the thiol-specific antioxidant protein family. This protein is a bifunctional enzyme with two distinct active sites. It is involved in redox regulation of the cell; it can reduce H(2)O(2) and short chain organic, fatty acid, and phospholipid hydroperoxides. It may play a role in the regulation of phospholipid turnover as well as in protection against oxidative injury. |
| NA | ENSG00000183831 | ANKRD45 | ankyrin repeat domain 45 | 339416 | NA |
| NA | ENSG00000076321 | KLHL20 | kelch like family member 20 | 27252 | The protein encoded by this gene is a member of the kelch family of proteins, which is characterized by a 44-56 amino acid repeat motif. The kelch motif appears in many different polypeptide contexts and contains multiple potential protein-protein contact sites. Members of this family are present both throughout the cell and extracellularly, with diverse activities. |
| NA | ENSG00000120334 | CENPL | centromere protein L | 91687 | CENPL is a subunit of a CENPH (MIM 605607)-CENPI (MIM 300065)-associated centromeric complex that targets CENPA (MIM 117139) to centromeres and is required for proper kinetochore function and mitotic progression (Okada et al., 2006) [PubMed 16622420]. |
| NA | ENSG00000135870 | RC3H1 | ring finger and CCCH-type domains 1 | 149041 | This gene encodes a protein containing RING-type and C3H1-type zinc finger motifs. The encoded protein recognizes and binds to a constitutive decay element (CDE) in the 3’ UTR of mRNAs, leading to mRNA deadenylation and degradation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000116161 | CACYBP | calcyclin binding protein | 27101 | The protein encoded by this gene is a calcyclin binding protein. It may be involved in calcium-dependent ubiquitination and subsequent proteosomal degradation of target proteins. It probably serves as a molecular bridge in ubiquitin E3 complexes and participates in the ubiquitin-mediated degradation of beta-catenin. Two alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000120333 | MRPS14 | mitochondrial ribosomal protein S14 | 63931 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S14P family. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000120332 | TNN | tenascin N | 63923 | NA |
| NA | ENSG00000235750 | KIAA0040 | KIAA0040 | 9674 | NA |
| NA | ENSG00000152092 | ASTN1 | astrotactin 1 | 460 | Astrotactin is a neuronal adhesion molecule required for glial-guided migration of young postmitotic neuroblasts in cortical regions of developing brain, including cerebrum, hippocampus, cerebellum, and olfactory bulb (Fink et al., 1995). |
| NA | ENSG00000075391 | RASAL2 | RAS protein activator like 2 | 9462 | This gene encodes a protein that contains the GAP-related domain (GRD), a characteristic domain of GTPase-activating proteins (GAPs). GAPs function as activators of Ras superfamily of small GTPases. The protein encoded by this gene is able to complement the defective RasGAP function in a yeast system. Two alternatively spliced transcript variants of this gene encoding distinct isoforms have been reported. |
| NA | ENSG00000186283 | TOR3A | torsin family 3 member A | 64222 | NA |
| NA | ENSG00000143322 | ABL2 | ABL proto-oncogene 2, non-receptor tyrosine kinase | 27 | This gene encodes a member of the Abelson family of nonreceptor tyrosine protein kinases. The protein is highly similar to the c-abl oncogene 1 protein, including the tyrosine kinase, SH2 and SH3 domains, and it plays a role in cytoskeletal rearrangements through its C-terminal F-actin- and microtubule-binding sequences. This gene is expressed in both normal and tumor cells, and is involved in translocation with the ets variant 6 gene in leukemia. Multiple alternatively spliced transcript variants encoding different protein isoforms have been found for this gene. |
| NA | ENSG00000057252 | SOAT1 | sterol O-acyltransferase 1 | 6646 | The protein encoded by this gene belongs to the acyltransferase family. It is located in the endoplasmic reticulum, and catalyzes the formation of fatty acid-cholesterol esters. This gene has been implicated in the formation of beta-amyloid and atherosclerotic plaques by controlling the equilibrium between free cholesterol and cytoplasmic cholesteryl esters. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000135837 | CEP350 | centrosomal protein 350kDa | 9857 | The product of this gene is a large protein with a CAP-Gly domain typically found in cytoskeleton-associated proteins. The encoded protein primarily localizes to the centrosome, a non-membraneous organelle that functions as the major microtubule-organizing center in animal cells. The encoded protein directly interacts with another large centrosomal protein and is required to anchor microtubules at the centrosome. It is also implicated in the regulation of a class of nuclear hormone receptors in the nucleus. Several alternatively spliced transcript variants have been found, but their full-length nature has not been determined. |
| NA | ENSG00000116260 | QSOX1 | quiescin sulfhydryl oxidase 1 | 5768 | This gene encodes a protein that contains domains of thioredoxin and ERV1, members of two long-standing gene families. The gene expression is induced as fibroblasts begin to exit the proliferative cycle and enter quiescence, suggesting that this gene plays an important role in growth regulation. Two transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000121454 | LHX4 | LIM homeobox 4 | 89884 | This gene encodes a member of a large protein family which contains the LIM domain, a unique cysteine-rich zinc-binding domain. The encoded protein is a transcription factor involved in the control of differentiation and development of the pituitary gland. Mutations in this gene cause combined pituitary hormone deficiency 4. |
| NA | ENSG00000135823 | STX6 | syntaxin 6 | 10228 | NA |
| NA | ENSG00000162783 | IER5 | immediate early response 5 | 51278 | This gene encodes a protein that is similar to other immediate early response proteins. In the mouse, a similar gene may play an important role in mediating the cellular response to mitogenic signals. Studies in rats found the expression of a similar gene to be increased after waking and sleep deprivation. |
| NA | ENSG00000135821 | GLUL | glutamate-ammonia ligase | 2752 | The protein encoded by this gene belongs to the glutamine synthetase family. It catalyzes the synthesis of glutamine from glutamate and ammonia in an ATP-dependent reaction. This protein plays a role in ammonia and glutamate detoxification, acid-base homeostasis, cell signaling, and cell proliferation. Glutamine is an abundant amino acid, and is important to the biosynthesis of several amino acids, pyrimidines, and purines. Mutations in this gene are associated with congenital glutamine deficiency, and overexpression of this gene was observed in some primary liver cancer samples. There are six pseudogenes of this gene found on chromosomes 2, 5, 9, 11, and 12. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000143333 | RGS16 | regulator of G-protein signaling 16 | 6004 | The protein encoded by this gene belongs to the ‘regulator of G protein signaling’ family. It inhibits signal transduction by increasing the GTPase activity of G protein alpha subunits. It also may play a role in regulating the kinetics of signaling in the phototransduction cascade. |
| NA | ENSG00000135838 | NPL | N-acetylneuraminate pyruvate lyase (dihydrodipicolinate synthase) | 80896 | This gene encodes a member of the N-acetylneuraminate lyase sub-family of (beta/alpha)(8)-barrel enzymes. N-acetylneuraminate lyases regulate cellular concentrations of N-acetyl-neuraminic acid (sialic acid) by mediating the reversible conversion of sialic acid into N-acetylmannosamine and pyruvate. A pseudogene of this gene is located on the short arm of chromosome 2. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000135829 | DHX9 | DEAH-box helicase 9 | 1660 | This gene encodes a member of the DEAH-containing family of RNA helicases. The encoded protein is an enzyme that catalyzes the ATP-dependent unwinding of double-stranded RNA and DNA-RNA complexes. This protein localizes to both the nucleus and the cytoplasm and functions as a transcriptional regulator. This protein may also be involved in the expression and nuclear export of retroviral RNAs. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 11 and 13. |
| NA | ENSG00000058085 | LAMC2 | laminin subunit gamma 2 | 3918 | Laminins, a family of extracellular matrix glycoproteins, are the major noncollagenous constituent of basement membranes. They have been implicated in a wide variety of biological processes including cell adhesion, differentiation, migration, signaling, neurite outgrowth and metastasis. Laminins, composed of 3 non identical chains: laminin alpha, beta and gamma (formerly A, B1, and B2, respectively), have a cruciform structure consisting of 3 short arms, each formed by a different chain, and a long arm composed of all 3 chains. Each laminin chain is a multidomain protein encoded by a distinct gene. Several isoforms of each chain have been described. Different alpha, beta and gamma chain isomers combine to give rise to different heterotrimeric laminin isoforms which are designated by Arabic numerals in the order of their discovery, i.e. alpha1beta1gamma1 heterotrimer is laminin 1. The biological functions of the different chains and trimer molecules are largely unknown, but some of the chains have been shown to differ with respect to their tissue distribution, presumably reflecting diverse functions in vivo. This gene encodes the gamma chain isoform laminin, gamma 2. The gamma 2 chain, formerly thought to be a truncated version of beta chain (B2t), is highly homologous to the gamma 1 chain; however, it lacks domain VI, and domains V, IV and III are shorter. It is expressed in several fetal tissues but differently from gamma 1, and is specifically localized to epithelial cells in skin, lung and kidney. The gamma 2 chain together with alpha 3 and beta 3 chains constitute laminin 5 (earlier known as kalinin), which is an integral part of the anchoring filaments that connect epithelial cells to the underlying basement membrane. The epithelium-specific expression of the gamma 2 chain implied its role as an epithelium attachment molecule, and mutations in this gene have been associated with junctional epidermolysis bullosa, a skin disease characterized by blisters due to disruption of the epidermal-dermal junction. Two transcript variants resulting from alternative splicing of the 3’ terminal exon, and encoding different isoforms of gamma 2 chain, have been described. The two variants are differentially expressed in embryonic tissues, however, the biological significance of the two forms is not known. Transcript variants utilizing alternative polyA_signal have also been noted in literature. |
| NA | ENSG00000157064 | NMNAT2 | nicotinamide nucleotide adenylyltransferase 2 | 23057 | This gene product belongs to the nicotinamide mononucleotide adenylyltransferase (NMNAT) enzyme family, members of which catalyze an essential step in NAD (NADP) biosynthetic pathway. Unlike the other human family member, which is localized to the nucleus, and is ubiquitously expressed; this enzyme is cytoplasmic, and is predominantly expressed in the brain. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000116698 | SMG7 | SMG7 nonsense mediated mRNA decay factor | 9887 | This gene encodes a protein that is essential for nonsense-mediated mRNA decay (NMD); a process whereby transcripts with premature termination codons are targeted for rapid degradation by a mRNA decay complex. The mRNA decay complex consists, in part, of this protein along with proteins SMG5 and UPF1. The N-terminal domain of this protein is thought to mediate its association with SMG5 or UPF1 while the C-terminal domain interacts with the mRNA decay complex. This protein may therefore couple changes in UPF1 phosphorylation state to the degradation of NMD-candidate transcripts. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000162704 | ARPC5 | actin related protein 2/3 complex subunit 5 | 10092 | This gene encodes one of seven subunits of the human Arp2/3 protein complex. The Arp2/3 protein complex has been implicated in the control of actin polymerization in cells and has been conserved through evolution. The exact role of the protein encoded by this gene, the p16 subunit, has yet to be determined. Alternatively spliced transcript variants encoding different isoforms have been observed for this gene. |
| NA | ENSG00000143344 | RGL1 | ral guanine nucleotide dissociation stimulator like 1 | 23179 | NA |
| NA | ENSG00000198860 | TSEN15 | tRNA splicing endonuclease subunit 15 | 116461 | This gene encodes a subunit of the tRNA splicing endonuclease, which catalyzes the removal of introns from tRNA precursors. Alternative splicing results in multiple transcript variants. There is a pseudogene of this gene on chromosome 17. |
| NA | ENSG00000116406 | EDEM3 | ER degradation enhancer, mannosidase alpha-like 3 | 80267 | Quality control in the endoplasmic reticulum (ER) ensures that only properly folded proteins are retained in the cell through recognition and degradation of misfolded or unassembled proteins. EDEM3 belongs to a group of proteins that accelerate degradation of misfolded glycoproteins in the ER (Hirao et al., 2006 [PubMed 16431915]). |
| NA | ENSG00000121481 | RNF2 | ring finger protein 2 | 6045 | Polycomb group (PcG) of proteins form the multiprotein complexes that are important for the transcription repression of various genes involved in development and cell proliferation. The protein encoded by this gene is one of the PcG proteins. It has been shown to interact with, and suppress the activity of, transcription factor CP2 (TFCP2/CP2). Studies of the mouse counterpart suggested the involvement of this gene in the specification of anterior-posterior axis, as well as in cell proliferation in early development. This protein was also found to interact with huntingtin interacting protein 2 (HIP2), an ubiquitin-conjugating enzyme, and possess ubiquitin ligase activity. |
| NA | ENSG00000121486 | TRMT1L | tRNA methyltransferase 1 like | 81627 | This gene encodes a protein that has some similarity to N2,N2-dimethylguanosine tRNA methyltransferase from other organisms. Studies of the mouse ortholog have shown that this protein plays a role in motor coordination and exploratory behavior, and it may also be involved in modulating postnatal neuronal functions. Alternatively spliced transcripts have been identified for this gene. |
| NA | ENSG00000116668 | SWT1 | SWT1, RNA endoribonuclease homolog | 54823 | NA |
| NA | ENSG00000143341 | HMCN1 | hemicentin 1 | 83872 | This gene encodes a large extracellular member of the immunoglobulin superfamily. A similar protein in C. elegans forms long, fine tracks at specific extracellular sites that are involved in many processes such as stabilization of the germline syncytium, anchorage of mechanosensory neurons to the epidermis, and organization of hemidesmosomes in the epidermis. Mutations in this gene may be associated with age-related macular degeneration. |
| NA | ENSG00000047410 | TPR | translocated promoter region, nuclear basket protein | 7175 | This gene encodes a large coiled-coil protein that forms intranuclear filaments attached to the inner surface of nuclear pore complexes (NPCs). The protein directly interacts with several components of the NPC. It is required for the nuclear export of mRNAs and some proteins. Oncogenic fusions of the 5’ end of this gene with several different kinase genes occur in some neoplasias. |
| NA | ENSG00000116711 | PLA2G4A | phospholipase A2 group IVA | 5321 | This gene encodes a member of the cytosolic phospholipase A2 group IV family. The enzyme catalyzes the hydrolysis of membrane phospholipids to release arachidonic acid which is subsequently metabolized into eicosanoids. Eicosanoids, including prostaglandins and leukotrienes, are lipid-based cellular hormones that regulate hemodynamics, inflammatory responses, and other intracellular pathways. The hydrolysis reaction also produces lysophospholipids that are converted into platelet-activating factor. The enzyme is activated by increased intracellular Ca(2+) levels and phosphorylation, resulting in its translocation from the cytosol and nucleus to perinuclear membrane vesicles. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000116741 | RGS2 | regulator of G-protein signaling 2 | 5997 | Regulator of G protein signaling (RGS) family members are regulatory molecules that act as GTPase activating proteins (GAPs) for G alpha subunits of heterotrimeric G proteins. RGS proteins are able to deactivate G protein subunits of the Gi alpha, Go alpha and Gq alpha subtypes. They drive G proteins into their inactive GDP-bound forms. Regulator of G protein signaling 2 belongs to this family. The protein acts as a mediator of myeloid differentiation and may play a role in leukemogenesis. |
| NA | ENSG00000116747 | TROVE2 | TROVE domain family member 2 | 6738 | NA |
| NA | ENSG00000023572 | GLRX2 | glutaredoxin 2 | 51022 | The protein encoded by this gene is a member of the glutaredoxin family of proteins, which maintain cellular thiol homeostasis. These proteins are thiol-disulfide oxidoreductases that use a glutathione-binding site and one or two active cysteines in their active site. This gene undergoes alternative splicing to produce multiple isoforms, one of which is ubiquitously expressed and localizes to mitochondria, where it functions in mitochondrial redox homeostasis and is important for the protection against and recovery from oxidative stress. Other isoforms, which have more restrictive expression patterns, show cytosolic and nuclear localization, and are thought to function in cellular differentiation and transformation, possibly with a role in tumor progression. |
| NA | ENSG00000162687 | KCNT2 | potassium sodium-activated channel subfamily T member 2 | 343450 | NA |
| NA | ENSG00000177888 | ZBTB41 | zinc finger and BTB domain containing 41 | 360023 | NA |
| NA | ENSG00000213047 | DENND1B | DENN domain containing 1B | 163486 | Clathrin (see MIM 118955)-mediated endocytosis is a major mechanism for internalization of proteins and lipids. Members of the connecdenn family, such as DENND1B, function as guanine nucleotide exchange factors (GEFs) for the early endosomal small GTPase RAB35 (MIM 604199) and bind to clathrin and clathrin adaptor protein-2 (AP2; see MIM 601024). Thus, connecdenns link RAB35 activation with the clathrin machinery (Marat and McPherson, 2010 [PubMed 20154091]). |
| NA | ENSG00000151414 | NEK7 | NIMA related kinase 7 | 140609 | NIMA-related kinases share high amino acid sequence identity with the gene product of the Aspergillus nidulans ‘never in mitosis A’ gene, which controls initiation of mitosis. |
| NA | ENSG00000116833 | NR5A2 | nuclear receptor subfamily 5 group A member 2 | 2494 | NA |
| NA | ENSG00000162702 | ZNF281 | zinc finger protein 281 | 23528 | NA |
| NA | ENSG00000118197 | DDX59 | DEAD-box helicase 59 | 83479 | NA |
| NA | ENSG00000118200 | CAMSAP2 | calmodulin regulated spectrin associated protein family member 2 | 23271 | NA |
| NA | ENSG00000163362 | C1orf106 | chromosome 1 open reading frame 106 | 55765 | NA |
| NA | ENSG00000116852 | KIF21B | kinesin family member 21B | 23046 | This gene encodes a member of the kinesin superfamily. Kinesins are ATP-dependent microtubule-based motor proteins that are involved in the intracellular transport of membranous organelles. Single nucleotide polymorphisms in this gene are associated with inflammatory bowel disease and multiple sclerosis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000116857 | TMEM9 | transmembrane protein 9 | 252839 | NA |
| NA | ENSG00000118194 | TNNT2 | troponin T2, cardiac type | 7139 | The protein encoded by this gene is the tropomyosin-binding subunit of the troponin complex, which is located on the thin filament of striated muscles and regulates muscle contraction in response to alterations in intracellular calcium ion concentration. Mutations in this gene have been associated with familial hypertrophic cardiomyopathy as well as with dilated cardiomyopathy. Transcripts for this gene undergo alternative splicing that results in many tissue-specific isoforms, however, the full-length nature of some of these variants has not yet been determined. |
| NA | ENSG00000159166 | LAD1 | ladinin 1 | 3898 | The protein encoded by this gene may be an anchoring filament that is a component of basement membranes. It may contribute to the stability of the association of the epithelial layers with the underlying mesenchyme. |
| NA | ENSG00000174307 | PHLDA3 | pleckstrin homology like domain family A member 3 | 23612 | NA |
| NA | ENSG00000159176 | CSRP1 | cysteine and glycine rich protein 1 | 1465 | This gene encodes a member of the cysteine-rich protein (CSRP) family. This gene family includes a group of LIM domain proteins, which may be involved in regulatory processes important for development and cellular differentiation. The LIM/double zinc-finger motif found in this gene product occurs in proteins with critical functions in gene regulation, cell growth, and somatic differentiation. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000198892 | SHISA4 | shisa family member 4 | 149345 | NA |
| NA | ENSG00000176393 | RNPEP | arginyl aminopeptidase | 6051 | NA |
| NA | ENSG00000163435 | ELF3 | E74 like ETS transcription factor 3 | 1999 | NA |
| NA | ENSG00000143862 | ARL8A | ADP ribosylation factor like GTPase 8A | 127829 | NA |
| NA | ENSG00000077152 | UBE2T | ubiquitin conjugating enzyme E2 T | 29089 | The protein encoded by this gene catalyzes the covalent attachment of ubiquitin to protein substrates. Defects in this gene have been associated with Fanconi anemia of complementation group T. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000077157 | PPP1R12B | protein phosphatase 1 regulatory subunit 12B | 4660 | Myosin phosphatase is a protein complex comprised of three subunits: a catalytic subunit (PP1c-delta, protein phosphatase 1, catalytic subunit delta), a large regulatory subunit (MYPT, myosin phosphatase target) and small regulatory subunit (sm-M20). Two isoforms of MYPT have been isolated–MYPT1 and MYPT2, the first of which is widely expressed, and the second of which may be specific to heart, skeletal muscle, and brain. Each of the MYPT isoforms functions to bind PP1c-delta and increase phosphatase activity. This locus encodes both MYTP2 and M20. Alternatively spliced transcript variants encoding different isoforms have been identified. Related pseudogenes have been defined on the Y chromosome. |
| NA | ENSG00000143858 | SYT2 | synaptotagmin 2 | 127833 | This gene encodes a synaptic vesicle membrane protein. The encoded protein is thought to function as a calcium sensor in vesicular trafficking and exocytosis. Mutations in this gene are associated with myasthenic syndrome, presynaptic, congenital, with or without motor neuropathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000117153 | KLHL12 | kelch like family member 12 | 59349 | This gene encodes a member of the KLHL (Kelch-like) family of proteins. This protein has been identified as an autoantigen in the autoimmune disease Sjogren’s syndrome and as a potential biomarker in primary biliary cirrhosis. This protein may act as a substrate adaptor of the Cullin-3 ubiquitin ligase complex to promote substrate-specific ubiquitylation. Ubiquitylation by this complex has been shown to regulate the Wnt signaling pathway as well as COPII vesicle coat size. A pseudogene has been identified on chromosome 22. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000159346 | ADIPOR1 | adiponectin receptor 1 | 51094 | This gene encodes a protein which acts as a receptor for adiponectin, a hormone secreted by adipocytes which regulates fatty acid catabolism and glucose levels. Binding of adiponectin to the encoded protein results in activation of an AMP-activated kinase signaling pathway which affects levels of fatty acid oxidation and insulin sensitivity. A pseudogene of this gene is located on chromosome 14. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000159348 | CYB5R1 | cytochrome b5 reductase 1 | 51706 | NA |
| NA | ENSG00000188770 | OPTC | opticin | 26254 | Opticin belongs to class III of the small leucine-rich repeat protein (SLRP) family. Members of this family are typically associated with the extracellular matrix. Opticin is present in significant quantities in the vitreous of the eye and also localizes to the cornea, iris, ciliary body, optic nerve, choroid, retina, and fetal liver. Opticin may noncovalently bind collagen fibrils and regulate fibril morphology, spacing, and organization. The opticin gene is mapped to a region of chromosome 1 that is associated with the inherited eye diseases age-related macular degeneration (AMD) and posterior column ataxia with retinosa pigmentosa (AXPC1). |
| NA | ENSG00000058668 | ATP2B4 | ATPase plasma membrane Ca2+ transporting 4 | 493 | The protein encoded by this gene belongs to the family of P-type primary ion transport ATPases characterized by the formation of an aspartyl phosphate intermediate during the reaction cycle. These enzymes remove bivalent calcium ions from eukaryotic cells against very large concentration gradients and play a critical role in intracellular calcium homeostasis. The mammalian plasma membrane calcium ATPase isoforms are encoded by at least four separate genes and the diversity of these enzymes is further increased by alternative splicing of transcripts. The expression of different isoforms and splice variants is regulated in a developmental, tissue- and cell type-specific manner, suggesting that these pumps are functionally adapted to the physiological needs of particular cells and tissues. This gene encodes the plasma membrane calcium ATPase isoform 4. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000257315 | ZBED6 | zinc finger BED-type containing 6 | 100381270 | NA |
| NA | ENSG00000143842 | SOX13 | SRY-box 13 | 9580 | This gene encodes a member of the SOX (SRY-related HMG-box) family of transcription factors involved in the regulation of embryonic development and in the determination of cell fate. The encoded protein may act as a transcriptional regulator after forming a protein complex with other proteins. It has also been determined to be a type-1 diabetes autoantigen, also known as islet cell antibody 12. |
| NA | ENSG00000143845 | ETNK2 | ethanolamine kinase 2 | 55224 | The protein encoded by this gene is a member of choline/ethanolamine kinase family which catalyzes the first step of phosphatidylethanolamine (PtdEtn) biosynthesis via the cytidine diphosphate (CDP) ethanolamine pathway. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000174567 | GOLT1A | golgi transport 1A | 127845 | NA |
| NA | ENSG00000143850 | PLEKHA6 | pleckstrin homology domain containing A6 | 22874 | NA |
| NA | ENSG00000158615 | PPP1R15B | protein phosphatase 1 regulatory subunit 15B | 84919 | This gene encodes a protein phosphatase I-interacting protein that promotes the dephosphorylation of eukaryotic translation initiation factor 2A to regulate translation under conditions of cellular stress. The transcribed messenger RNA contains two upstream open reading frames (ORFs) that repress translation of the main protein coding ORF under normal conditions, while the protein coding ORF is expressed at high levels in response to stress. Continual translation of the mRNA under conditions of eukaryotic translation initiation factor 2A inactivation is thought to create a feedback loop for reactivation of the gene during recovery from stress. In addition, it has been shown that this protein plays a role in membrane traffic that is independent of translation and that it is required for exocytosis from erythroleukemia cells. Allelic variants of this gene are associated with microcephaly, short stature, and impaired glucose metabolism. |
| NA | ENSG00000133056 | PIK3C2B | phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 beta | 5287 | The protein encoded by this gene belongs to the phosphoinositide 3-kinase (PI3K) family. PI3-kinases play roles in signaling pathways involved in cell proliferation, oncogenic transformation, cell survival, cell migration, and intracellular protein trafficking. This protein contains a lipid kinase catalytic domain as well as a C-terminal C2 domain, a characteristic of class II PI3-kinases. C2 domains act as calcium-dependent phospholipid binding motifs that mediate translocation of proteins to membranes, and may also mediate protein-protein interactions. The PI3-kinase activity of this protein is sensitive to low nanomolar levels of the inhibitor wortmanin. The C2 domain of this protein was shown to bind phospholipids but not Ca2+, which suggests that this enzyme may function in a calcium-independent manner. |
| NA | ENSG00000170382 | LRRN2 | leucine rich repeat neuronal 2 | 10446 | The protein encoded by this gene belongs to the leucine-rich repeat superfamily. This gene was found to be amplified and overexpressed in malignant gliomas. The encoded protein has homology with other proteins that function as cell-adhesion molecules or as signal transduction receptors and is a candidate for the target gene in the 1q32.1 amplicon in malignant gliomas. Two alternatively spliced transcript variants encoding the same protein have been described for this gene. |
| NA | ENSG00000163531 | NFASC | neurofascin | 23114 | This gene encodes an L1 family immunoglobulin cell adhesion molecule with multiple IGcam and fibronectin domains. The protein functions in neurite outgrowth, neurite fasciculation, and organization of the axon initial segment (AIS) and nodes of Ranvier on axons during early development. Both the AIS and nodes of Ranvier contain high densities of voltage-gated Na+ (Nav) channels which are clustered by interactions with cytoskeletal and scaffolding proteins including this protein, gliomedin, ankyrin 3 (ankyrin-G), and betaIV spectrin. This protein links the AIS extracellular matrix to the intracellular cytoskeleton. This gene undergoes extensive alternative splicing, and the full-length nature of some variants has not been determined. |
| NA | ENSG00000184144 | CNTN2 | contactin 2 | 6900 | The protein encoded by this gene is a member of the immunoglobulin superfamily. It is a glycosylphosphatidylinositol (GPI)-anchored neuronal membrane protein that functions as a cell adhesion molecule. It may play a role in the formation of axon connections in the developing nervous system. It may also be involved in glial tumorigenesis and may provide a potential target for therapeutic intervention. |
| NA | ENSG00000174529 | TMEM81 | transmembrane protein 81 | 388730 | NA |
| NA | ENSG00000117222 | RBBP5 | retinoblastoma binding protein 5 | 5929 | This gene encodes a ubiquitously expressed nuclear protein which belongs to a highly conserved subfamily of WD-repeat proteins. The encoded protein binds directly to retinoblastoma protein, which regulates cell proliferation. It interacts preferentially with the underphosphorylated retinoblastoma protein via the E1A-binding pocket B. Three alternatively spliced transcript variants that encode different protein isoforms have been described for this gene. |
| NA | ENSG00000133059 | DSTYK | dual serine/threonine and tyrosine protein kinase | 25778 | This gene encodes a dual serine/threonine and tyrosine protein kinase which is expressed in multiple tissues. It is thought to function as a regulator of cell death. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000133069 | TMCC2 | transmembrane and coiled-coil domain family 2 | 9911 | NA |
| NA | ENSG00000163545 | NUAK2 | NUAK family kinase 2 | 81788 | NA |
| NA | ENSG00000117266 | CDK18 | cyclin-dependent kinase 18 | 5129 | NA |
| NA | ENSG00000158711 | ELK4 | ELK4, ETS transcription factor | 2005 | This gene is a member of the Ets family of transcription factors and of the ternary complex factor (TCF) subfamily. Proteins of the TCF subfamily form a ternary complex by binding to the the serum response factor and the serum reponse element in the promoter of the c-fos proto-oncogene. The protein encoded by this gene is phosphorylated by the kinases, MAPK1 and MAPK8. Several transcript variants have been described for this gene. |
| NA | ENSG00000158715 | SLC45A3 | solute carrier family 45 member 3 | 85414 | NA |
| NA | ENSG00000069275 | NUCKS1 | nuclear casein kinase and cyclin-dependent kinase substrate 1 | 64710 | This gene encodes a nuclear protein that is highly conserved in vertebrates. The conserved regions of the protein contain several consensus phosphorylation sites for casein kinase II and cyclin-dependent kinases, two putative nuclear localization signals, and a basic DNA-binding domain. It is phosphorylated in vivo by Cdk1 during mitosis of the cell cycle. |
| TRUE | ENSG00000268313 | NA | NA | NA | NA |
| NA | ENSG00000117280 | RAB29 | RAB29, member RAS oncogene family | 8934 | NA |
| NA | ENSG00000133065 | SLC41A1 | solute carrier family 41 member 1 | 254428 | NA |
| NA | ENSG00000196550 | FAM72A | family with sequence similarity 72 member A | 729533 | NA |
| NA | ENSG00000196550 | FAM72D | family with sequence similarity 72 member D | 728833 | NA |
| NA | ENSG00000196550 | FAM72C | family with sequence similarity 72 member C | 554282 | NA |
| TRUE | ENSG00000163486 | NA | NA | NA | NA |
| TRUE | ENSG00000143466 | NA | NA | NA | NA |
| NA | ENSG00000143486 | EIF2D | eukaryotic translation initiation factor 2D | 1939 | This gene encodes a translation initiation factor involved in the recruitment and delivery of aminoacyl-tRNAs to the P-site of the eukaryotic ribosome in a GTP-independent manner. This gene was previously referred to as ligatin, but is now known to localize to the cytoplasm and localize and function with translation factors. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000143479 | DYRK3 | dual specificity tyrosine phosphorylation regulated kinase 3 | 8444 | This gene product belongs to the DYRK family of dual-specificity protein kinases that catalyze autophosphorylation on serine/threonine and tyrosine residues. The members of this family share structural similarity, however, differ in their substrate specificity, suggesting their involvement in different cellular functions. The encoded protein has been shown to autophosphorylate on tyrosine residue and catalyze phosphorylation of histones H3 and H2B in vitro. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000162889 | MAPKAPK2 | mitogen-activated protein kinase-activated protein kinase 2 | 9261 | This gene encodes a member of the Ser/Thr protein kinase family. This kinase is regulated through direct phosphorylation by p38 MAP kinase. In conjunction with p38 MAP kinase, this kinase is known to be involved in many cellular processes including stress and inflammatory responses, nuclear export, gene expression regulation and cell proliferation. Heat shock protein HSP27 was shown to be one of the substrates of this kinase in vivo. Two transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000182795 | C1orf116 | chromosome 1 open reading frame 116 | 79098 | NA |
| NA | ENSG00000196352 | CD55 | CD55 molecule (Cromer blood group) | 1604 | This gene encodes a glycoprotein involved in the regulation of the complement cascade. Binding of the encoded protein to complement proteins accelerates their decay, thereby disrupting the cascade and preventing damage to host cells. Antigens present on this protein constitute the Cromer blood group system (CROM). Alternative splicing results in multiple transcript variants. The predominant transcript variant encodes a membrane-bound protein, but alternatively spliced transcripts may produce soluble proteins. |
| NA | ENSG00000117322 | CR2 | complement component 3d receptor 2 | 1380 | This gene encodes a membrane protein, which functions as a receptor for Epstein-Barr virus (EBV) binding on B and T lymphocytes. Genetic variations in this gene are associated with susceptibility to systemic lupus erythematosus type 9 (SLEB9). Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197721 | CR1L | complement component 3b/4b receptor 1-like | 1379 | NA |
| NA | ENSG00000117335 | CD46 | CD46 molecule | 4179 | The protein encoded by this gene is a type I membrane protein and is a regulatory part of the complement system. The encoded protein has cofactor activity for inactivation of complement components C3b and C4b by serum factor I, which protects the host cell from damage by complement. In addition, the encoded protein can act as a receptor for the Edmonston strain of measles virus, human herpesvirus-6, and type IV pili of pathogenic Neisseria. Finally, the protein encoded by this gene may be involved in the fusion of the spermatozoa with the oocyte during fertilization. Mutations at this locus have been associated with susceptibility to hemolytic uremic syndrome. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000162757 | C1orf74 | chromosome 1 open reading frame 74 | 148304 | NA |
| NA | ENSG00000117595 | IRF6 | interferon regulatory factor 6 | 3664 | This gene encodes a member of the interferon regulatory transcription factor (IRF) family. Family members share a highly-conserved N-terminal helix-turn-helix DNA-binding domain and a less conserved C-terminal protein-binding domain. The encoded protein may be a transcriptional activator. Mutations in this gene can cause van der Woude syndrome and popliteal pterygium syndrome. Mutations in this gene are also associated with non-syndromic orofacial cleft type 6. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000117597 | DIEXF | digestive organ expansion factor homolog (zebrafish) | 27042 | NA |
| NA | ENSG00000143476 | DTL | denticleless E3 ubiquitin protein ligase homolog | 51514 | NA |
| NA | ENSG00000066027 | PPP2R5A | protein phosphatase 2 regulatory subunit B’, alpha | 5525 | The product of this gene belongs to the phosphatase 2A regulatory subunit B family. Protein phosphatase 2A is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The B regulatory subunit might modulate substrate selectivity and catalytic activity. This gene encodes an alpha isoform of the regulatory subunit B56 subfamily. Alternative transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000065600 | TMEM206 | transmembrane protein 206 | 55248 | NA |
| NA | ENSG00000117691 | NENF | neudesin neurotrophic factor | 29937 | This gene encodes a neurotrophic factor that may play a role in neuron differentiation and development. A pseudogene of this gene is found on chromosome 12. Alternate splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000162772 | ATF3 | activating transcription factor 3 | 467 | This gene encodes a member of the mammalian activation transcription factor/cAMP responsive element-binding (CREB) protein family of transcription factors. This gene is induced by a variety of signals, including many of those encountered by cancer cells, and is involved in the complex process of cellular stress response. Multiple transcript variants encoding different isoforms have been found for this gene. It is possible that alternative splicing of this gene may be physiologically important in the regulation of target genes. |
| NA | ENSG00000143499 | SMYD2 | SET and MYND domain containing 2 | 56950 | SET domain-containing proteins, such as SMYD2, catalyze lysine methylation (Brown et al., 2006 [PubMed 16805913]). |
| NA | ENSG00000117724 | CENPF | centromere protein F | 1063 | This gene encodes a protein that associates with the centromere-kinetochore complex. The protein is a component of the nuclear matrix during the G2 phase of interphase. In late G2 the protein associates with the kinetochore and maintains this association through early anaphase. It localizes to the spindle midzone and the intracellular bridge in late anaphase and telophase, respectively, and is thought to be subsequently degraded. The localization of this protein suggests that it may play a role in chromosome segregation during mitotis. It is thought to form either a homodimer or heterodimer. Autoantibodies against this protein have been found in patients with cancer or graft versus host disease. |
| NA | ENSG00000136636 | KCTD3 | potassium channel tetramerization domain containing 3 | 51133 | This gene encodes a member of the potassium channel tetramerization-domain containing (KCTD) protein family. Members of this protein family regulate the biophysical characteristics of ion channels. In mouse, this protein interacts with hyperpolarization-activated cyclic nucleotide-gated channel complex 3 and enhances its cell surface expression and current density. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196482 | ESRRG | estrogen related receptor gamma | 2104 | This gene encodes a member of the estrogen receptor-related receptor (ESRR) family, which belongs to the nuclear hormone receptor superfamily. All members of the ESRR family share an almost identical DNA binding domain, which is composed of two C4-type zinc finger motifs. The ESRR members are orphan nuclear receptors; they bind to the estrogen response element and steroidogenic factor 1 response element, and activate genes controlled by both response elements in the absence of any ligands. The ESRR family is closely related to the estrogen receptor (ER) family. They share target genes, co-regulators and promoters, and by targeting the same set of genes, the ESRRs seem to interfere with the ER-mediated estrogen response in various ways. It has been reported that the family member encoded by this gene functions as a transcriptional activator of DNA cytosine-5-methyltransferases 1 (Dnmt1) expression by direct binding to its response elements in the DNMT1 promoters, modulates cell proliferation and estrogen signaling in breast cancer, and negatively regulates bone morphogenetic protein 2-induced osteoblast differentiation and bone formation. Multiple alternatively spliced transcript variants have been identified, which mainly differ at the 5’ end and some of which encode protein isoforms differing in the N-terminal region. |
| NA | ENSG00000162814 | SPATA17 | spermatogenesis associated 17 | 128153 | NA |
| NA | ENSG00000067533 | RRP15 | ribosomal RNA processing 15 homolog | 51018 | This gene encodes a protein that co-purifies with human nucleoli. A similar protein in budding yeast is a component of pre-60S ribosomal particles, and is required for the early maturation steps of the 60S subunit. |
| NA | ENSG00000143353 | LYPLAL1 | lysophospholipase like 1 | 127018 | NA |
| NA | ENSG00000136628 | EPRS | glutamyl-prolyl-tRNA synthetase | 2058 | Aminoacyl-tRNA synthetases are a class of enzymes that charge tRNAs with their cognate amino acids. The protein encoded by this gene is a multifunctional aminoacyl-tRNA synthetase that catalyzes the aminoacylation of glutamic acid and proline tRNA species. Alternative splicing has been observed for this gene, but the full-length nature and biological validity of the variant have not been determined. |
| NA | ENSG00000067704 | IARS2 | isoleucyl-tRNA synthetase 2, mitochondrial | 55699 | Aminoacyl-tRNA synthetases catalyze the aminoacylation of tRNA by their cognate amino acid. Because of their central role in linking amino acids with nucleotide triplets contained in tRNAS, aminoacyl-tRNA synthetases are thought to be among the first proteins that appeared in evolution. Two forms of isoleucine-tRNA synthetase exist, a cytoplasmic form and a mitochondrial form. This gene encodes the mitochondrial isoleucine-tRNA synthetase which belongs to the class-I aminoacyl-tRNA synthetase family. |
| NA | ENSG00000118873 | RAB3GAP2 | RAB3 GTPase activating non-catalytic protein subunit 2 | 25782 | The protein encoded by this gene belongs to the RAB3 protein family, members of which are involved in regulated exocytosis of neurotransmitters and hormones. This protein forms the Rab3 GTPase-activating complex with RAB3GAP1, where it constitutes the regulatory subunit, whereas the latter functions as the catalytic subunit. This gene has the highest level of expression in the brain, consistent with it having a key role in neurodevelopment. Mutations in this gene are associated with Martsolf syndrome. |
| NA | ENSG00000162817 | C1orf115 | chromosome 1 open reading frame 115 | 79762 | NA |
| NA | ENSG00000117791 | MARC2 | mitochondrial amidoxime reducing component 2 | 54996 | The protein encoded by this gene is an enzyme found in the outer mitochondrial membrane that reduces N-hydroxylated substrates. The encoded protein uses molybdenum as a cofactor and cytochrome b5 type B and NADH cytochrome b5 reductase as accessory proteins. One type of substrate used is N-hydroxylated nucleotide base analogues, which can be toxic to a cell. Other substrates include N(omega)-hydroxy-L-arginine (NOHA) and amidoxime prodrugs, which are activated by the encoded enzyme. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000186205 | MARC1 | mitochondrial amidoxime reducing component 1 | 64757 | NA |
| NA | ENSG00000186063 | AIDA | axin interactor, dorsalization associated | 64853 | NA |
| NA | ENSG00000197520 | FAM177B | family with sequence similarity 177 member B | 400823 | NA |
| NA | ENSG00000154309 | DISP1 | dispatched RND transporter family member 1 | 84976 | The pattern of cellular proliferation and differentiation that leads to normal development of embryonic structures often depends upon the localized production of secreted protein signals. Cells surrounding the source of a particular signal respond in a graded manner according to the effective concentration of the signal, and this response produces the pattern of cell types constituting the mature structure. A novel segment-polarity gene known as dispatched has been identified in Drosophila and its protein product is required for normal Hedgehog (Hh) signaling. This gene is one of two human homologs of Drosophila dispatched and, based on sequence identity to its mouse counterpart, the encoded protein may play an essential role in Hh patterning activities in the early embryo. |
| NA | ENSG00000143502 | SUSD4 | sushi domain containing 4 | 55061 | NA |
| NA | ENSG00000162909 | CAPN2 | calpain 2 | 824 | The calpains, calcium-activated neutral proteases, are nonlysosomal, intracellular cysteine proteases. The mammalian calpains include ubiquitous, stomach-specific, and muscle-specific proteins. The ubiquitous enzymes consist of heterodimers with distinct large, catalytic subunits associated with a common small, regulatory subunit. This gene encodes the large subunit of the ubiquitous enzyme, calpain 2. Multiple heterogeneous transcriptional start sites in the 5’ UTR have been reported. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000143771 | CNIH4 | cornichon family AMPA receptor auxiliary protein 4 | 29097 | NA |
| NA | ENSG00000143786 | CNIH3 | cornichon family AMPA receptor auxiliary protein 3 | 149111 | NA |
| NA | ENSG00000143819 | EPHX1 | epoxide hydrolase 1 | 2052 | Epoxide hydrolase is a critical biotransformation enzyme that converts epoxides from the degradation of aromatic compounds to trans-dihydrodiols which can be conjugated and excreted from the body. Epoxide hydrolase functions in both the activation and detoxification of epoxides. Mutations in this gene cause preeclampsia, epoxide hydrolase deficiency or increased epoxide hydrolase activity. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000196187 | TMEM63A | transmembrane protein 63A | 9725 | NA |
| NA | ENSG00000143751 | SDE2 | SDE2 telomere maintenance homolog (S. pombe) | 163859 | NA |
| NA | ENSG00000163041 | H3F3A | H3 histone, family 3A | 3020 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene contains introns and its mRNA is polyadenylated, unlike most histone genes. The protein encoded is a replication-independent member of the histone H3 family. |
| NA | ENSG00000143799 | PARP1 | poly(ADP-ribose) polymerase 1 | 142 | This gene encodes a chromatin-associated enzyme, poly(ADP-ribosyl)transferase, which modifies various nuclear proteins by poly(ADP-ribosyl)ation. The modification is dependent on DNA and is involved in the regulation of various important cellular processes such as differentiation, proliferation, and tumor transformation and also in the regulation of the molecular events involved in the recovery of cell from DNA damage. In addition, this enzyme may be the site of mutation in Fanconi anemia, and may participate in the pathophysiology of type I diabetes. |
| NA | ENSG00000143801 | PSEN2 | presenilin 2 | 5664 | Alzheimer’s disease (AD) patients with an inherited form of the disease carry mutations in the presenilin proteins (PSEN1 or PSEN2) or the amyloid precursor protein (APP). These disease-linked mutations result in increased production of the longer form of amyloid-beta (main component of amyloid deposits found in AD brains). Presenilins are postulated to regulate APP processing through their effects on gamma-secretase, an enzyme that cleaves APP. Also, it is thought that the presenilins are involved in the cleavage of the Notch receptor such that, they either directly regulate gamma-secretase activity, or themselves act are protease enzymes. Two alternatively spliced transcript variants encoding different isoforms of PSEN2 have been identified. |
| NA | ENSG00000081692 | JMJD4 | jumonji domain containing 4 | 65094 | NA |
| NA | ENSG00000143761 | ARF1 | ADP ribosylation factor 1 | 375 | ADP-ribosylation factor 1 (ARF1) is a member of the human ARF gene family. The family members encode small guanine nucleotide-binding proteins that stimulate the ADP-ribosyltransferase activity of cholera toxin and play a role in vesicular trafficking as activators of phospholipase D. The gene products, including 6 ARF proteins and 11 ARF-like proteins, constitute a family of the RAS superfamily. The ARF proteins are categorized as class I (ARF1, ARF2 and ARF3), class II (ARF4 and ARF5) and class III (ARF6), and members of each class share a common gene organization. The ARF1 protein is localized to the Golgi apparatus and has a central role in intra-Golgi transport. Multiple alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000162910 | MRPL55 | mitochondrial ribosomal protein L55 | 128308 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. Multiple transcript variants encoding two different isoforms were identified through sequence analysis. |
| NA | ENSG00000181873 | IBA57 | IBA57 homolog, iron-sulfur cluster assembly | 200205 | The protein encoded by this gene localizes to the mitochondrion and is part of the iron-sulfur cluster assembly pathway. The encoded protein functions late in the biosynthesis of mitochondrial 4Fe-4S proteins. Defects in this gene have been associated with autosomal recessive spastic paraplegia-74 and with multiple mitochondrial dysfunctions syndrome-3. Two transcript variants encoding different isoforms have been found for this gene. The smaller isoform is not likely to be localized to the mitochondrion since it lacks the amino-terminal transit peptide. |
| NA | ENSG00000154358 | OBSCN | obscurin, cytoskeletal calmodulin and titin-interacting RhoGEF | 84033 | The obscurin gene spans more than 150 kb, contains over 80 exons and encodes a protein of approximately 720 kDa. The encoded protein contains 68 Ig domains, 2 fibronectin domains, 1 calcium/calmodulin-binding domain, 1 RhoGEF domain with an associated PH domain, and 2 serine-threonine kinase domains. This protein belongs to the family of giant sacromeric signaling proteins that includes titin and nebulin, and may have a role in the organization of myofibrils during assembly and may mediate interactions between the sarcoplasmic reticulum and myofibrils. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000154370 | TRIM11 | tripartite motif containing 11 | 81559 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. This protein localizes to the nucleus and the cytoplasm. Its function has not been identified. |
| NA | ENSG00000181218 | HIST3H2A | histone cluster 3, H2a | 92815 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H2A family. Transcripts from this gene contain a palindromic termination element. |
| NA | ENSG00000116574 | RHOU | ras homolog family member U | 58480 | This gene encodes a member of the Rho family of GTPases. This protein can activate PAK1 and JNK1, and can induce filopodium formation and stress fiber dissolution. It may also mediate the effects of WNT1 signaling in the regulation of cell morphology, cytoskeletal organization, and cell proliferation. A non-coding transcript variant of this gene results from naturally occurring read-through transcription between this locus and the neighboring DUSP5P (dual specificity phosphatase 5 pseudogene) locus. |
| NA | ENSG00000154429 | CCSAP | centriole, cilia and spindle associated protein | 126731 | NA |
| NA | ENSG00000143632 | ACTA1 | actin, alpha 1, skeletal muscle | 58 | The product encoded by this gene belongs to the actin family of proteins, which are highly conserved proteins that play a role in cell motility, structure and integrity. Alpha, beta and gamma actin isoforms have been identified, with alpha actins being a major constituent of the contractile apparatus, while beta and gamma actins are involved in the regulation of cell motility. This actin is an alpha actin that is found in skeletal muscle. Mutations in this gene cause nemaline myopathy type 3, congenital myopathy with excess of thin myofilaments, congenital myopathy with cores, and congenital myopathy with fiber-type disproportion, diseases that lead to muscle fiber defects. |
| NA | ENSG00000135776 | ABCB10 | ATP binding cassette subfamily B member 10 | 23456 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MDR/TAP subfamily. Members of the MDR/TAP subfamily are involved in multidrug resistance. The function of this mitochondrial protein is unknown. |
| NA | ENSG00000135763 | URB2 | URB2 ribosome biogenesis 2 homolog (S. cerevisiae) | 9816 | NA |
| NA | ENSG00000177614 | PGBD5 | piggyBac transposable element derived 5 | ENSG00000177614 | NA |
| NA | ENSG00000119280 | C1orf198 | chromosome 1 open reading frame 198 | 84886 | NA |
| NA | ENSG00000143643 | TTC13 | tetratricopeptide repeat domain 13 | 79573 | NA |
| NA | ENSG00000173409 | ARV1 | ARV1 homolog, fatty acid homeostasis modulator | 64801 | NA |
| NA | ENSG00000116906 | GNPAT | glyceronephosphate O-acyltransferase | 8443 | This gene encodes an enzyme located in the peroxisomal membrane which is essential to the synthesis of ether phospholipids. Mutations in this gene are associated with rhizomelic chondrodysplasia punctata. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000162946 | DISC1 | disrupted in schizophrenia 1 | 27185 | This gene encodes a protein with multiple coiled coil motifs which is located in the nucleus, cytoplasm and mitochondria. The protein is involved in neurite outgrowth and cortical development through its interaction with other proteins. This gene is disrupted in a t(1;11)(q42.1;q14.3) translocation which segregates with schizophrenia and related psychiatric disorders in a large Scottish family. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000116991 | SIPA1L2 | signal-induced proliferation-associated 1 like 2 | 57568 | This gene encodes a member of the signal-induced proliferation-associated 1 like family. Members of this family contain a GTPase activating domain, a PDZ domain and a C-terminal coiled-coil domain with a leucine zipper. A similar protein in rat acts as a GTPases for the small GTPase Rap. |
| NA | ENSG00000212916 | MAP10 | microtubule associated protein 10 | 54627 | NA |
| NA | ENSG00000135778 | NTPCR | nucleoside-triphosphatase, cancer-related | 84284 | NA |
| NA | ENSG00000135749 | PCNX2 | pecanex homolog 2 (Drosophila) | 80003 | NA |
| NA | ENSG00000135750 | KCNK1 | potassium two pore domain channel subfamily K member 1 | 3775 | This gene encodes one of the members of the superfamily of potassium channel proteins containing two pore-forming P domains. The product of this gene has not been shown to be a functional channel, however, it may require other non-pore-forming proteins for activity. |
| NA | ENSG00000183780 | SLC35F3 | solute carrier family 35 member F3 | 148641 | NA |
| NA | ENSG00000168275 | COA6 | cytochrome c oxidase assembly factor 6 | 388753 | This gene encodes a member of the cytochrome c oxidase subunit 6B family. The encoded protein associates with cytochrome c oxidase may act has an cytochrome c oxidase mitochondrial respiratory complex VI assembly factor. Mutations in this gene may be associated with fatal infantile cardiomyopathy. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000173726 | TOMM20 | translocase of outer mitochondrial membrane 20 | 9804 | NA |
| NA | ENSG00000188739 | RBM34 | RNA binding motif protein 34 | 23029 | NA |
| NA | ENSG00000152904 | GGPS1 | geranylgeranyl diphosphate synthase 1 | 9453 | This gene is a member of the prenyltransferase family and encodes a protein with geranylgeranyl diphosphate (GGPP) synthase activity. The enzyme catalyzes the synthesis of GGPP from farnesyl diphosphate and isopentenyl diphosphate. GGPP is an important molecule responsible for the C20-prenylation of proteins and for the regulation of a nuclear hormone receptor. Alternate transcriptional splice variants, both protein-coding and non-protein-coding, have been found for this gene. |
| NA | ENSG00000162885 | B3GALNT2 | beta-1,3-N-acetylgalactosaminyltransferase 2 | 148789 | This gene encodes a member of the glycosyltransferase 31 family. The encoded protein synthesizes GalNAc:beta-1,3GlcNAc, a novel carbohydrate structure, on N- and O-glycans. Alternatively spliced transcript variants that encode different isoforms have been described. |
| NA | ENSG00000116962 | NID1 | nidogen 1 | 4811 | This gene encodes a member of the nidogen family of basement membrane glycoproteins. The protein interacts with several other components of basement membranes, and may play a role in cell interactions with the extracellular matrix. |
| NA | ENSG00000077585 | GPR137B | G protein-coupled receptor 137B | 7107 | NA |
| NA | ENSG00000086619 | ERO1B | endoplasmic reticulum oxidoreductase beta | 56605 | NA |
| NA | ENSG00000186197 | EDARADD | EDAR-associated death domain | 128178 | This gene was identified by its association with ectodermal dysplasia, a genetic disorder characterized by defective development of hair, teeth, and eccrine sweat glands. The protein encoded by this gene is a death domain-containing protein, and is found to interact with EDAR, a death domain receptor known to be required for the development of hair, teeth and other ectodermal derivatives. This protein and EDAR are coexpressed in epithelial cells during the formation of hair follicles and teeth. Through its interaction with EDAR, this protein acts as an adaptor, and links the receptor to downstream signaling pathways. Two alternatively spliced transcript variants of this gene encoding distinct isoforms have been reported. |
| NA | ENSG00000116977 | LGALS8 | lectin, galactoside-binding, soluble, 8 | 3964 | This gene encodes a member of the galectin family. Galectins are beta-galactoside-binding animal lectins with conserved carbohydrate recognition domains. The galectins have been implicated in many essential functions including development, differentiation, cell-cell adhesion, cell-matrix interaction, growth regulation, apoptosis, and RNA splicing. This gene is widely expressed in tumoral tissues and seems to be involved in integrin-like cell interactions. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000077522 | ACTN2 | actinin alpha 2 | 88 | Alpha actinins belong to the spectrin gene superfamily which represents a diverse group of cytoskeletal proteins, including the alpha and beta spectrins and dystrophins. Alpha actinin is an actin-binding protein with multiple roles in different cell types. In nonmuscle cells, the cytoskeletal isoform is found along microfilament bundles and adherens-type junctions, where it is involved in binding actin to the membrane. In contrast, skeletal, cardiac, and smooth muscle isoforms are localized to the Z-disc and analogous dense bodies, where they help anchor the myofibrillar actin filaments. This gene encodes a muscle-specific, alpha actinin isoform that is expressed in both skeletal and cardiac muscles. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198626 | RYR2 | ryanodine receptor 2 | 6262 | This gene encodes a ryanodine receptor found in cardiac muscle sarcoplasmic reticulum. The encoded protein is one of the components of a calcium channel, composed of a tetramer of the ryanodine receptor proteins and a tetramer of FK506 binding protein 1B proteins, that supplies calcium to cardiac muscle. Mutations in this gene are associated with stress-induced polymorphic ventricular tachycardia and arrhythmogenic right ventricular dysplasia. |
| NA | ENSG00000270188 | MTRNR2L11 | MT-RNR2-like 11 (pseudogene) | ENSG00000270188 | NA |
| NA | ENSG00000133019 | CHRM3 | cholinergic receptor muscarinic 3 | 1131 | The muscarinic cholinergic receptors belong to a larger family of G protein-coupled receptors. The functional diversity of these receptors is defined by the binding of acetylcholine and includes cellular responses such as adenylate cyclase inhibition, phosphoinositide degeneration, and potassium channel mediation. Muscarinic receptors influence many effects of acetylcholine in the central and peripheral nervous system. The muscarinic cholinergic receptor 3 controls smooth muscle contraction and its stimulation causes secretion of glandular tissue. |
| NA | ENSG00000091483 | FH | fumarate hydratase | 2271 | The protein encoded by this gene is an enzymatic component of the tricarboxylic acid (TCA) cycle, or Krebs cycle, and catalyzes the formation of L-malate from fumarate. It exists in both a cytosolic form and an N-terminal extended form, differing only in the translation start site used. The N-terminal extended form is targeted to the mitochondrion, where the removal of the extension generates the same form as in the cytoplasm. It is similar to some thermostable class II fumarases and functions as a homotetramer. Mutations in this gene can cause fumarase deficiency and lead to progressive encephalopathy. |
| NA | ENSG00000203668 | CHML | choroideremia-like (Rab escort protein 2) | 1122 | The product of the CHML gene supports geranylgeranylation of most Rab proteins and may substitute for REP-1 in tissues other than retina. CHML is localized close to the gene for Usher syndrome type II. |
| NA | ENSG00000180287 | PLD5 | phospholipase D family member 5 | 200150 | NA |
| NA | ENSG00000054282 | SDCCAG8 | serologically defined colon cancer antigen 8 | 10806 | This gene encodes a centrosome associated protein. This protein may be involved in organizing the centrosome during interphase and mitosis. Mutations in this gene are associated with retinal-renal ciliopathy. |
| NA | ENSG00000117020 | AKT3 | v-akt murine thymoma viral oncogene homolog 3 | 10000 | The protein encoded by this gene is a member of the AKT, also called PKB, serine/threonine protein kinase family. AKT kinases are known to be regulators of cell signaling in response to insulin and growth factors. They are involved in a wide variety of biological processes including cell proliferation, differentiation, apoptosis, tumorigenesis, as well as glycogen synthesis and glucose uptake. This kinase has been shown to be stimulated by platelet-derived growth factor (PDGF), insulin, and insulin-like growth factor 1 (IGF1). Alternatively splice transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000179456 | ZBTB18 | zinc finger and BTB domain containing 18 | 10472 | This gene encodes a C2H2-type zinc finger protein which acts a transcriptional repressor of genes involved in neuronal development. The encoded protein recognizes a specific sequence motif and recruits components of chromatin to target genes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000121644 | DESI2 | desumoylating isopeptidase 2 | 51029 | NA |
| NA | ENSG00000203667 | COX20 | COX20 cytochrome c oxidase assembly factor | 116228 | This gene encodes a protein that plays a role in the assembly of cytochrome C oxidase, an important component of the respiratory pathway. It contains two transmembrane helices and localizes to the mitochondrial membrane. Mutations in this gene can cause mitochondrial complex IV deficiency, which results in ataxia and muscle hypotonia. There are multiple pseudogenes for this gene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000153187 | HNRNPU | heterogeneous nuclear ribonucleoprotein U (scaffold attachment factor A) | 3192 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they form complexes with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene contains a RNA binding domain and scaffold-associated region (SAR)-specific bipartite DNA-binding domain. This protein is also thought to be involved in the packaging of hnRNA into large ribonucleoprotein complexes. During apoptosis, this protein is cleaved in a caspase-dependent way. Cleavage occurs at the SALD site, resulting in a loss of DNA-binding activity and a concomitant detachment of this protein from nuclear structural sites. But this cleavage does not affect the function of the encoded protein in RNA metabolism. At least two alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000188295 | ZNF669 | zinc finger protein 669 | 79862 | NA |
| NA | ENSG00000175137 | SH3BP5L | SH3-binding domain protein 5 like | 80851 | NA |
| NA | ENSG00000171161 | ZNF672 | zinc finger protein 672 | 79894 | NA |
| NA | ENSG00000185220 | PGBD2 | piggyBac transposable element derived 2 | 267002 | The piggyBac family of proteins, found in diverse animals, are transposases related to the transposase of the canonical piggyBac transposon from the moth, Trichoplusia ni. This family also includes genes in several genomes, including human, that appear to have been derived from the piggyBac transposons. This gene belongs to the subfamily of piggyBac transposable element derived (PGBD) genes. The PGBD proteins appear to be novel, with no obvious relationship to other transposases, or other known protein families. The exact function of this gene is not known. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000015171 | ZMYND11 | zinc finger MYND-type containing 11 | 10771 | The protein encoded by this gene was first identified by its ability to bind the adenovirus E1A protein. The protein localizes to the nucleus. It functions as a transcriptional repressor, and expression of E1A inhibits this repression. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000151240 | DIP2C | disco interacting protein 2 homolog C | 22982 | This gene encodes a member of the disco-interacting protein homolog 2 family. The protein shares strong similarity with a Drosophila protein which interacts with the transcription factor disco and is expressed in the nervous system. |
| NA | ENSG00000107929 | LARP4B | La ribonucleoprotein domain family member 4B | 23185 | This gene encodes a member of an evolutionarily conserved protein family implicated in RNA metabolism and translation. Members of this family are characterized by the presence of an La motif, which is often located adjacent to one or more RNA recognition motifs (RRM). Together, the two motifs constitute the functional region of the protein and enable its interaction with the RNA substrate. This protein family is divided into five sub-families: the genuine La proteins and four La-related protein (LARP) sub-families. The protein encoded by this gene belongs to LARP sub-family 4. It is a cytoplasmic protein that may play a stimulatory role in translation. |
| NA | ENSG00000107937 | GTPBP4 | GTP binding protein 4 | 23560 | GTP-binding proteins are GTPases and function as molecular switches that can flip between two states: active, when GTP is bound, and inactive, when GDP is bound. ‘Active’ in this context usually means that the molecule acts as a signal to trigger other events in the cell. When an extracellular ligand binds to a G-protein-linked receptor, the receptor changes its conformation and switches on the trimeric G proteins that associate with it by causing them to eject their GDP and replace it with GTP. The switch is turned off when the G protein hydrolyzes its own bound GTP, converting it back to GDP. But before that occurs, the active protein has an opportunity to diffuse away from the receptor and deliver its message for a prolonged period to its downstream target. |
| NA | ENSG00000067064 | IDI1 | isopentenyl-diphosphate delta isomerase 1 | 3422 | IDI1 encodes a peroxisomally-localized enzyme that catalyzes the interconversion of isopentenyl diphosphate (IPP) to its highly electrophilic isomer, dimethylallyl diphosphate (DMAPP), which are the substrates for the successive reaction that results in the synthesis of farnesyl diphosphate and, ultimately, cholesterol. It has been shown in peroxisomal deficiency diseases such as Zellweger syndrome and neonatal adrenoleukodystrophy that there is reduction in IPP isomerase activity. |
| NA | ENSG00000047056 | WDR37 | WD repeat domain 37 | 22884 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. |
| NA | ENSG00000067057 | PFKP | phosphofructokinase, platelet | 5214 | The PFKP gene encodes the platelet isoform of phosphofructokinase (PFK) (ATP:D-fructose-6-phosphate-1-phosphotransferase, EC 2.7.1.11). PFK catalyzes the irreversible conversion of fructose-6-phosphate to fructose-1,6-bisphosphate and is a key regulatory enzyme in glycolysis. The PFKP gene, which maps to chromosome 10p, is also expressed in fibroblasts. See also the muscle (PFKM; MIM 610681) and liver (PFKL; MIM 171860) isoforms of phosphofructokinase, which map to chromosomes 12q13 and 21q22, respectively. Vora (1981) [PubMed 6451249] determined that full tetrameric phophofructokinase enzyme expressed in platelets can be composed of subunits P4, P3L, and P2L2. |
| NA | ENSG00000107959 | PITRM1 | pitrilysin metallopeptidase 1 | 10531 | NA |
| NA | ENSG00000067082 | KLF6 | Kruppel-like factor 6 | 1316 | This gene encodes a member of the Kruppel-like family of transcription factors. The zinc finger protein is a transcriptional activator, and functions as a tumor suppressor. Multiple transcript variants encoding different isoforms have been found for this gene, some of which are implicated in carcinogenesis. |
| NA | ENSG00000196139 | AKR1C3 | aldo-keto reductase family 1, member C3 | 8644 | This gene encodes a member of the aldo/keto reductase superfamily, which consists of more than 40 known enzymes and proteins. These enzymes catalyze the conversion of aldehydes and ketones to their corresponding alcohols by utilizing NADH and/or NADPH as cofactors. The enzymes display overlapping but distinct substrate specificity. This enzyme catalyzes the reduction of prostaglandin (PG) D2, PGH2 and phenanthrenequinone (PQ), and the oxidation of 9alpha,11beta-PGF2 to PGD2. It may play an important role in the pathogenesis of allergic diseases such as asthma, and may also have a role in controlling cell growth and/or differentiation. This gene shares high sequence identity with three other gene members and is clustered with those three genes at chromosome 10p15-p14. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000173848 | NET1 | neuroepithelial cell transforming 1 | 10276 | This gene is part of the family of Rho guanine nucleotide exchange factors. Members of this family activate Rho proteins by catalyzing the exchange of GDP for GTP. The protein encoded by this gene interacts with RhoA within the cell nucleus and may play a role in repairing DNA damage after ionizing radiation. Pseudogenes of this gene are located on the long arms of chromosomes 1, 7 and 18. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000196372 | ASB13 | ankyrin repeat and SOCS box containing 13 | 79754 | The protein encoded by this gene is a member of the ankyrin repeat and SOCS box-containing (ASB) family of proteins. They contain ankyrin repeat sequence and a SOCS box domain. The SOCS box serves to couple suppressor of cytokine signalling (SOCS) proteins and their binding partners with the elongin B and C complex, possibly targeting them for degradation. Multiple alternatively spliced transcript variants, both protein-coding and not protein-coding, have been described for this gene. |
| NA | ENSG00000108021 | FAM208B | family with sequence similarity 208 member B | 54906 | NA |
| NA | ENSG00000057608 | GDI2 | GDP dissociation inhibitor 2 | 2665 | GDP dissociation inhibitors are proteins that regulate the GDP-GTP exchange reaction of members of the rab family, small GTP-binding proteins of the ras superfamily, that are involved in vesicular trafficking of molecules between cellular organelles. GDIs slow the rate of dissociation of GDP from rab proteins and release GDP from membrane-bound rabs. GDI2 is ubiquitously expressed. The GDI2 gene contains many repetitive elements indicating that it may be prone to inversion/deletion rearrangements. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000134461 | ANKRD16 | ankyrin repeat domain 16 | 54522 | NA |
| NA | ENSG00000134452 | FBXO18 | F-box protein, helicase, 18 | 84893 | This gene encodes a member of the F-box protein family, members of which are characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into three classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbx class. It contains an F-box motif and seven conserved helicase motifs, and has both DNA-dependent ATPase and DNA unwinding activities. Alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000134453 | RBM17 | RNA binding motif protein 17 | 84991 | This gene encodes an RNA binding protein. The encoded protein is part of the spliceosome complex and functions in the second catalytic step of mRNA splicing. Alternatively spliced transcript variants have been described. Related pseudogenes exist on chromosomes 9 and 15. |
| NA | ENSG00000170525 | PFKFB3 | 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 3 | 5209 | The protein encoded by this gene belongs to a family of bifunctional proteins that are involved in both the synthesis and degradation of fructose-2,6-bisphosphate, a regulatory molecule that controls glycolysis in eukaryotes. The encoded protein has a 6-phosphofructo-2-kinase activity that catalyzes the synthesis of fructose-2,6-bisphosphate (F2,6BP), and a fructose-2,6-biphosphatase activity that catalyzes the degradation of F2,6BP. This protein is required for cell cycle progression and prevention of apoptosis. It functions as a regulator of cyclin-dependent kinase 1, linking glucose metabolism to cell proliferation and survival in tumor cells. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000065675 | PRKCQ | protein kinase C theta | 5588 | Protein kinase C (PKC) is a family of serine- and threonine-specific protein kinases that can be activated by calcium and the second messenger diacylglycerol. PKC family members phosphorylate a wide variety of protein targets and are known to be involved in diverse cellular signaling pathways. PKC family members also serve as major receptors for phorbol esters, a class of tumor promoters. Each member of the PKC family has a specific expression profile and is believed to play a distinct role. The protein encoded by this gene is one of the PKC family members. It is a calcium-independent and phospholipid-dependent protein kinase. This kinase is important for T-cell activation. It is required for the activation of the transcription factors NF-kappaB and AP-1, and may link the T cell receptor (TCR) signaling complex to the activation of the transcription factors. |
| NA | ENSG00000198879 | SFMBT2 | Scm-like with four mbt domains 2 | 57713 | NA |
| NA | ENSG00000123243 | ITIH5 | inter-alpha-trypsin inhibitor heavy chain family member 5 | 80760 | This gene encodes a heavy chain component of one of the inter-alpha-trypsin inhibitor (ITI) family members. ITI proteins are involved in extracellular matrix stabilization and in the prevention of tumor metastasis. They are also structurally related plasma serine protease inhibitors and are composed of a light chain and varying numbers of heavy chains. This family member is thought to function as a tumor suppressor in breast and thyroid cancers. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000151657 | KIN | Kin17 DNA and RNA binding protein | 22944 | The protein encoded by this gene is a nuclear protein that forms intranuclear foci during proliferation and is redistributed in the nucleoplasm during the cell cycle. Short-wave ultraviolet light provokes the relocalization of the protein, suggesting its participation in the cellular response to DNA damage. Originally selected based on protein-binding with RecA antibodies, the mouse protein presents a limited similarity with a functional domain of the bacterial RecA protein, a characteristic shared by this human ortholog. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000165629 | ATP5C1 | ATP synthase, H+ transporting, mitochondrial F1 complex, gamma polypeptide 1 | 509 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. The catalytic portion of mitochondrial ATP synthase consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and a single representative of the other 3. The proton channel consists of three main subunits (a, b, c). This gene encodes the gamma subunit of the catalytic core. Alternatively spliced transcript variants encoding different isoforms have been identified. This gene also has a pseudogene on chromosome 14. |
| NA | ENSG00000165632 | TAF3 | TATA-box binding protein associated factor 3 | 83860 | The highly conserved RNA polymerase II transcription factor TFIID (see TAF1; MIM 313650) comprises the TATA box-binding protein (TBP; MIM 600075) and a set of TBP-associated factors (TAFs), including TAF3. TAFs contribute to promoter recognition and selectivity and act as antiapoptotic factors (Gangloff et al., 2001 [PubMed 11438666]). |
| NA | ENSG00000148429 | USP6NL | USP6 N-terminal like | 9712 | NA |
| NA | ENSG00000134463 | ECHDC3 | enoyl-CoA hydratase domain containing 3 | 79746 | NA |
| NA | ENSG00000148426 | PROSER2 | proline and serine rich 2 | 254427 | NA |
| NA | ENSG00000151461 | UPF2 | UPF2 regulator of nonsense transcripts homolog (yeast) | 26019 | This gene encodes a protein that is part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. mRNA surveillance detects exported mRNAs with truncated open reading frames and initiates nonsense-mediated mRNA decay (NMD). When translation ends upstream from the last exon-exon junction, this triggers NMD to degrade mRNAs containing premature stop codons. This protein is located in the perinuclear area. It interacts with translation release factors and the proteins that are functional homologs of yeast Upf1p and Upf3p. Two splice variants have been found for this gene; both variants encode the same protein. |
| NA | ENSG00000181192 | DHTKD1 | dehydrogenase E1 and transketolase domain containing 1 | 55526 | This gene encodes a component of a mitochondrial 2-oxoglutarate-dehydrogenase-complex-like protein involved in the degradation pathways of several amino acids, including lysine. Mutations in this gene are associated with 2-aminoadipic 2-oxoadipic aciduria and Charcot-Marie-Tooth Disease Type 2Q. |
| NA | ENSG00000065665 | SEC61A2 | Sec61 translocon alpha 2 subunit | 55176 | The protein encoded by this gene has similarity to a mouse protein which suggests a role in the insertion of secretory and membrane polypeptides into the endoplasmic reticulum. It may also be required for the assembly of membrane and secretory proteins. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000151465 | CDC123 | cell division cycle 123 | 8872 | NA |
| NA | ENSG00000183049 | CAMK1D | calcium/calmodulin dependent protein kinase ID | 57118 | This gene is a member of the calcium/calmodulin-dependent protein kinase 1 family, a subfamily of the serine/threonine kinases. The encoded protein is a component of the calcium-regulated calmodulin-dependent protein kinase cascade. It has been associated with multiple processes including regulation of granulocyte function, activation of CREB-dependent gene transcription, aldosterone synthesis, differentiation and activation of neutrophil cells, and apoptosis of erythroleukemia cells. Alternatively spliced transcript variants encoding different isoforms of this gene have been described. |
| NA | ENSG00000123240 | OPTN | optineurin | 10133 | This gene encodes the coiled-coil containing protein optineurin. Optineurin may play a role in normal-tension glaucoma and adult-onset primary open angle glaucoma. Optineurin interacts with adenovirus E3-14.7K protein and may utilize tumor necrosis factor-alpha or Fas-ligand pathways to mediate apoptosis, inflammation or vasoconstriction. Optineurin may also function in cellular morphogenesis and membrane trafficking, vesicle trafficking, and transcription activation through its interactions with the RAB8, huntingtin, and transcription factor IIIA proteins. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000065328 | MCM10 | minichromosome maintenance 10 replication initiation factor | 55388 | The protein encoded by this gene is one of the highly conserved mini-chromosome maintenance proteins (MCM) that are involved in the initiation of eukaryotic genome replication. The hexameric protein complex formed by MCM proteins is a key component of the pre-replication complex (pre-RC) and it may be involved in the formation of replication forks and in the recruitment of other DNA replication related proteins. This protein can interact with MCM2 and MCM6, as well as with the origin recognition protein ORC2. It is regulated by proteolysis and phosphorylation in a cell cycle-dependent manner. Studies of a similar protein in Xenopus suggest that the chromatin binding of this protein at the onset of DNA replication is after pre-RC assembly and before origin unwinding. Alternatively spliced transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000165623 | UCMA | upper zone of growth plate and cartilage matrix associated | 221044 | This gene encodes a chondrocyte-specific, highly charged protein that is abundantly expressed in the upper immature zone of fetal and juvenile epiphyseal cartilage. The encoded protein undergoes proteolytic processing to generate a mature protein that is secreted into the extracellular matrix. The glutamic acid residues in the encoded protein undergo gamma carboxylation in a vitamin K-dependent manner. Undercarboxylation of the encoded protein is associated with osteoarthritis in humans. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000107537 | PHYH | phytanoyl-CoA 2-hydroxylase | 5264 | This gene is a member of the PhyH family and encodes a peroxisomal protein that is involved in the alpha-oxidation of 3-methyl branched fatty acids. Specifically, this protein converts phytanoyl-CoA to 2-hydroxyphytanoyl-CoA. Mutations in this gene have been associated with Refsum disease (RD) and deficient protein activity has been associated with Zellweger syndrome and rhizomelic chondrodysplasia punctata. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000086475 | SEPHS1 | selenophosphate synthetase 1 | 22929 | This gene encodes an enzyme that synthesizes selenophosphate from selenide and ATP. Selenophosphate is the selenium donor used to synthesize selenocysteine, which is co-translationally incorporated into selenoproteins at in-frame UGA codons. |
| NA | ENSG00000165626 | BEND7 | BEN domain containing 7 | 222389 | NA |
| NA | ENSG00000165630 | PRPF18 | pre-mRNA processing factor 18 | 8559 | Pre-mRNA splicing occurs in 2 sequential transesterification steps. The protein encoded by this gene is found to be essential for the catalytic step II in pre-mRNA splicing process. It is found in the spliceosome, and contains seven WD repeats, which function in protein-protein interactions. This protein has a sequence similarity to the yeast splicing factor Prp18. |
| NA | ENSG00000239665 | RP11-295P9.3 | NA | ENSG00000239665 | NA |
| NA | ENSG00000065809 | FAM107B | family with sequence similarity 107 member B | 83641 | NA |
| NA | ENSG00000187522 | HSPA14 | heat shock protein family A (Hsp70) member 14 | 51182 | NA |
| NA | ENSG00000152455 | SUV39H2 | suppressor of variegation 3-9 homolog 2 | 79723 | NA |
| NA | ENSG00000152457 | DCLRE1C | DNA cross-link repair 1C | 64421 | This gene encodes a nuclear protein that is involved in V(D)J recombination and DNA repair. The encoded protein has single-strand-specific 5’-3’ exonuclease activity; it also exhibits endonuclease activity on 5’ and 3’ overhangs and hairpins. The protein also functions in the regulation of the cell cycle in response to DNA damage. Mutations in this gene can cause Athabascan-type severe combined immunodeficiency (SCIDA) and Omenn syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000176244 | ACBD7 | acyl-CoA binding domain containing 7 | 414149 | NA |
| NA | ENSG00000152464 | RPP38 | ribonuclease P/MRP 38kDa subunit | 10557 | NA |
| NA | ENSG00000152465 | NMT2 | N-myristoyltransferase 2 | 9397 | This gene encodes one of two N-myristoyltransferase proteins. N-terminal myristoylation is a lipid modification that is involved in regulating the function and localization of signaling proteins. The encoded protein catalyzes the addition of a myristoyl group to the N-terminal glycine residue of many signaling proteins, including the human immunodeficiency virus type 1 (HIV-1) proteins, Gag and Nef. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000148468 | FAM171A1 | family with sequence similarity 171 member A1 | 221061 | NA |
| NA | ENSG00000148481 | FAM188A | family with sequence similarity 188 member A | 80013 | The protein encoded by this gene contains a caspase-associated recruitment domain and may function in apoptosis. It has been identified as a tumor suppressor in lung and gastric cancers, and a polymorphism in the gene may be associated with gastric cancer risk. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000165983 | PTER | phosphotriesterase related | 9317 | NA |
| NA | ENSG00000148484 | RSU1 | Ras suppressor protein 1 | 6251 | This gene encodes a protein that is involved in the Ras signal transduction pathway, growth inhibition, and nerve-growth factor induced differentiation processes, as determined in mouse and human cell line studies. In mouse, the encoded protein was initially isolated based on its ability to inhibit v-Ras transformation. Multiple alternatively spliced transcript variants for this gene have been reported; one of these variants was found only in glioma tumors. |
| NA | ENSG00000107614 | TRDMT1 | tRNA aspartic acid methyltransferase 1 | 1787 | This gene encodes a protein responsible for the methylation of aspartic acid transfer RNA, specifically at the cytosine-38 residue in the anticodon loop. This enzyme also possesses residual DNA-(cytosine-C5) methyltransferase activity. While similar in sequence and structure to DNA cytosine methyltransferases, this gene is distinct and highly conserved in its function among taxa. |
| NA | ENSG00000026025 | VIM | vimentin | 7431 | This gene encodes a member of the intermediate filament family. Intermediate filamentents, along with microtubules and actin microfilaments, make up the cytoskeleton. The protein encoded by this gene is responsible for maintaining cell shape, integrity of the cytoplasm, and stabilizing cytoskeletal interactions. It is also involved in the immune response, and controls the transport of low-density lipoprotein (LDL)-derived cholesterol from a lysosome to the site of esterification. It functions as an organizer of a number of critical proteins involved in attachment, migration, and cell signaling. Mutations in this gene causes a dominant, pulverulent cataract. |
| NA | ENSG00000165996 | HACD1 | 3-hydroxyacyl-CoA dehydratase 1 | 9200 | The protein encoded by this gene contains a characteristic catalytic motif of the protein tyrosine phosphatases (PTPs) family. The PTP motif of this protein has the highly conserved arginine residue replaced by a proline residue; thus it may represent a distinct class of PTPs. Members of the PTP family are known to be signaling molecules that regulate a variety of cellular processes. This gene was preferentially expressed in both adult and fetal heart. A much lower expression level was detected in skeletal and smooth muscle tissues, and no expression was observed in other tissues. The tissue specific expression in the developing and adult heart suggests a role in regulating cardiac development and differentiation. |
| NA | ENSG00000136738 | STAM | signal transducing adaptor molecule | 8027 | This gene encodes a member of the signal-transducing adaptor molecule family. These proteins mediate downstream signaling of cytokine receptors and also play a role in ER to Golgi trafficking by interacting with the coat protein II complex. The encoded protein also associates with hepatocyte growth factor-regulated substrate to form the endosomal sorting complex required for transport-0 (ESCRT-0), which sorts ubiquitinated membrane proteins to the ESCRT-1 complex for lysosomal degradation. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000165995 | CACNB2 | calcium voltage-gated channel auxiliary subunit beta 2 | 783 | This gene encodes a subunit of a voltage-dependent calcium channel protein that is a member of the voltage-gated calcium channel superfamily. The gene product was originally identified as an antigen target in Lambert-Eaton myasthenic syndrome, an autoimmune disorder. Mutations in this gene are associated with Brugada syndrome. Alternatively spliced variants encoding different isoforms have been described. |
| NA | ENSG00000165997 | ARL5B | ADP ribosylation factor like GTPase 5B | 221079 | ARL5B (ARL8) belongs to a family of proteins that are structurally similar to ADP-ribosylation factors (ARFs; see MIM 103180). ARLs and ARFs are part of the RAS superfamily of regulatory GTPases. |
| NA | ENSG00000204682 | CASC10 | cancer susceptibility candidate 10 | 399726 | NA |
| NA | ENSG00000180592 | SKIDA1 | SKI/DACH domain containing 1 | 387640 | NA |
| NA | ENSG00000078403 | MLLT10 | myeloid/lymphoid or mixed-lineage leukemia; translocated to, 10 | 8028 | This gene encodes a transcription factor and has been identified as a partner gene involved in several chromosomal rearrangements resulting in various leukemias. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000136770 | DNAJC1 | DnaJ heat shock protein family (Hsp40) member C1 | 64215 | NA |
| NA | ENSG00000168283 | BMI1 | BMI1 proto-oncogene, polycomb ring finger | 648 | This gene encodes a ring finger protein that is major component of the polycomb group complex 1 (PRC1). This complex functions through chromatin remodeling as an essential epigenetic repressor of multiple regulatory genes involved in embryonic development and self-renewal in somatic stem cells. This protein also plays a central role in DNA damage repair. This gene is an oncogene and aberrant expression is associated with numerous cancers and is associated with resistance to certain chemotherapies. A pseudogene of this gene is found on chromosome X. Read-through transcription also exists between this gene and the upstream COMM domain containing 3 (COMMD3) gene. |
| NA | ENSG00000150867 | PIP4K2A | phosphatidylinositol-5-phosphate 4-kinase, type II, alpha | 5305 | Phosphatidylinositol-5,4-bisphosphate, the precursor to second messengers of the phosphoinositide signal transduction pathways, is thought to be involved in the regulation of secretion, cell proliferation, differentiation, and motility. The protein encoded by this gene is one of a family of enzymes capable of catalyzing the phosphorylation of phosphatidylinositol-5-phosphate on the fourth hydroxyl of the myo-inositol ring to form phosphatidylinositol-5,4-bisphosphate. The amino acid sequence of this enzyme does not show homology to other kinases, but the recombinant protein does exhibit kinase activity. This gene is a member of the phosphatidylinositol-5-phosphate 4-kinase family. |
| NA | ENSG00000165312 | OTUD1 | OTU deubiquitinase 1 | 220213 | Deubiquitinating enzymes (DUBs; see MIM 603478) are proteases that specifically cleave ubiquitin (MIM 191339) linkages, negating the action of ubiquitin ligases. DUBA7 belongs to a DUB subfamily characterized by an ovarian tumor (OTU) domain. |
| NA | ENSG00000120549 | KIAA1217 | KIAA1217 | 56243 | NA |
| NA | ENSG00000107863 | ARHGAP21 | Rho GTPase activating protein 21 | 57584 | ARHGAP21 functions preferentially as a GTPase-activating protein (GAP) for CDC42 (MIM 116952) and regulates the ARP2/3 complex (MIM 604221) and F-actin dynamics at the Golgi through control of CDC42 activity (Dubois et al., 2005 [PubMed 15793564]). |
| NA | ENSG00000099256 | PRTFDC1 | phosphoribosyl transferase domain containing 1 | 56952 | NA |
| NA | ENSG00000185875 | THNSL1 | threonine synthase like 1 | 79896 | NA |
| NA | ENSG00000095777 | MYO3A | myosin IIIA | 53904 | The protein encoded by this gene belongs to the myosin superfamily. Myosins are actin-dependent motor proteins and are categorized into conventional myosins (class II) and unconventional myosins (classes I and III through XV) based on their variable C-terminal cargo-binding domains. Class III myosins, such as this one, have a kinase domain N-terminal to the conserved N-terminal motor domains and are expressed in photoreceptors. The protein encoded by this gene plays an important role in hearing in humans. Three different recessive, loss of function mutations in the encoded protein have been shown to cause nonsyndromic progressive hearing loss. Expression of this gene is highly restricted, with the strongest expression in retina and cochlea. |
| NA | ENSG00000148459 | PDSS1 | prenyl (decaprenyl) diphosphate synthase, subunit 1 | 23590 | The protein encoded by this gene is an enzyme that elongates the prenyl side-chain of coenzyme Q, or ubiquinone, one of the key elements in the respiratory chain. The gene product catalyzes the formation of all trans-polyprenyl pyrophosphates from isopentyl diphosphate in the assembly of polyisoprenoid side chains, the first step in coenzyme Q biosynthesis. The protein may be peripherally associated with the inner mitochondrial membrane, though no transit peptide has been definitively identified to date. Defects in this gene are a cause of coenzyme Q10 deficiency. |
| NA | ENSG00000136754 | ABI1 | abl interactor 1 | 10006 | This gene encodes a member of the Abelson-interactor family of adaptor proteins. These proteins facilitate signal transduction as components of several multiprotein complexes, and regulate actin polymerization and cytoskeletal remodeling through interactions with Abelson tyrosine kinases. The encoded protein plays a role in macropinocytosis as a component of the WAVE2 complex, and also forms a complex with EPS8 and SOS1 that mediates signal transduction from Ras to Rac. This gene may play a role in the progression of several malignancies including melanoma, colon cancer and breast cancer, and a t(10;11) chromosomal translocation involving this gene and the MLL gene has been associated with acute myeloid leukemia. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 14. |
| NA | ENSG00000107890 | ANKRD26 | ankyrin repeat domain 26 | 22852 | This gene encodes a protein containing N-terminal ankyrin repeats which function in protein-protein interactions. Mutations in this gene are associated with autosomal dominant thrombocytopenia-2. Pseudogenes of this gene are found on chromosome 7, 10, 13 and 16. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000136758 | YME1L1 | YME1 like 1 ATPase | 10730 | The protein encoded by this gene is the human ortholog of yeast mitochondrial AAA metalloprotease, Yme1p. It is localized in the mitochondria and can functionally complement a yme1 disruptant yeast strain. It is proposed that this gene plays a role in mitochondrial protein metabolism and could be involved in mitochondrial pathologies. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000120539 | MASTL | microtubule associated serine/threonine kinase like | 84930 | This gene encodes a microtubule-associated serine/threonine kinase. Mutations at this locus have been associated with autosomal dominant thrombocytopenia, also known as thrombocytopenia-2. Alternatively spliced transcript variants have been described for this locus. |
| NA | ENSG00000099246 | RAB18 | RAB18, member RAS oncogene family | 22931 | The protein encoded by this gene is a member of a family of Ras-related small GTPases that regulate membrane trafficking in organelles and transport vesicles. Knockdown studies is zebrafish suggest that this protein may have a role in eye and brain development. Mutations in this gene are associated with Warburg micro syndrome type 3. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000150054 | MPP7 | membrane protein, palmitoylated 7 | 143098 | The protein encoded by this gene is a member of the p55 Stardust family of membrane-associated guanylate kinase (MAGUK) proteins, which function in the establishment of epithelial cell polarity. This family member forms a complex with the polarity protein DLG1 (discs, large homolog 1) and facilitates epithelial cell polarity and tight junction formation. Polymorphisms in this gene are associated with variations in site-specific bone mineral density (BMD). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000095787 | WAC | WW domain containing adaptor with coiled-coil | 51322 | The protein encoded by this gene contains a WW domain, which is a protein module found in a wide range of signaling proteins. This domain mediates protein-protein interactions and binds proteins containing short linear peptide motifs that are proline-rich or contain at least one proline. This gene product shares 94% sequence identity with the WAC protein in mouse, however, its exact function is not known. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000095739 | BAMBI | BMP and activin membrane-bound inhibitor | 25805 | This gene encodes a transmembrane glycoprotein related to the type I receptors of the transforming growth factor-beta (TGF-beta) family, whose members play important roles in signal transduction in many developmental and pathological processes. The encoded protein however is a pseudoreceptor, lacking an intracellular serine/threonine kinase domain required for signaling. Similar proteins in frog, mouse and zebrafish function as negative regulators of TGF-beta, which has led to the suggestion that the encoded protein may function to limit the signaling range of the TGF-beta family during early embryogenesis. |
| NA | ENSG00000197321 | SVIL | supervillin | 6840 | This gene encodes a bipartite protein with distinct amino- and carboxy-terminal domains. The amino-terminus contains nuclear localization signals and the carboxy-terminus contains numerous consecutive sequences with extensive similarity to proteins in the gelsolin family of actin-binding proteins, which cap, nucleate, and/or sever actin filaments. The gene product is tightly associated with both actin filaments and plasma membranes, suggesting a role as a high-affinity link between the actin cytoskeleton and the membrane. The encoded protein appears to aid in both myosin II assembly during cell spreading and disassembly of focal adhesions. Two transcript variants encoding different isoforms of supervillin have been described. |
| NA | ENSG00000165757 | KIAA1462 | KIAA1462 | 57608 | NA |
| NA | ENSG00000107951 | MTPAP | mitochondrial poly(A) polymerase | 55149 | The protein encoded by this gene is a member of the DNA polymerase type-B-like family. This enzyme synthesizes the 3’ poly(A) tail of mitochondrial transcripts and plays a role in replication-dependent histone mRNA degradation. |
| NA | ENSG00000107968 | MAP3K8 | mitogen-activated protein kinase kinase kinase 8 | 1326 | This gene is an oncogene that encodes a member of the serine/threonine protein kinase family. The encoded protein localizes to the cytoplasm and can activate both the MAP kinase and JNK kinase pathways. This protein was shown to activate IkappaB kinases, and thus induce the nuclear production of NF-kappaB. This protein was also found to promote the production of TNF-alpha and IL-2 during T lymphocyte activation. This gene may also utilize a downstream in-frame translation start codon, and thus produce an isoform containing a shorter N-terminus. The shorter isoform has been shown to display weaker transforming activity. Alternate splicing results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000183621 | ZNF438 | zinc finger protein 438 | 220929 | NA |
| NA | ENSG00000165322 | ARHGAP12 | Rho GTPase activating protein 12 | 94134 | This gene encodes a member of a large family of proteins that activate Rho-type guanosine triphosphate (GTP) metabolizing enzymes. The encoded protein may be involved in suppressing tumor formation by regulating cell invasion and adhesion. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000170759 | KIF5B | kinesin family member 5B | 3799 | NA |
| NA | ENSG00000120616 | EPC1 | enhancer of polycomb homolog 1 | 80314 | This gene encodes a member of the polycomb group (PcG) family. The encoded protein is a component of the NuA4 histone acetyltransferase complex and can act as both a transcriptional activator and repressor. The encoded protein has been linked to apoptosis, DNA repair, skeletal muscle differentiation, gene silencing, and adult T-cell leukemia/lymphoma. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000150093 | ITGB1 | integrin subunit beta 1 | 3688 | Integrins are heterodimeric proteins made up of alpha and beta subunits. At least 18 alpha and 8 beta subunits have been described in mammals. Integrin family members are membrane receptors involved in cell adhesion and recognition in a variety of processes including embryogenesis, hemostasis, tissue repair, immune response and metastatic diffusion of tumor cells. This gene encodes a beta subunit. Multiple alternatively spliced transcript variants which encode different protein isoforms have been found for this gene. |
| NA | ENSG00000099250 | NRP1 | neuropilin 1 | 8829 | This gene encodes one of two neuropilins, which contain specific protein domains which allow them to participate in several different types of signaling pathways that control cell migration. Neuropilins contain a large N-terminal extracellular domain, made up of complement-binding, coagulation factor V/VIII, and meprin domains. These proteins also contains a short membrane-spanning domain and a small cytoplasmic domain. Neuropilins bind many ligands and various types of co-receptors; they affect cell survival, migration, and attraction. Some of the ligands and co-receptors bound by neuropilins are vascular endothelial growth factor (VEGF) and semaphorin family members. Several alternatively spliced transcript variants that encode different protein isoforms have been described for this gene. |
| NA | ENSG00000108094 | CUL2 | cullin 2 | 8453 | NA |
| NA | ENSG00000095794 | CREM | cAMP responsive element modulator | 1390 | This gene encodes a bZIP transcription factor that binds to the cAMP responsive element found in many viral and cellular promoters. It is an important component of cAMP-mediated signal transduction during the spermatogenetic cycle, as well as other complex processes. Alternative promoter and translation initiation site usage allows this gene to exert spatial and temporal specificity to cAMP responsiveness. Multiple alternatively spliced transcript variants encoding several different isoforms have been found for this gene, with some of them functioning as activators and some as repressors of transcription. |
| NA | ENSG00000108100 | CCNY | cyclin Y | 219771 | Cyclins, such as CCNY, control cell division cycles and regulate cyclin-dependent kinases (e.g., CDC2; MIM 116940) (Li et al., 2009 [PubMed 18060517]). |
| NA | ENSG00000229644 | NAMPTP1 | nicotinamide phosphoribosyltransferase pseudogene 1 | ENSG00000229644 | NA |
| NA | ENSG00000256892 | MTRNR2L7 | MT-RNR2-like 7 | 100288485 | NA |
| NA | ENSG00000198105 | ZNF248 | zinc finger protein 248 | 57209 | NA |
| NA | ENSG00000175395 | ZNF25 | zinc finger protein 25 | 219749 | NA |
| NA | ENSG00000075407 | ZNF37A | zinc finger protein 37A | 7587 | NA |
| NA | ENSG00000165733 | BMS1 | BMS1, ribosome biogenesis factor | 9790 | This gene likely encodes a ribosome assembly protein. A similar protein in yeast functions in 35S-rRNA processing, which includes a series of cleavage steps critical for formation of 40S ribosomes. Related pseudogenes exist on chromosomes 2, 9, 10, 15, 16, and 22. |
| NA | ENSG00000165731 | RET | ret proto-oncogene | 5979 | This gene, a member of the cadherin superfamily, encodes one of the receptor tyrosine kinases, which are cell-surface molecules that transduce signals for cell growth and differentiation. This gene plays a crucial role in neural crest development, and it can undergo oncogenic activation in vivo and in vitro by cytogenetic rearrangement. Mutations in this gene are associated with the disorders multiple endocrine neoplasia, type IIA, multiple endocrine neoplasia, type IIB, Hirschsprung disease, and medullary thyroid carcinoma. Two transcript variants encoding different isoforms have been found for this gene. Additional transcript variants have been described but their biological validity has not been confirmed. |
| NA | ENSG00000169826 | CSGALNACT2 | chondroitin sulfate N-acetylgalactosaminyltransferase 2 | 55454 | This gene encodes a member of the chondroitin N-acetylgalactosaminyltransferase family. The encoded protein is involved in elongation during chondroitin sulfate synthesis. Alternative splicing of this gene results in multiple transcript variants. Two related pseudogenes have been identified on chromosome X. |
| NA | ENSG00000198915 | RASGEF1A | RasGEF domain family member 1A | 221002 | NA |
| NA | ENSG00000169813 | HNRNPF | heterogeneous nuclear ribonucleoprotein F | 3185 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins that complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and regulate alternative splicing, polyadenylation, and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has three repeats of quasi-RRM domains that bind to RNAs which have guanosine-rich sequences. This protein is very similar to the family member hnRPH. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000243660 | ZNF487 | zinc finger protein 487 | ENSG00000243660 | NA |
| NA | ENSG00000196793 | ZNF239 | zinc finger protein 239 | 8187 | MOK2 proteins are DNA- and RNA-binding proteins that are mainly associated with nuclear RNP components, including the nucleoli and extranucleolar structures (Arranz et al., 1997 [PubMed 9121460]). |
| NA | ENSG00000198298 | ZNF485 | zinc finger protein 485 | 220992 | NA |
| NA | ENSG00000169740 | ZNF32 | zinc finger protein 32 | 7580 | NA |
| NA | ENSG00000107562 | CXCL12 | C-X-C motif chemokine ligand 12 | 6387 | This antimicrobial gene encodes a stromal cell-derived alpha chemokine member of the intercrine family. The encoded protein functions as the ligand for the G-protein coupled receptor, chemokine (C-X-C motif) receptor 4, and plays a role in many diverse cellular functions, including embryogenesis, immune surveillance, inflammation response, tissue homeostasis, and tumor growth and metastasis. Mutations in this gene are associated with resistance to human immunodeficiency virus type 1 infections. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000107551 | RASSF4 | Ras association domain family member 4 | 83937 | The function of this gene has not yet been determined but may involve a role in tumor suppression. Alternative splicing of this gene results in several transcript variants; however, most of the variants have not been fully described. |
| NA | ENSG00000165511 | C10orf25 | chromosome 10 open reading frame 25 | ENSG00000165511 | NA |
| NA | ENSG00000165512 | ZNF22 | zinc finger protein 22 | 7570 | NA |
| NA | ENSG00000165406 | MARCH8 | membrane associated ring-CH-type finger 8 | 220972 | MARCH8 is a member of the MARCH family of membrane-bound E3 ubiquitin ligases (EC 6.3.2.19). MARCH enzymes add ubiquitin (see MIM 191339) to target lysines in substrate proteins, thereby signaling their vesicular transport between membrane compartments. MARCH8 induces the internalization of several membrane glycoproteins (Goto et al., 2003 [PubMed 12582153]; Bartee et al., 2004 [PubMed 14722266]). |
| NA | ENSG00000172671 | ZFAND4 | zinc finger AN1-type containing 4 | 93550 | NA |
| NA | ENSG00000172661 | FAM21C | family with sequence similarity 21 member C | 253725 | NA |
| NA | ENSG00000188234 | LOC101060581 | arf-GAP with GTPase, ANK repeat and PH domain-containing protein 5-like | 101060581 | NA |
| NA | ENSG00000188234 | AGAP4 | ArfGAP with GTPase domain, ankyrin repeat and PH domain 4 | 119016 | NA |
| NA | ENSG00000204175 | GPRIN2 | G protein regulated inducer of neurite outgrowth 2 | 9721 | NA |
| TRUE | ENSG00000152726 | NA | NA | NA | NA |
| TRUE | ENSG00000165388 | NA | NA | NA | NA |
| NA | ENSG00000107643 | MAPK8 | mitogen-activated protein kinase 8 | 5599 | The protein encoded by this gene is a member of the MAP kinase family. MAP kinases act as an integration point for multiple biochemical signals, and are involved in a wide variety of cellular processes such as proliferation, differentiation, transcription regulation and development. This kinase is activated by various cell stimuli, and targets specific transcription factors, and thus mediates immediate-early gene expression in response to cell stimuli. The activation of this kinase by tumor-necrosis factor alpha (TNF-alpha) is found to be required for TNF-alpha induced apoptosis. This kinase is also involved in UV radiation induced apoptosis, which is thought to be related to cytochrom c-mediated cell death pathway. Studies of the mouse counterpart of this gene suggested that this kinase play a key role in T cell proliferation, apoptosis and differentiation. Five alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000128805 | ARHGAP22 | Rho GTPase activating protein 22 | 58504 | This gene encodes a member of the GTPase activating protein family which activates a GTPase belonging to the RAS superfamily of small GTP-binding proteins. The encoded protein is insulin-responsive, is dependent on the kinase Akt and requires the Akt-dependent 14-3-3 binding protein which binds sequentially to two serine residues. The result of these interactions is regulation of cell motility. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165633 | VSTM4 | V-set and transmembrane domain containing 4 | 196740 | NA |
| NA | ENSG00000225830 | ERCC6 | excision repair cross-complementation group 6 | 2074 | This gene encodes a DNA-binding protein that is important in transcription-coupled excision repair. The encoded protein has ATP-stimulated ATPase activity, interacts with several transcription and excision repair proteins, and may promote complex formation at DNA repair sites. Mutations in this gene are associated with Cockayne syndrome type B and cerebrooculofacioskeletal syndrome 1. Naturally-occurring readthrough transcription occurs between this gene and the adjacent PGBD3 gene (GeneID:267004), and results in a fusion protein that shares sequence with the product of each individual gene. The readthrough locus is represented by GeneID:101243544. |
| NA | ENSG00000197444 | OGDHL | oxoglutarate dehydrogenase-like | 55753 | NA |
| NA | ENSG00000227345 | PARG | poly(ADP-ribose) glycohydrolase | 8505 | Poly(ADP-ribose) glycohydrolase (PARG) is the major enzyme responsible for the catabolism of poly(ADP-ribose), a reversible covalent-modifier of chromosomal proteins. The protein is found in many tissues and may be subject to proteolysis generating smaller, active products. Several transcript variants encoding different isoforms have been found for this gene. |
| TRUE | ENSG00000174196 | NA | NA | NA | NA |
| TRUE | ENSG00000174194 | NA | NA | NA | NA |
| NA | ENSG00000204152 | TIMM23B | translocase of inner mitochondrial membrane 23 homolog B | 100652748 | NA |
| NA | ENSG00000099290 | FAM21A | family with sequence similarity 21 member A | 387680 | NA |
| NA | ENSG00000198964 | SGMS1 | sphingomyelin synthase 1 | 259230 | The protein encoded by this gene is predicted to be a five-pass transmembrane protein. This gene may be predominately expressed in brain. |
| NA | ENSG00000204147 | ASAH2B | N-acylsphingosine amidohydrolase (non-lysosomal ceramidase) 2B | 653308 | NA |
| NA | ENSG00000185532 | PRKG1 | protein kinase, cGMP-dependent, type I | 5592 | Mammals have three different isoforms of cyclic GMP-dependent protein kinase (Ialpha, Ibeta, and II). These PRKG isoforms act as key mediators of the nitric oxide/cGMP signaling pathway and are important components of many signal transduction processes in diverse cell types. This PRKG1 gene on human chromosome 10 encodes the soluble Ialpha and Ibeta isoforms of PRKG by alternative transcript splicing. A separate gene on human chromosome 4, PRKG2, encodes the membrane-bound PRKG isoform II. The PRKG1 proteins play a central role in regulating cardiovascular and neuronal functions in addition to relaxing smooth muscle tone, preventing platelet aggregation, and modulating cell growth. This gene is most strongly expressed in all types of smooth muscle, platelets, cerebellar Purkinje cells, hippocampal neurons, and the lateral amygdala. Isoforms Ialpha and Ibeta have identical cGMP-binding and catalytic domains but differ in their leucine/isoleucine zipper and autoinhibitory sequences and therefore differ in their dimerization substrates and kinase enzyme activity. |
| NA | ENSG00000177613 | CSTF2T | cleavage stimulation factor, 3’ pre-RNA, subunit 2, tau variant | 23283 | NA |
| NA | ENSG00000151151 | IPMK | inositol polyphosphate multikinase | 253430 | This gene encodes a member of the inositol phosphokinase family. The encoded protein has 3-kinase, 5-kinase and 6-kinase activities on phosphorylated inositol substrates. The encoded protein plays an important role in the biosynthesis of inositol 1,3,4,5,6-pentakisphosphate, and has a preferred 5-kinase activity. This gene may play a role in nuclear mRNA export. Pseudogenes of this gene are located on the long arm of chromosome 13 and the short arm of chromosome 19. |
| NA | ENSG00000122873 | CISD1 | CDGSH iron sulfur domain 1 | 55847 | This gene encodes a protein with a CDGSH iron-sulfur domain and has been shown to bind a redox-active [2Fe-2S] cluster. The encoded protein has been localized to the outer membrane of mitochondria and is thought to play a role in regulation of oxidation. Genes encoding similar proteins are located on chromosomes 4 and 17, and a pseudogene of this gene is located on chromosome 2. |
| NA | ENSG00000072401 | UBE2D1 | ubiquitin conjugating enzyme E2 D1 | 7321 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. This enzyme is closely related to a stimulator of iron transport (SFT), and is up-regulated in hereditary hemochromatosis. It also functions in the ubiquitination of the tumor-suppressor protein p53 and the hypoxia-inducible transcription factor HIF1alpha by interacting with the E1 ubiquitin-activating enzyme and the E3 ubiquitin-protein ligases. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000108064 | TFAM | transcription factor A, mitochondrial | 7019 | This gene encodes a key mitochondrial transcription factor containing two high mobility group motifs. The encoded protein also functions in mitochondrial DNA replication and repair. Sequence polymorphisms in this gene are associated with Alzheimer’s and Parkinson’s diseases. There are pseudogenes for this gene on chromosomes 6, 7, and 11. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165449 | SLC16A9 | solute carrier family 16 member 9 | 220963 | NA |
| NA | ENSG00000108091 | CCDC6 | coiled-coil domain containing 6 | 8030 | This gene encodes a coiled-coil domain-containing protein. The encoded protein is ubiquitously expressed and may function as a tumor suppressor. A chromosomal rearrangement resulting in the expression of a fusion gene containing a portion of this gene and the intracellular kinase-encoding domain of the ret proto-oncogene is the cause of thyroid papillary carcinoma. |
| NA | ENSG00000151150 | ANK3 | ankyrin 3, node of Ranvier (ankyrin G) | 288 | Ankyrins are a family of proteins that are believed to link the integral membrane proteins to the underlying spectrin-actin cytoskeleton and play key roles in activities such as cell motility, activation, proliferation, contact, and the maintenance of specialized membrane domains. Multiple isoforms of ankyrin with different affinities for various target proteins are expressed in a tissue-specific, developmentally regulated manner. Most ankyrins are typically composed of three structural domains: an amino-terminal domain containing multiple ankyrin repeats; a central region with a highly conserved spectrin binding domain; and a carboxy-terminal regulatory domain which is the least conserved and subject to variation. Ankyrin 3 is an immunologically distinct gene product from ankyrins 1 and 2, and was originally found at the axonal initial segment and nodes of Ranvier of neurons in the central and peripheral nervous systems. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000072422 | RHOBTB1 | Rho related BTB domain containing 1 | 9886 | The protein encoded by this gene belongs to the Rho family of the small GTPase superfamily. It contains a GTPase domain, a proline-rich region, a tandem of 2 BTB (broad complex, tramtrack, and bric-a-brac) domains, and a conserved C-terminal region. The protein plays a role in small GTPase-mediated signal transduction and the organization of the actin filament system. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000196932 | TMEM26 | transmembrane protein 26 | 219623 | This gene encodes a protein containing multiple transmembrane helices. It is a selective surface protein marker of brite/beige adipocytes, which may coexist with classical brown adipocytes in brown adipose tissue. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000150347 | ARID5B | AT-rich interaction domain 5B | 84159 | This gene encodes a member of the AT-rich interaction domain (ARID) family of DNA binding proteins. The encoded protein forms a histone H3K9Me2 demethylase complex with PHD finger protein 2 and regulates the transcription of target genes involved in adipogenesis and liver development. This gene also plays a role in cell growth and differentiation of B-lymphocyte progenitors, and single nucleotide polymorphisms in this gene are associated with acute lymphoblastic leukemia. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000182010 | RTKN2 | rhotekin 2 | 219790 | NA |
| NA | ENSG00000181915 | ADO | 2-aminoethanethiol (cysteamine) dioxygenase | 84890 | Human thiol dioxygenases include cysteine dioxygenase (CDO; MIM 603943) and cysteamine (2-aminoethanethiol) dioxygenase (ADO; EC 1.13.11.19). CDO adds 2 oxygen atoms to free cysteine, whereas ADO adds 2 oxygen atoms to free cysteamine to form hypotaurine (Dominy et al., 2007 [PubMed 17581819]). |
| NA | ENSG00000148572 | NRBF2 | nuclear receptor binding factor 2 | 29982 | NA |
| NA | ENSG00000171988 | JMJD1C | jumonji domain containing 1C | 221037 | The protein encoded by this gene interacts with thyroid hormone receptors and contains a jumonji domain. It is a candidate histone demethylase and is thought to be a coactivator for key transcription factors. It plays a role in the DNA-damage response pathway by demethylating the mediator of DNA damage checkpoint 1 (MDC1) protein, and is required for the survival of acute myeloid leukemia. Mutations in this gene are associated with Rett syndrome and intellectual disability. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165476 | REEP3 | receptor accessory protein 3 | 221035 | NA |
| NA | ENSG00000108176 | DNAJC12 | DnaJ heat shock protein family (Hsp40) member C12 | 56521 | This gene encodes a member of a subclass of the HSP40/DnaJ protein family. Members of this family of proteins are associated with complex assembly, protein folding, and export. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000148634 | HERC4 | HECT and RLD domain containing E3 ubiquitin protein ligase 4 | 26091 | HERC4 belongs to the HERC family of ubiquitin ligases, all of which contain a HECT domain and at least 1 RCC1 (MIM 179710)-like domain (RLD). The 350-amino acid HECT domain is predicted to catalyze the formation of a thioester with ubiquitin before transferring it to a substrate, and the RLD is predicted to act as a guanine nucleotide exchange factor for small G proteins (Hochrainer et al., 2005 [PubMed 15676274]). |
| NA | ENSG00000108187 | PBLD | phenazine biosynthesis-like protein domain containing | 64081 | NA |
| NA | ENSG00000096746 | HNRNPH3 | heterogeneous nuclear ribonucleoprotein H3 | 3189 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has two repeats of quasi-RRM domains that bind to RNAs. It is localized in nuclear bodies of the nucleus. This protein is involved in the splicing process and it also participates in early heat shock-induced splicing arrest by transiently leaving the hnRNP complexes. Several alternatively spliced transcript variants have been noted for this gene, however, not all are fully characterized. |
| NA | ENSG00000204130 | RUFY2 | RUN and FYVE domain containing 2 | 55680 | NA |
| NA | ENSG00000138336 | TET1 | tet methylcytosine dioxygenase 1 | 80312 | DNA methylation is an epigenetic mechanism that is important for controlling gene expression. The protein encoded by this gene is a demethylase that belongs to the TET (ten-eleven translocation) family. Members of the TET protein family play a role in the DNA methylation process and gene activation. |
| NA | ENSG00000060339 | CCAR1 | cell division cycle and apoptosis regulator 1 | 55749 | NA |
| NA | ENSG00000165730 | STOX1 | storkhead box 1 | 219736 | The protein encoded by this gene may function as a DNA binding protein. Mutations in this gene are associated with pre-eclampsia/eclampsia 4 (PEE4). Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000107625 | DDX50 | DEAD-box helicase 50 | 79009 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box enzyme that may be involved in ribosomal RNA synthesis or processing. This gene and DDX21, also called RH-II/GuA, have similar genomic structures and are in tandem orientation on chromosome 10, suggesting that the two genes arose by gene duplication in evolution. This gene has pseudogenes on chromosomes 2, 3 and 4. Alternative splicing of this gene generates multiple transcript variants, but the full length nature of all the other variants but one has not been defined. |
| NA | ENSG00000165732 | DDX21 | DEAD-box helicase 21 | 9188 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which is an antigen recognized by autoimmune antibodies from a patient with watermelon stomach disease. This protein unwinds double-stranded RNA, folds single-stranded RNA, and may play important roles in ribosomal RNA biogenesis, RNA editing, RNA transport, and general transcription. |
| NA | ENSG00000198954 | KIF1BP | KIF1 binding protein | 26128 | This gene encodes a kinesin family member 1 binding protein that is characterized by two tetratrico peptide repeats. The encoded protein localizes to the mitochondria and may be involved in regulating transport of the mitochondria. Mutations in this gene are associated with Goldberg-Shprintzen megacolon syndrome. |
| NA | ENSG00000122958 | VPS26A | VPS26 retromer complex component A | 9559 | This gene belongs to a group of vacuolar protein sorting (VPS) genes. The encoded protein is a component of a large multimeric complex, termed the retromer complex, involved in retrograde transport of proteins from endosomes to the trans-Golgi network. The close structural similarity between the yeast and human proteins that make up this complex suggests a similarity in function. Expression studies in yeast and mammalian cells indicate that this protein interacts directly with VPS35, which serves as the core of the retromer complex. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000156502 | SUPV3L1 | Suv3 like RNA helicase | 6832 | NA |
| NA | ENSG00000099282 | TSPAN15 | tetraspanin 15 | 23555 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. The use of alternate polyadenylation sites has been found for this gene. |
| NA | ENSG00000171224 | C10orf35 | chromosome 10 open reading frame 35 | 219738 | NA |
| NA | ENSG00000197467 | COL13A1 | collagen type XIII alpha 1 | 1305 | This gene encodes the alpha chain of one of the nonfibrillar collagens. The function of this gene product is not known, however, it has been detected at low levels in all connective tissue-producing cells so it may serve a general function in connective tissues. Unlike most of the collagens, which are secreted into the extracellular matrix, collagen XIII contains a transmembrane domain and the protein has been localized to the plasma membrane. The transcripts for this gene undergo complex and extensive splicing involving at least eight exons. Like other collagens, collagen XIII is a trimer; it is not known whether this trimer is composed of one or more than one alpha chain isomer. A number of alternatively spliced transcript variants have been described, but the full length nature of some of them has not been determined. |
| NA | ENSG00000099284 | H2AFY2 | H2A histone family member Y2 | 55506 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene encodes a replication-independent histone that is a member of the histone H2A family. It replaces conventional H2A histones in a subset of nucleosomes where it represses transcription and may participate in stable X chromosome inactivation. |
| NA | ENSG00000042286 | AIFM2 | apoptosis inducing factor, mitochondria associated 2 | 84883 | This gene encodes a flavoprotein oxidoreductase that binds single stranded DNA and is thought to contribute to apoptosis in the presence of bacterial and viral DNA. The expression of this gene is also found to be induced by tumor suppressor protein p53 in colon cancer cells. |
| NA | ENSG00000156521 | TYSND1 | trypsin domain containing 1 | 219743 | This gene encodes a protease that removes the N-terminal peroxisomal targeting signal (PTS2) from proteins produced in the cytosol, thereby facilitating their import into the peroxisome. The encoded protein is also capable of removing the C-terminal peroxisomal targeting signal (PTS1) from proteins in the peroxisomal matrix. The full-length protein undergoes self-cleavage to produce shorter, potentially inactive, peptides. Alternative splicing results in multiple transcript variants for this gene. |
| NA | ENSG00000079332 | SAR1A | secretion associated Ras related GTPase 1A | 56681 | NA |
| NA | ENSG00000180817 | PPA1 | pyrophosphatase (inorganic) 1 | 5464 | The protein encoded by this gene is a member of the inorganic pyrophosphatase (PPase) family. PPases catalyze the hydrolysis of pyrophosphate to inorganic phosphate, which is important for the phosphate metabolism of cells. Studies of a similar protein in bovine suggested a cytoplasmic localization of this enzyme. |
| NA | ENSG00000172731 | LRRC20 | leucine rich repeat containing 20 | 55222 | NA |
| NA | ENSG00000148730 | EIF4EBP2 | eukaryotic translation initiation factor 4E binding protein 2 | 1979 | This gene encodes a member of the eukaryotic translation initiation factor 4E binding protein family. The gene products of this family bind eIF4E and inhibit translation initiation. However, insulin and other growth factors can release this inhibition via a phosphorylation-dependent disruption of their binding to eIF4E. Regulation of protein production through these gene products have been implicated in cell proliferation, cell differentiation and viral infection. |
| NA | ENSG00000107719 | PALD1 | phosphatase domain containing, paladin 1 | 27143 | NA |
| NA | ENSG00000166224 | SGPL1 | sphingosine-1-phosphate lyase 1 | 8879 | NA |
| NA | ENSG00000166228 | PCBD1 | pterin-4 alpha-carbinolamine dehydratase 1 | 5092 | This gene encodes a member of the pterin-4-alpha-carbinolamine dehydratase family. The encoded protein has been identified as a moonlighting protein based on its ability to perform mechanistically distinct functions. The encoded protein functions as both a dehydratase involved in tetrahydrobiopterin biosynthesis, and as a cofactor for HNF1A-dependent transcription. A deficiency of this enzyme leads to hyperphenylalaninemia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000107731 | UNC5B | unc-5 netrin receptor B | 219699 | This gene encodes a member of the netrin family of receptors. This particular protein mediates the repulsive effect of netrin-1 and is a vascular netrin receptor. This encoded protein is also in a group of proteins called dependence receptors (DpRs) which are involved in pro- and anti-apoptotic processes. Many DpRs are involved in embryogenesis and in cancer progression. Two alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000198246 | SLC29A3 | solute carrier family 29 member 3 | 55315 | This gene encodes a nucleoside transporter. The encoded protein plays a role in cellular uptake of nucleosides, nucleobases, and their related analogs. Mutations in this gene have been associated with H syndrome, which is characterized by cutaneous hyperpigmentation and hypertrichosis, hepatosplenomegaly, heart anomalies, and hypogonadism. A related disorder, PHID (pigmented hypertrichosis with insulin-dependent diabetes mellitus), has also been associated with mutations at this locus. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000107736 | CDH23 | cadherin-related 23 | 64072 | This gene is a member of the cadherin superfamily, whose genes encode calcium dependent cell-cell adhesion glycoproteins. The encoded protein is thought to be involved in stereocilia organization and hair bundle formation. The gene is located in a region containing the human deafness loci DFNB12 and USH1D. Usher syndrome 1D and nonsyndromic autosomal recessive deafness DFNB12 are caused by allelic mutations of this cadherin-like gene. Upregulation of this gene may also be associated with breast cancer. Alternative splice variants encoding different isoforms have been described. |
| NA | ENSG00000197746 | PSAP | prosaposin | 5660 | This gene encodes a highly conserved preproprotein that is proteolytically processed to generate four main cleavage products including saposins A, B, C, and D. Each domain of the precursor protein is approximately 80 amino acid residues long with nearly identical placement of cysteine residues and glycosylation sites. Saposins A-D localize primarily to the lysosomal compartment where they facilitate the catabolism of glycosphingolipids with short oligosaccharide groups. The precursor protein exists both as a secretory protein and as an integral membrane protein and has neurotrophic activities. Mutations in this gene have been associated with Gaucher disease and metachromatic leukodystrophy. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000122863 | CHST3 | carbohydrate (chondroitin 6) sulfotransferase 3 | 9469 | This gene encodes an enzyme which catalyzes the sulfation of chondroitin, a proteoglycan found in the extracellular matrix and most cells which is involved in cell migration and differentiation. Mutations in this gene are associated with spondylepiphyseal dysplasia and humerospinal dysostosis. |
| NA | ENSG00000166295 | ANAPC16 | anaphase promoting complex subunit 16 | 119504 | NA |
| NA | ENSG00000168209 | DDIT4 | DNA damage inducible transcript 4 | 54541 | NA |
| NA | ENSG00000148719 | DNAJB12 | DnaJ heat shock protein family (Hsp40) member B12 | 54788 | DNAJB12 belongs to the evolutionarily conserved DNAJ/HSP40 family of proteins, which regulate molecular chaperone activity by stimulating ATPase activity. DNAJ proteins may have up to 3 distinct domains: a conserved 70-amino acid J domain, usually at the N terminus; a glycine/phenylalanine (G/F)-rich region; and a cysteine-rich domain containing 4 motifs resembling a zinc finger domain (Ohtsuka and Hata, 2000 [PubMed 11147971]). |
| NA | ENSG00000107745 | MICU1 | mitochondrial calcium uptake 1 | 10367 | This gene encodes an essential regulator of mitochondrial Ca2+ uptake under basal conditions. The encoded protein interacts with the mitochondrial calcium uniporter, a mitochondrial inner membrane Ca2+ channel, and is essential in preventing mitochondrial Ca2+ overload, which can cause excessive production of reactive oxygen species and cell stress. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000156026 | MCU | mitochondrial calcium uniporter | 90550 | This gene encodes a calcium transporter that localizes to the mitochondrial inner membrane. The encoded protein interacts with mitochondrial calcium uptake 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000122884 | P4HA1 | prolyl 4-hydroxylase subunit alpha 1 | 5033 | This gene encodes a component of prolyl 4-hydroxylase, a key enzyme in collagen synthesis composed of two identical alpha subunits and two beta subunits. The encoded protein is one of several different types of alpha subunits and provides the major part of the catalytic site of the active enzyme. In collagen and related proteins, prolyl 4-hydroxylase catalyzes the formation of 4-hydroxyproline that is essential to the proper three-dimensional folding of newly synthesized procollagen chains. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000166321 | NUDT13 | nudix hydrolase 13 | 25961 | NA |
| NA | ENSG00000122882 | ECD | ecdysoneless cell cycle regulator | 11319 | NA |
| NA | ENSG00000138286 | FAM149B1 | family with sequence similarity 149 member B1 | 317662 | NA |
| NA | ENSG00000213551 | DNAJC9 | DnaJ heat shock protein family (Hsp40) member C9 | 23234 | NA |
| NA | ENSG00000182180 | MRPS16 | mitochondrial ribosomal protein S16 | 51021 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S16P family. The encoded protein is one of the most highly conserved ribosomal proteins between mammalian and yeast mitochondria. Three pseudogenes (located at 8q21.3, 20q13.32, 22q12-q13.1) for this gene have been described. |
| NA | ENSG00000138279 | ANXA7 | annexin A7 | 310 | Annexin VII is a member of the annexin family of calcium-dependent phospholipid binding proteins.The Annexin VII gene contains 14 exons and spans approximately 34 kb of DNA. An alternatively spliced cassette exon results in two mRNA transcripts of 2.0 and 2.4 kb which are predicted to generate two protein isoforms differing in their N-terminal domain. The alternative splicing event is tissue specific and the mRNA containing the cassette exon is prevalent in brain, heart and skeletal muscle. The transcripts also differ in their 3’-non coding regions by the use of two alternative poly(A) signals. Annexin VII encodes a protein with a molecular weight of approximately 51 kDa with a unique, highly hydrophobic N-terminal domain of 167 amino acids and a conserved C-terminal region of 299 amino acids. The latter domain is composed of alternating hydrophobic and hydrophilic segments. Structural analysis of the protein suggests that Annexin VII is a membrane binding protein with diverse properties, including voltage-sensitive calcium channel activity, ion selectivity and membrane fusion. |
| NA | ENSG00000107758 | PPP3CB | protein phosphatase 3 catalytic subunit beta | 5532 | NA |
| NA | ENSG00000166348 | USP54 | ubiquitin specific peptidase 54 | 159195 | NA |
| NA | ENSG00000176986 | SEC24C | SEC24 homolog C, COPII coat complex component | 9632 | The protein encoded by this gene is a member of the SEC24 subfamily of the SEC23/SEC24 family, which is involved in vesicle trafficking. The encoded protein has similarity to yeast Sec24p component of COPII. COPII is the coat protein complex responsible for vesicle budding from the ER. The product of this gene may play a role in shaping the vesicle, as well as in cargo selection and concentration. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000196968 | FUT11 | fucosyltransferase 11 (alpha (1,3) fucosyltransferase) | 170384 | NA |
| NA | ENSG00000172586 | CHCHD1 | coiled-coil-helix-coiled-coil-helix domain containing 1 | 118487 | NA |
| NA | ENSG00000214655 | ZSWIM8 | zinc finger SWIM-type containing 8 | 23053 | NA |
| NA | ENSG00000148660 | CAMK2G | calcium/calmodulin-dependent protein kinase II gamma | 818 | The product of this gene is one of the four subunits of an enzyme which belongs to the serine/threonine protein kinase family, and to the Ca(2+)/calmodulin-dependent protein kinase subfamily. Calcium signaling is crucial for several aspects of plasticity at glutamatergic synapses. In mammalian cells the enzyme is composed of four different chains: alpha, beta, gamma, and delta. The product of this gene is a gamma chain. Many alternatively spliced transcripts encoding different isoforms have been described but the full-length nature of all the variants has not been determined. |
| NA | ENSG00000122861 | PLAU | plasminogen activator, urokinase | 5328 | This gene encodes a secreted serine protease that converts plasminogen to plasmin. The encoded preproprotein is proteolytically processed to generate A and B polypeptide chains. These chains associate via a single disulfide bond to form the catalytically inactive high molecular weight urokinase-type plasminogen activator (HMW-uPA). HMW-uPA can be further processed into the catalytically active low molecular weight urokinase-type plasminogen activator (LMW-uPA). This low molecular weight form does not bind to the urokinase-type plasminogen activator receptor. Mutations in this gene may be associated with Quebec platelet disorder and late-onset Alzheimer’s disease. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000035403 | VCL | vinculin | 7414 | Vinculin is a cytoskeletal protein associated with cell-cell and cell-matrix junctions, where it is thought to function as one of several interacting proteins involved in anchoring F-actin to the membrane. Defects in VCL are the cause of cardiomyopathy dilated type 1W. Dilated cardiomyopathy is a disorder characterized by ventricular dilation and impaired systolic function, resulting in congestive heart failure and arrhythmia. Multiple alternatively spliced transcript variants have been found for this gene, but the biological validity of some variants has not been determined. |
| NA | ENSG00000185009 | AP3M1 | adaptor related protein complex 3 mu 1 subunit | 26985 | The protein encoded by this gene is the medium subunit of AP-3, which is an adaptor-related protein complex associated with the Golgi region as well as more peripheral intracellular structures. AP-3 facilitates the budding of vesicles from the Golgi membrane, and it may directly function in protein sorting to the endosomal/lysosomal system. AP-3 is a heterotetrameric protein complex composed of two large subunits (delta and beta3), a medium subunit (mu3), and a small subunit (sigma 3). Mutations in one of the large subunits of AP-3 have been associated with the Hermansky-Pudlak syndrome, a genetic disorder characterized by defective lysosome-related organelles. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000156110 | ADK | adenosine kinase | 132 | This gene an enzyme which catalyzes the transfer of the gamma-phosphate from ATP to adenosine, thereby serving as a regulator of concentrations of both extracellular adenosine and intracellular adenine nucleotides. Adenosine has widespread effects on the cardiovascular, nervous, respiratory, and immune systems and inhibitors of the enzyme could play an important pharmacological role in increasing intravascular adenosine concentrations and acting as anti-inflammatory agents. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000156650 | KAT6B | lysine acetyltransferase 6B | 23522 | The protein encoded by this gene is a histone acetyltransferase and component of the MOZ/MORF protein complex. In addition to its acetyltransferase activity, the encoded protein has transcriptional activation activity in its N-terminal end and transcriptional repression activity in its C-terminal end. This protein is necessary for RUNX2-dependent transcriptional activation and could be involved in brain development. Mutations have been found in patients with genitopatellar syndrome. A translocation of this gene and the CREBBP gene results in acute myeloid leukemias. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000156671 | SAMD8 | sterile alpha motif domain containing 8 | 142891 | NA |
| NA | ENSG00000165637 | VDAC2 | voltage dependent anion channel 2 | 7417 | This gene encodes a member of the voltage-dependent anion channel pore-forming family of proteins that are considered the main pathway for metabolite diffusion across the mitochondrial outer membrane. The encoded protein is also thought to be involved in the mitochondrial apoptotic pathway via regulation of BCL2-antagonist/killer 1 protein activity. Pseudogenes have been identified on chromosomes 1, 2, 12 and 21, and alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165644 | COMTD1 | catechol-O-methyltransferase domain containing 1 | 118881 | NA |
| NA | ENSG00000156113 | KCNMA1 | potassium calcium-activated channel subfamily M alpha 1 | 3778 | MaxiK channels are large conductance, voltage and calcium-sensitive potassium channels which are fundamental to the control of smooth muscle tone and neuronal excitability. MaxiK channels can be formed by 2 subunits: the pore-forming alpha subunit, which is the product of this gene, and the modulatory beta subunit. Intracellular calcium regulates the physical association between the alpha and beta subunits. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000151208 | DLG5 | discs large homolog 5 | 9231 | This gene encodes a member of the family of discs large (DLG) homologs, a subset of the membrane-associated guanylate kinase (MAGUK) superfamily. The MAGUK proteins are composed of a catalytically inactive guanylate kinase domain, in addition to PDZ and SH3 domains, and are thought to function as scaffolding molecules at sites of cell-cell contact. The protein encoded by this gene localizes to the plasma membrane and cytoplasm, and interacts with components of adherens junctions and the cytoskeleton. It is proposed to function in the transmission of extracellular signals to the cytoskeleton and in the maintenance of epithelial cell structure. Alternative splice variants have been described but their biological nature has not been determined. |
| NA | ENSG00000148606 | POLR3A | polymerase (RNA) III subunit A | 11128 | The protein encoded by this gene is the catalytic component of RNA polymerase III, which synthesizes small RNAs. The encoded protein also acts as a sensor to detect foreign DNA and trigger an innate immune response. |
| NA | ENSG00000138326 | RPS24 | ribosomal protein S24 | 6229 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S24E family of ribosomal proteins. It is located in the cytoplasm. Multiple transcript variants encoding different isoforms have been found for this gene. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Mutations in this gene result in Diamond-Blackfan anemia. |
| NA | ENSG00000108175 | ZMIZ1 | zinc finger MIZ-type containing 1 | 57178 | This gene encodes a member of the PIAS (protein inhibitor of activated STAT) family of proteins. The encoded protein regulates the activity of various transcription factors, including the androgen receptor, Smad3/4, and p53. The encoded protein may also play a role in sumoylation. A translocation between this locus on chromosome 10 and the protein tyrosine kinase ABL1 locus on chromosome 9 has been associated with acute lymphoblastic leukemia. |
| NA | ENSG00000108179 | PPIF | peptidylprolyl isomerase F | 10105 | The protein encoded by this gene is a member of the peptidyl-prolyl cis-trans isomerase (PPIase) family. PPIases catalyze the cis-trans isomerization of proline imidic peptide bonds in oligopeptides and accelerate the folding of proteins. This protein is part of the mitochondrial permeability transition pore in the inner mitochondrial membrane. Activation of this pore is thought to be involved in the induction of apoptotic and necrotic cell death. |
| NA | ENSG00000165424 | ZCCHC24 | zinc finger CCHC-type containing 24 | 219654 | NA |
| NA | ENSG00000253626 | EIF5AL1 | eukaryotic translation initiation factor 5A-like 1 | 143244 | NA |
| NA | ENSG00000133678 | TMEM254 | transmembrane protein 254 | 80195 | NA |
| NA | ENSG00000189129 | PLAC9 | placenta specific 9 | 219348 | NA |
| NA | ENSG00000122359 | ANXA11 | annexin A11 | 311 | This gene encodes a member of the annexin family, a group of calcium-dependent phospholipid-binding proteins. Annexins have unique N-terminal domains and conserved C-terminal domains, which contain calcium-dependent phospholipid-binding sites. The encoded protein is a 56-kD antigen recognized by sera from patients with various autoimmune diseases. Several transcript variants encoding two different isoforms have been identified. |
| NA | ENSG00000151224 | MAT1A | methionine adenosyltransferase 1A | 4143 | This gene catalyzes a two-step reaction that involves the transfer of the adenosyl moiety of ATP to methionine to form S-adenosylmethionine and tripolyphosphate, which is subsequently cleaved to PPi and Pi. S-adenosylmethionine is the source of methyl groups for most biological methylations. The encoded protein is found as a homotetramer (MAT I) or a homodimer (MAT III) whereas a third form, MAT II (gamma), is encoded by the MAT2A gene. Mutations in this gene are associated with methionine adenosyltransferase deficiency. |
| NA | ENSG00000133665 | DYDC2 | DPY30 domain containing 2 | 84332 | This gene encodes a member of a family of proteins that contains a DPY30 domain. This gene locus overlaps with a closely related gene on the opposite strand. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000122378 | FAM213A | family with sequence similarity 213 member A | 84293 | NA |
| NA | ENSG00000108219 | TSPAN14 | tetraspanin 14 | 81619 | NA |
| NA | ENSG00000165678 | GHITM | growth hormone inducible transmembrane protein | 27069 | NA |
| NA | ENSG00000148600 | CDHR1 | cadherin related family member 1 | 92211 | This gene belongs to the cadherin superfamily of calcium-dependent cell adhesion molecules. The encoded protein is a photoreceptor-specific cadherin that plays a role in outer segment disc morphogenesis. Mutations in this gene are associated with inherited retinal dystrophies. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000062650 | WAPL | WAPL cohesin release factor | 23063 | NA |
| NA | ENSG00000173267 | SNCG | synuclein gamma | 6623 | This gene encodes a member of the synuclein family of proteins which are believed to be involved in the pathogenesis of neurodegenerative diseases. Mutations in this gene have also been associated with breast tumor development. |
| NA | ENSG00000148672 | GLUD1 | glutamate dehydrogenase 1 | 2746 | This gene encodes glutamate dehydrogenase, which is a mitochondrial matrix enzyme that catalyzes the oxidative deamination of glutamate to alpha-ketoglutarate and ammonia. This enzyme has an important role in regulating amino acid-induced insulin secretion. It is allosterically activated by ADP and inhibited by GTP and ATP. Activating mutations in this gene are a common cause of congenital hyperinsulinism. Alternative splicing of this gene results in multiple transcript variants. The related glutamate dehydrogenase 2 gene on the human X-chromosome originated from this gene via retrotransposition and encodes a soluble form of glutamate dehydrogenase. Related pseudogenes have been identified on chromosomes 10, 18 and X. |
| NA | ENSG00000122376 | FAM35A | family with sequence similarity 35 member A | 54537 | NA |
| NA | ENSG00000107789 | MINPP1 | multiple inositol-polyphosphate phosphatase 1 | 9562 | This gene encodes multiple inositol polyphosphate phosphatase; an enzyme that removes 3-phosphate from inositol phosphate substrates. It is the only enzyme known to hydrolzye inositol pentakisphosphate and inositol hexakisphosphate. This enzyme also converts 2,3 bisphosphoglycerate (2,3-BPG) to 2-phosphoglycerate; an activity formerly thought to be exclusive to 2,3-BPG synthase/2-phosphatase (BPGM) in the Rapoport-Luebering shunt of the glycolytic pathway. |
| NA | ENSG00000198682 | PAPSS2 | 3’-phosphoadenosine 5’-phosphosulfate synthase 2 | 9060 | Sulfation is a common modification of endogenous (lipids, proteins, and carbohydrates) and exogenous (xenobiotics and drugs) compounds. In mammals, the sulfate source is 3’-phosphoadenosine 5’-phosphosulfate (PAPS), created from ATP and inorganic sulfate. Two different tissue isoforms encoded by different genes synthesize PAPS. This gene encodes one of the two PAPS synthetases. Defects in this gene cause the Pakistani type of spondyloepimetaphyseal dysplasia. Two alternatively spliced transcript variants that encode different isoforms have been described for this gene. |
| NA | ENSG00000138138 | ATAD1 | ATPase family, AAA domain containing 1 | 84896 | NA |
| NA | ENSG00000171862 | PTEN | phosphatase and tensin homolog | 5728 | This gene was identified as a tumor suppressor that is mutated in a large number of cancers at high frequency. The protein encoded by this gene is a phosphatidylinositol-3,4,5-trisphosphate 3-phosphatase. It contains a tensin like domain as well as a catalytic domain similar to that of the dual specificity protein tyrosine phosphatases. Unlike most of the protein tyrosine phosphatases, this protein preferentially dephosphorylates phosphoinositide substrates. It negatively regulates intracellular levels of phosphatidylinositol-3,4,5-trisphosphate in cells and functions as a tumor suppressor by negatively regulating AKT/PKB signaling pathway. The use of a non-canonical (CUG) upstream initiation site produces a longer isoform that initiates translation with a leucine, and is thought to be preferentially associated with the mitochondrial inner membrane. This longer isoform may help regulate energy metabolism in the mitochondria. A pseudogene of this gene is found on chromosome 9. Alternative splicing and the use of multiple translation start codons results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000184719 | RNLS | renalase, FAD-dependent amine oxidase | 55328 | Renalase is a flavin adenine dinucleotide-dependent amine oxidase that is secreted into the blood from the kidney (Xu et al., 2005 [PubMed 15841207]). |
| NA | ENSG00000138134 | STAMBPL1 | STAM binding protein like 1 | 57559 | NA |
| NA | ENSG00000026103 | FAS | Fas cell surface death receptor | 355 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This receptor contains a death domain. It has been shown to play a central role in the physiological regulation of programmed cell death, and has been implicated in the pathogenesis of various malignancies and diseases of the immune system. The interaction of this receptor with its ligand allows the formation of a death-inducing signaling complex that includes Fas-associated death domain protein (FADD), caspase 8, and caspase 10. The autoproteolytic processing of the caspases in the complex triggers a downstream caspase cascade, and leads to apoptosis. This receptor has been also shown to activate NF-kappaB, MAPK3/ERK1, and MAPK8/JNK, and is found to be involved in transducing the proliferating signals in normal diploid fibroblast and T cells. Several alternatively spliced transcript variants have been described, some of which are candidates for nonsense-mediated mRNA decay (NMD). The isoforms lacking the transmembrane domain may negatively regulate the apoptosis mediated by the full length isoform. |
| NA | ENSG00000107798 | LIPA | lipase A, lysosomal acid type | 3988 | This gene encodes lipase A, the lysosomal acid lipase (also known as cholesterol ester hydrolase). This enzyme functions in the lysosome to catalyze the hydrolysis of cholesteryl esters and triglycerides. Mutations in this gene can result in Wolman disease and cholesteryl ester storage disease. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000119917 | IFIT3 | interferon induced protein with tetratricopeptide repeats 3 | 3437 | NA |
| NA | ENSG00000185745 | IFIT1 | interferon induced protein with tetratricopeptide repeats 1 | 3434 | This gene encodes a protein containing tetratricopeptide repeats that was originally identified as induced upon treatment with interferon. The encoded protein may inhibit viral replication and translational initiation. This gene is located in a cluster on chromosome 10 with five other closely related genes. There is a pseudogene for this gene on chromosome 13. Alternatively spliced transcript variants encoding multiple isoforms have been observed. |
| NA | ENSG00000152778 | IFIT5 | interferon induced protein with tetratricopeptide repeats 5 | 24138 | NA |
| NA | ENSG00000152779 | SLC16A12 | solute carrier family 16 member 12 | 387700 | This gene encodes a transmembrane transporter that likely plays a role in monocarboxylic acid transport. A mutation in this gene has been associated with juvenile cataracts with microcornea and renal glucosuria. |
| NA | ENSG00000138182 | KIF20B | kinesin family member 20B | 9585 | NA |
| NA | ENSG00000148680 | HTR7 | 5-hydroxytryptamine receptor 7 | 3363 | The neurotransmitter, serotonin, is thought to play a role in various cognitive and behavioral functions. The serotonin receptor encoded by this gene belongs to the superfamily of G protein-coupled receptors and the gene is a candidate locus for involvement in autistic disorder and other neuropsychiatric disorders. Three splice variants have been identified which encode proteins that differ in the length of their carboxy terminal ends. |
| NA | ENSG00000148688 | RPP30 | ribonuclease P/MRP 30kDa subunit | 10556 | NA |
| NA | ENSG00000180628 | PCGF5 | polycomb group ring finger 5 | 84333 | NA |
| NA | ENSG00000165338 | HECTD2 | HECT domain E3 ubiquitin protein ligase 2 | 143279 | NA |
| NA | ENSG00000107854 | TNKS2 | tankyrase 2 | 80351 | NA |
| NA | ENSG00000174721 | FGFBP3 | fibroblast growth factor binding protein 3 | 143282 | NA |
| NA | ENSG00000095564 | BTAF1 | B-TFIID TATA-box binding protein associated factor 1 | 9044 | This gene encodes a TAF (TATA box-binding protein-associated factor), which associates with TBP (TATA box-binding protein) to form the B-TFIID complex that is required for transcription initiation of genes by RNA polymerase II. This TAF has DNA-dependent ATPase activity, which drives the dissociation of TBP from DNA, freeing the TBP to associate with other TATA boxes or TATA-less promoters. |
| NA | ENSG00000198060 | MARCH5 | membrane associated ring-CH-type finger 5 | 54708 | MARCH5 is a ubiquitin ligase of the mitochondrial outer membrane that plays a role in the control of mitochondrial morphology by regulating mitofusin-2 (MFN2; MIM 608507) and DRP1 (DNM1L; MIM 603850) (Nakamura et al., 2006 [PubMed 16936636]). |
| NA | ENSG00000119912 | IDE | insulin degrading enzyme | 3416 | This gene encodes a zinc metallopeptidase that degrades intracellular insulin, and thereby terminates insulins activity, as well as participating in intercellular peptide signalling by degrading diverse peptides such as glucagon, amylin, bradykinin, and kallidin. The preferential affinity of this enzyme for insulin results in insulin-mediated inhibition of the degradation of other peptides such as beta-amyloid. Deficiencies in this protein’s function are associated with Alzheimer’s disease and type 2 diabetes mellitus but mutations in this gene have not been shown to be causitive for these diseases. This protein localizes primarily to the cytoplasm but in some cell types localizes to the extracellular space, cell membrane, peroxisome, and mitochondrion. Alternative splicing results in multiple transcript variants encoding distinct isoforms. Additional transcript variants have been described but have not been experimentally verified. |
| NA | ENSG00000138160 | KIF11 | kinesin family member 11 | 3832 | This gene encodes a motor protein that belongs to the kinesin-like protein family. Members of this protein family are known to be involved in various kinds of spindle dynamics. The function of this gene product includes chromosome positioning, centrosome separation and establishing a bipolar spindle during cell mitosis. |
| NA | ENSG00000138190 | EXOC6 | exocyst complex component 6 | 54536 | The protein encoded by this gene is highly similar to the Saccharomyces cerevisiae SEC15 gene product, which is essential for vesicular traffic from the Golgi apparatus to the cell surface in yeast. It is one of the components of a multiprotein complex required for exocytosis. The 5’ portion of this gene and two neighboring cytochrome p450 genes are included in a deletion that results in an autosomal-dominant form of nonsyndromic optic nerve aplasia (ONA). Alternative splicing and the use of alternative promoters results in multiple transcript variants. A paralogous gene encoding a similar protein is present on chromosome 2. |
| NA | ENSG00000095596 | CYP26A1 | cytochrome P450 family 26 subfamily A member 1 | 1592 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. This endoplasmic reticulum protein acts on retinoids, including all-trans-retinoic acid (RA), with both 4-hydroxylation and 18-hydroxylation activities. This enzyme regulates the cellular level of retinoic acid which is involved in regulation of gene expression in both embryonic and adult tissues. Two alternatively spliced transcript variants of this gene, which encode the distinct isoforms, have been reported. |
| NA | ENSG00000138180 | CEP55 | centrosomal protein 55kDa | 55165 | NA |
| NA | ENSG00000148690 | FRA10AC1 | fragile site, folic acid type, rare, fra(10)(q23.3) or fra(10)(q24.2) candidate 1 | 118924 | The protein encoded by this gene is a nuclear phosphoprotein of unknown function. The 5’ UTR of this gene is part of a CpG island and contains a tandem CGG repeat region that normally consists of 8-14 repeats but can expand to over 200 repeats. The expanded allele becomes hypermethylated and is not transcribed; however, an expanded repeat region has not been associated with any disease phenotype. This gene is found within the rare FRA10A folate-sensitive fragile site. |
| NA | ENSG00000176273 | SLC35G1 | solute carrier family 35 member G1 | 159371 | NA |
| NA | ENSG00000173145 | NOC3L | NOC3 like DNA replication regulator | 64318 | NA |
| NA | ENSG00000108239 | TBC1D12 | TBC1 domain family member 12 | 23232 | NA |
| NA | ENSG00000119969 | HELLS | helicase, lymphoid-specific | 3070 | This gene encodes a lymphoid-specific helicase. Other helicases function in processes involving DNA strand separation, including replication, repair, recombination, and transcription. This protein is thought to be involved with cellular proliferation and may play a role in leukemogenesis. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000095637 | SORBS1 | sorbin and SH3 domain containing 1 | 10580 | This gene encodes a CBL-associated protein which functions in the signaling and stimulation of insulin. Mutations in this gene may be associated with human disorders of insulin resistance. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000059573 | ALDH18A1 | aldehyde dehydrogenase 18 family member A1 | 5832 | This gene is a member of the aldehyde dehydrogenase family and encodes a bifunctional ATP- and NADPH-dependent mitochondrial enzyme with both gamma-glutamyl kinase and gamma-glutamyl phosphate reductase activities. The encoded protein catalyzes the reduction of glutamate to delta1-pyrroline-5-carboxylate, a critical step in the de novo biosynthesis of proline, ornithine and arginine. Mutations in this gene lead to hyperammonemia, hypoornithinemia, hypocitrullinemia, hypoargininemia and hypoprolinemia and may be associated with neurodegeneration, cataracts and connective tissue diseases. Alternatively spliced transcript variants, encoding different isoforms, have been described for this gene. |
| NA | ENSG00000119977 | TCTN3 | tectonic family member 3 | 26123 | This gene encodes a member of the tectonic gene family which functions in Hedgehog signal transduction and development of the neural tube. Mutations in this gene have been associated with Orofaciodigital Syndrome IV and Joubert Syndrom 18. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000138185 | ENTPD1 | ectonucleoside triphosphate diphosphohydrolase 1 | 953 | The protein encoded by this gene is a plasma membrane protein that hydrolyzes extracellular ATP and ADP to AMP. Inhibition of this protein’s activity may confer anticancer benefits. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000107443 | CCNJ | cyclin J | 54619 | NA |
| NA | ENSG00000095587 | TLL2 | tolloid like 2 | 7093 | This gene encodes an astacin-like zinc-dependent metalloprotease and is a subfamily member of the metzincin family. Unlike other family members, a similar protein in mice does not cleave procollagen C-propeptides or chordin. |
| NA | ENSG00000077147 | TM9SF3 | transmembrane 9 superfamily member 3 | 56889 | NA |
| NA | ENSG00000155629 | PIK3AP1 | phosphoinositide-3-kinase adaptor protein 1 | 118788 | NA |
| NA | ENSG00000196233 | LCOR | ligand dependent nuclear receptor corepressor | 84458 | LCOR is a transcriptional corepressor widely expressed in fetal and adult tissues that is recruited to agonist-bound nuclear receptors through a single LxxLL motif, also referred to as a nuclear receptor (NR) box (Fernandes et al., 2003 [PubMed 12535528]). |
| NA | ENSG00000155640 | C10orf12 | chromosome 10 open reading frame 12 | 26148 | NA |
| NA | ENSG00000213390 | ARHGAP19 | Rho GTPase activating protein 19 | 84986 | Members of the ARHGAP family, such as ARHGAP19, encode negative regulators of Rho GTPases (see RHOA; MIM 165390), which are involved in cell migration, proliferation, and differentiation, actin remodeling, and G1 cell cycle progression (Lv et al., 2007 [PubMed 17454002]). |
| NA | ENSG00000165879 | FRAT1 | frequently rearranged in advanced T-cell lymphomas 1 | 10023 | The protein encoded by this gene belongs to the GSK-3-binding protein family. The protein inhibits GSK-3-mediated phosphorylation of beta-catenin and positively regulates the Wnt signaling pathway. It may function in tumor progression and in lymphomagenesis. |
| NA | ENSG00000181274 | FRAT2 | frequently rearranged in advanced T-cell lymphomas 2 | 23401 | The protein encoded by this intronless gene belongs to the GSK-3-binding protein family. Studies show that this protein plays a role as a positive regulator of the WNT signaling pathway. It may be upregulated in tumor progression. |
| NA | ENSG00000052749 | RRP12 | ribosomal RNA processing 12 homolog | 23223 | NA |
| NA | ENSG00000171314 | PGAM1 | phosphoglycerate mutase 1 | 5223 | The protein encoded by this gene is a mutase that catalyzes the reversible reaction of 3-phosphoglycerate (3-PGA) to 2-phosphoglycerate (2-PGA) in the glycolytic pathway. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000171311 | EXOSC1 | exosome component 1 | 51013 | This gene encodes a core component of the exosome. The mammalian exosome is required for rapid degradation of AU rich element-containing RNAs but not for poly(A) shortening. The association of this protein with the exosome is mediated by protein-protein interactions with ribosomal RNA-processing protein 42 and ribosomal RNA-processing protein 46. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000171307 | ZDHHC16 | zinc finger DHHC-type containing 16 | 84287 | NA |
| NA | ENSG00000165886 | UBTD1 | ubiquitin domain containing 1 | 80019 | The degradation of many proteins is carried out by the ubiquitin pathway in which proteins are targeted for degradation by covalent conjugation of the polypeptide ubiquitin. This gene encodes a protein that belongs to the ubiquitin family of proteins. The encoded protein is thought to regulate E2 ubiquitin conjugating enzymes belonging to the UBE2D family. |
| NA | ENSG00000155252 | PI4K2A | phosphatidylinositol 4-kinase type 2 alpha | 55361 | Phosphatidylinositolpolyphosphates (PtdInsPs) are centrally involved in many biologic processes, ranging from cell growth and organization of the actin cytoskeleton to endo- and exocytosis. PI4KII phosphorylates PtdIns at the D-4 position, an essential step in the biosynthesis of PtdInsPs (Barylko et al., 2001 [PubMed 11244087]). |
| NA | ENSG00000171160 | MORN4 | MORN repeat containing 4 | 118812 | NA |
| NA | ENSG00000119986 | AVPI1 | arginine vasopressin induced 1 | 60370 | NA |
| NA | ENSG00000155254 | MARVELD1 | MARVEL domain containing 1 | 83742 | NA |
| NA | ENSG00000155256 | ZFYVE27 | zinc finger FYVE-type containing 27 | 118813 | This gene encodes a protein with several transmembrane domains, a Rab11-binding domain and a lipid-binding FYVE finger domain. The encoded protein appears to promote neurite formation. A mutation in this gene has been reported to be associated with hereditary spastic paraplegia, however the pathogenicity of the mutation, which may simply represent a polymorphism, is unclear. |
| NA | ENSG00000166024 | R3HCC1L | R3H domain and coiled-coil containing 1 like | 27291 | NA |
| NA | ENSG00000107521 | HPS1 | HPS1, biogenesis of lysosomal organelles complex 3 subunit 1 | 3257 | This gene encodes a protein that may play a role in organelle biogenesis associated with melanosomes, platelet dense granules, and lysosomes. The encoded protein is a component of three different protein complexes termed biogenesis of lysosome-related organelles complex (BLOC)-3, BLOC4, and BLOC5. Mutations in this gene are associated with Hermansky-Pudlak syndrome type 1. Alternative splicing results in multiple transcript variants. A pseudogene related to this gene is located on chromosome 22. |
| NA | ENSG00000119946 | CNNM1 | cyclin and CBS domain divalent metal cation transport mediator 1 | 26507 | NA |
| NA | ENSG00000120053 | GOT1 | glutamic-oxaloacetic transaminase 1, soluble | 2805 | Glutamic-oxaloacetic transaminase is a pyridoxal phosphate-dependent enzyme which exists in cytoplasmic and mitochondrial forms, GOT1 and GOT2, respectively. GOT plays a role in amino acid metabolism and the urea and tricarboxylic acid cycles. The two enzymes are homodimeric and show close homology. |
| NA | ENSG00000155287 | SLC25A28 | solute carrier family 25 member 28 | 81894 | NA |
| NA | ENSG00000198018 | ENTPD7 | ectonucleoside triphosphate diphosphohydrolase 7 | 57089 | NA |
| NA | ENSG00000119929 | CUTC | cutC copper transporter | 51076 | Members of the CUT family of copper transporters are associated with copper homeostasis and are involved in the uptake, storage, delivery, and efflux of copper (Gupta et al., 1995 [PubMed 7635807]; Li et al., 2005 [PubMed 16182249]). |
| NA | ENSG00000014919 | COX15 | COX15 cytochrome c oxidase assembly homolog | 1355 | Cytochrome c oxidase (COX), the terminal component of the mitochondrial respiratory chain, catalyzes the electron transfer from reduced cytochrome c to oxygen. This component is a heteromeric complex consisting of 3 catalytic subunits encoded by mitochondrial genes and multiple structural subunits encoded by nuclear genes. The mitochondrially-encoded subunits function in electron transfer, and the nuclear-encoded subunits may function in the regulation and assembly of the complex. This nuclear gene encodes a protein which is not a structural subunit, but may be essential for the biogenesis of COX formation and may function in the hydroxylation of heme O, according to the yeast mutant studies. This protein is predicted to contain 5 transmembrane domains localized in the mitochondrial inner membrane. Alternative splicing of this gene generates two transcript variants diverging in the 3’ region. |
| NA | ENSG00000107554 | DNMBP | dynamin binding protein | 23268 | This gene encodes a protein belonging to the guanine nucleotide exchange factor family, and which regulates the configuration of cell junctions. It contains multiple binding sites for dynamin and thus links dynamin to actin regulatory proteins. Polymorphisms in this gene have been linked to Alzheimer’s disease in some populations, though there are conflicting reports of such linkages in other populations. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000107566 | ERLIN1 | ER lipid raft associated 1 | 10613 | NA |
| NA | ENSG00000213341 | CHUK | conserved helix-loop-helix ubiquitous kinase | 1147 | This gene encodes a member of the serine/threonine protein kinase family. The encoded protein, a component of a cytokine-activated protein complex that is an inhibitor of the essential transcription factor NF-kappa-B complex, phosphorylates sites that trigger the degradation of the inhibitor via the ubiquination pathway, thereby activating the transcription factor. |
| NA | ENSG00000095485 | CWF19L1 | CWF19-like 1, cell cycle control (S. pombe) | 55280 | This gene encodes a member of the CWF19 protein family. Mutations in this gene have been associated with autosomal recessive spinocerebellar ataxia-17 and mild mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000099194 | SCD | stearoyl-CoA desaturase (delta-9-desaturase) | 6319 | This gene encodes an enzyme involved in fatty acid biosynthesis, primarily the synthesis of oleic acid. The protein belongs to the fatty acid desaturase family and is an integral membrane protein located in the endoplasmic reticulum. Transcripts of approximately 3.9 and 5.2 kb, differing only by alternative polyadenlyation signals, have been detected. A gene encoding a similar enzyme is located on chromosome 4 and a pseudogene of this gene is located on chromosome 17. |
| NA | ENSG00000075826 | SEC31B | SEC31 homolog B, COPII coat complex component | 25956 | This gene encodes a protein of unknown function. The protein has moderate similarity to rat VAP1 protein which is an endosomal membrane-associated protein, containing a putative Ca2+/calmodulin-dependent kinase II phosphorylation site. |
| NA | ENSG00000166136 | NDUFB8 | NADH:ubiquinone oxidoreductase subunit B8 | 4714 | NA |
| NA | ENSG00000166135 | HIF1AN | hypoxia inducible factor 1 alpha subunit inhibitor | 55662 | NA |
| NA | ENSG00000055950 | MRPL43 | mitochondrial ribosomal protein L43 | 84545 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. This gene and the gene for a semaphorin class 4 protein (SEMA4G) overlap at map location 10q24.31 and are transcribed in opposite directions. Sequence analysis identified multiple transcript variants encoding at least four different protein isoforms. |
| NA | ENSG00000095539 | SEMA4G | semaphorin 4G | 57715 | Semaphorins are a large family of conserved secreted and membrane associated proteins which possess a semaphorin (Sema) domain and a PSI domain (found in plexins, semaphorins and integrins) in the N-terminal extracellular portion. Based on sequence and structural similarities, semaphorins are put into eight classes: invertebrates contain classes 1 and 2, viruses have class V, and vertebrates contain classes 3-7. Semaphorins serve as axon guidance ligands via multimeric receptor complexes, some (if not all) containing plexin proteins. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000107815 | C10orf2 | chromosome 10 open reading frame 2 | 56652 | This gene encodes a hexameric DNA helicase which unwinds short stretches of double-stranded DNA in the 5’ to 3’ direction and, along with mitochondrial single-stranded DNA binding protein and mtDNA polymerase gamma, is thought to play a key role in mtDNA replication. The protein localizes to the mitochondrial matrix and mitochondrial nucleoids. Mutations in this gene cause infantile onset spinocerebellar ataxia (IOSCA) and progressive external ophthalmoplegia (PEO) and are also associated with several mitochondrial depletion syndromes. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000107816 | LZTS2 | leucine zipper, putative tumor suppressor 2 | 84445 | The protein encoded by this gene belongs to the leucine zipper tumor suppressor family of proteins, which function in transcription regulation and cell cycle control. This family member can repress beta-catenin-mediated transcriptional activation and is a negative regulator of the Wnt signaling pathway. It negatively regulates microtubule severing at centrosomes, and is necessary for central spindle formation and cytokinesis completion. It is implicated in cancer, where it may inhibit cell proliferation and decrease susceptibility to tumor development. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000166171 | DPCD | deleted in primary ciliary dyskinesia homolog (mouse) | 25911 | NA |
| NA | ENSG00000166169 | POLL | polymerase (DNA) lambda | 27343 | This gene encodes a DNA polymerase. DNA polymerases catalyze DNA-template-directed extension of the 3’-end of a DNA strand. This particular polymerase, which is a member of the X family of DNA polymerases, likely plays a role in non-homologous end joining and other DNA repair processes. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000107829 | FBXW4 | F-box and WD repeat domain containing 4 | 6468 | This gene is a member of the F-box/WD-40 gene family, which recruit specific target proteins through their WD-40 protein-protein binding domains for ubiquitin mediated degradation. In mouse, a highly similar protein is thought to be responsible for maintaining the apical ectodermal ridge of developing limb buds; disruption of the mouse gene results in the absence of central digits, underdeveloped or absent metacarpal/metatarsal bones and syndactyly. This phenotype is remarkably similar to split hand-split foot malformation in humans, a clinically heterogeneous condition with a variety of modes of transmission. An autosomal recessive form has been mapped to the chromosomal region where this gene is located, and complex rearrangements involving duplications of this gene and others have been associated with the condition. A pseudogene of this locus has been mapped to one of the introns of the BCR gene on chromosome 22. |
| NA | ENSG00000107833 | NPM3 | nucleophosmin/nucleoplasmin 3 | 10360 | The protein encoded by this gene is related to the nuclear chaperone phosphoproteins, nucleoplasmin and nucleophosmin. This protein is strongly expressed in diverse cell types where it localizes primarily to the nucleus. Based on its similarity to nucleoplasmin and nucleophosmin, this protein likely functions as a molecular chaperone in the cell nucleus. |
| NA | ENSG00000198408 | MGEA5 | meningioma expressed antigen 5 (hyaluronidase) | 10724 | The dynamic modification of cytoplasmic and nuclear proteins by O-linked N-acetylglucosamine (O-GlcNAc) addition and removal on serine and threonine residues is catalyzed by OGT (MIM 300255), which adds O-GlcNAc, and MGEA5, a glycosidase that removes O-GlcNAc modifications (Gao et al., 2001 [PubMed 11148210]). |
| NA | ENSG00000120029 | C10orf76 | chromosome 10 open reading frame 76 | 79591 | NA |
| NA | ENSG00000166189 | HPS6 | HPS6, biogenesis of lysosomal organelles complex 2 subunit 3 | 79803 | This intronless gene encodes a protein that may play a role in organelle biogenesis associated with melanosomes, platelet dense granules, and lysosomes. This protein interacts with Hermansky-Pudlak syndrome 5 protein. Mutations in this gene are associated with Hermansky-Pudlak syndrome type 6. |
| NA | ENSG00000198728 | LDB1 | LIM domain binding 1 | 8861 | NA |
| NA | ENSG00000148840 | PPRC1 | peroxisome proliferator-activated receptor gamma, coactivator-related 1 | 23082 | The protein encoded by this gene is similar to PPAR-gamma coactivator 1 (PPARGC1/PGC-1), a protein that can activate mitochondrial biogenesis in part through a direct interaction with nuclear respiratory factor 1 (NRF1). This protein has been shown to interact with NRF1. It is thought to be a functional relative of PPAR-gamma coactivator 1 that activates mitochondrial biogenesis through NRF1 in response to proliferative signals. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166197 | NOLC1 | nucleolar and coiled-body phosphoprotein 1 | 9221 | NA |
| NA | ENSG00000107862 | GBF1 | golgi brefeldin A resistant guanine nucleotide exchange factor 1 | 8729 | This gene encodes a member of the Sec7 domain family. The encoded protein is a guanine nucleotide exchange factor that regulates the recruitment of proteins to membranes by mediating GDP to GTP exchange. The encoded protein is localized to the Golgi apparatus and plays a role in vesicular trafficking by activating ADP ribosylation factor 1. The encoded protein has also been identified as an important host factor for viral replication. Multiple transcript variants have been observed for this gene. |
| NA | ENSG00000077150 | NFKB2 | nuclear factor of kappa light polypeptide gene enhancer in B-cells 2 | 4791 | This gene encodes a subunit of the transcription factor complex nuclear factor-kappa-B (NFkB). The NFkB complex is expressed in numerous cell types and functions as a central activator of genes involved in inflammation and immune function. The protein encoded by this gene can function as both a transcriptional activator or repressor depending on its dimerization partner. The p100 full-length protein is co-translationally processed into a p52 active form. Chromosomal rearrangements and translocations of this locus have been observed in B cell lymphomas, some of which may result in the formation of fusion proteins. There is a pseudogene for this gene on chromosome 18. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000107872 | FBXL15 | F-box and leucine-rich repeat protein 15 | 79176 | NA |
| NA | ENSG00000138111 | MFSD13A | major facilitator superfamily domain containing 13A | 79847 | NA |
| NA | ENSG00000138107 | ACTR1A | ARP1 actin-related protein 1 homolog A, centractin alpha (yeast) | 10121 | This gene encodes a 42.6 kD subunit of dynactin, a macromolecular complex consisting of 10-11 subunits ranging in size from 22 to 150 kD. Dynactin binds to both microtubules and cytoplasmic dynein. It is involved in a diverse array of cellular functions, including ER-to-Golgi transport, the centripetal movement of lysosomes and endosomes, spindle formation, chromosome movement, nuclear positioning, and axonogenesis. This subunit is present in 8-13 copies per dynactin molecule, and is the most abundant molecule in the dynactin complex. It is an actin-related protein, and is approximately 60% identical at the amino acid level to conventional actin. |
| NA | ENSG00000107882 | SUFU | SUFU negative regulator of hedgehog signaling | 51684 | The Hedgehog signaling pathway plays an important role in early human development. The pathway is a signaling cascade that plays a role in pattern formation and cellular proliferation during development. This gene encodes a negative regulator of the hedgehog signaling pathway. Defects in this gene are a cause of medulloblastoma. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171206 | TRIM8 | tripartite motif containing 8 | 81603 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. This protein localizes to nuclear bodies. Its structure is similar to some tumor suppressor proteins and its gene maps to a locus thought to contain tumor suppressor genes. |
| NA | ENSG00000156398 | SFXN2 | sideroflexin 2 | 118980 | NA |
| NA | ENSG00000166272 | WBP1L | WW domain binding protein 1-like | 54838 | NA |
| NA | ENSG00000166275 | BORCS7 | BLOC-1 related complex subunit 7 | 119032 | NA |
| NA | ENSG00000148842 | CNNM2 | cyclin and CBS domain divalent metal cation transport mediator 2 | 54805 | This gene encodes a member of the ancient conserved domain containing protein family. Members of this protein family contain a cyclin box motif and have structural similarity to the cyclins. The encoded protein may play an important role in magnesium homeostasis by mediating the epithelial transport and renal reabsorption of Mg2+. Mutations in this gene are associated with renal hypomagnesemia. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000076685 | NT5C2 | 5’-nucleotidase, cytosolic II | 22978 | This gene encodes a hydrolase that serves as an important role in cellular purine metabolism by acting primarily on inosine 5’-monophosphate and other purine nucleotides. |
| NA | ENSG00000235376 | RPEL1 | ribulose-5-phosphate-3-epimerase-like 1 | 729020 | NA |
| NA | ENSG00000156374 | PCGF6 | polycomb group ring finger 6 | 84108 | The protein encoded by this gene contains a RING finger motif, which is most closely related to those of polycomb group (PcG) proteins RNF110/MEL-18 and BMI1. PcG proteins are known to form protein complexes and function as transcription repressors. This protein has been shown to interact with some PcG proteins and act as a transcription repressor. The activity of this protein is found to be regulated by cell cycle dependent phosphorylation. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000148835 | TAF5 | TATA-box binding protein associated factor 5 | 6877 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes an integral subunit of TFIID associated with all transcriptionally competent forms of that complex. This subunit interacts strongly with two TFIID subunits that show similarity to histones H3 and H4, and it may participate in forming a nucleosome-like core in the TFIID complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000173915 | USMG5 | up-regulated during skeletal muscle growth 5 homolog (mouse) | 84833 | NA |
| NA | ENSG00000148843 | PDCD11 | programmed cell death 11 | 22984 | PDCD11 is a NF-kappa-B (NFKB1; 164011)-binding protein that colocalizes with U3 RNA (MIM 180710) in the nucleolus and is required for rRNA maturation and generation of 18S rRNA (Sweet et al., 2003 [PubMed 14624448]; Sweet et al., 2008 [PubMed 17654514]). |
| NA | ENSG00000107957 | SH3PXD2A | SH3 and PX domains 2A | 9644 | NA |
| NA | ENSG00000107960 | OBFC1 | oligonucleotide/oligosaccharide-binding fold containing 1 | 79991 | OBFC1 and C17ORF68 (MIM 613129) are subunits of an alpha accessory factor (AAF) that stimulates the activity of DNA polymerase-alpha-primase (see MIM 176636), the enzyme that initiates DNA replication (Casteel et al., 2009 [PubMed 19119139]). OBFC1 also appears to function in a telomere-associated complex with C17ORF68 and TEN1 (C17ORF106; MIM 613130) (Miyake et al., 2009 [PubMed 19854130]). |
| NA | ENSG00000065613 | SLK | STE20 like kinase | 9748 | NA |
| NA | ENSG00000156384 | SFR1 | SWI5 dependent homologous recombination repair protein 1 | 119392 | NA |
| NA | ENSG00000148834 | GSTO1 | glutathione S-transferase omega 1 | 9446 | The protein encoded by this gene is an omega class glutathione S-transferase (GST) with glutathione-dependent thiol transferase and dehydroascorbate reductase activities. GSTs are involved in the metabolism of xenobiotics and carcinogens. The encoded protein acts as a homodimer and is found in the cytoplasm. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000065621 | GSTO2 | glutathione S-transferase omega 2 | 119391 | The protein encoded by this gene is an omega class glutathione S-transferase (GST). GSTs are involved in the metabolism of xenobiotics and carcinogens. Four transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000148841 | ITPRIP | inositol 1,4,5-trisphosphate receptor interacting protein | 85450 | This gene encodes a membrane-associated protein that binds the inositol 1,4,5-trisphosphate receptor (ITPR). The encoded protein enhances the sensitivity of ITPR to intracellular calcium signaling. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000156395 | SORCS3 | sortilin related VPS10 domain containing receptor 3 | 22986 | This gene encodes a type-I receptor transmembrane protein that is a member of the vacuolar protein sorting 10 receptor family. Proteins of this family are defined by a vacuolar protein sorting 10 domain at the N-terminus. The N-terminal segment of this domain has a consensus motif for proprotein convertase processing, and the C-terminal segment of this domain is characterized by ten conserved cysteine residues. The vacuolar protein sorting 10 domain is followed by a leucine-rich segment, a transmembrane domain, and a short C-terminal cytoplasmic domain that interacts with adaptor molecules. The transcript is expressed at high levels in the brain, and candidate gene studies suggest that genetic variation in this gene is associated with Alzheimer’s disease. Consistent with this observation, knockdown of the gene in cell culture results in an increase in amyloid precursor protein processing. |
| NA | ENSG00000108018 | SORCS1 | sortilin related VPS10 domain containing receptor 1 | 114815 | This gene encodes one family member of vacuolar protein sorting 10 (VPS10) domain-containing receptor proteins. The VPS10 domain name comes from the yeast carboxypeptidase Y sorting receptor Vps10 protein. Members of this gene family are large with many exons but the CDS lengths are usually less than 3700 nt. Very large introns typically separate the exons encoding the VPS10 domain; the remaining exons are separated by much smaller-sized introns. These genes are strongly expressed in the central nervous system. Two of the five family members (sortilin and sortilin-related receptor) are synthesized as preproproteins; it is not yet known if this encoded protein is also a preproprotein. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000108039 | XPNPEP1 | X-prolyl aminopeptidase (aminopeptidase P) 1, soluble | 7511 | This gene encodes the cytosolic form of a metalloaminopeptidase that catalyzes the cleavage of the N-terminal amino acid adjacent to a proline residue. The gene product may play a role in degradation and maturation of tachykinins, neuropeptides, and peptide hormones. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000119950 | MXI1 | MAX interactor 1, dimerization protein | 4601 | Expression of the c-myc gene, which produces an oncogenic transcription factor, is tightly regulated in normal cells but is frequently deregulated in human cancers. The protein encoded by this gene is a transcriptional repressor thought to negatively regulate MYC function, and is therefore a potential tumor suppressor. This protein inhibits the transcriptional activity of MYC by competing for MAX, another basic helix-loop-helix protein that binds to MYC and is required for its function. Defects in this gene are frequently found in patients with prostate tumors. Three alternatively spliced transcripts encoding different isoforms have been described. Additional alternatively spliced transcripts may exist but the products of these transcripts have not been verified experimentally. |
| NA | ENSG00000119953 | SMNDC1 | survival motor neuron domain containing 1 | 10285 | This gene is a paralog of SMN1 gene, which encodes the survival motor neuron protein, mutations in which are cause of autosomal recessive proximal spinal muscular atrophy. The protein encoded by this gene is a nuclear protein that has been identified as a constituent of the spliceosome complex. This gene is differentially expressed, with abundant levels in skeletal muscle, and may share similar cellular function as the SMN1 gene. |
| NA | ENSG00000138166 | DUSP5 | dual specificity phosphatase 5 | 1847 | The protein encoded by this gene is a member of the dual specificity protein phosphatase subfamily. These phosphatases inactivate their target kinases by dephosphorylating both the phosphoserine/threonine and phosphotyrosine residues. They negatively regulate members of the mitogen-activated protein (MAP) kinase superfamily (MAPK/ERK, SAPK/JNK, p38), which are associated with cellular proliferation and differentiation. Different members of the family of dual specificity phosphatases show distinct substrate specificities for various MAP kinases, different tissue distribution and subcellular localization, and different modes of inducibility of their expression by extracellular stimuli. This gene product inactivates ERK1, is expressed in a variety of tissues with the highest levels in pancreas and brain, and is localized in the nucleus. |
| NA | ENSG00000108055 | SMC3 | structural maintenance of chromosomes 3 | 9126 | This gene belongs to the SMC3 subfamily of SMC proteins. The encoded protein occurs in certain cell types as either an intracellular, nuclear protein or a secreted protein. The nuclear form, known as structural maintenance of chromosomes 3, is a component of the multimeric cohesin complex that holds together sister chromatids during mitosis, enabling proper chromosome segregation. Post-translational modification of the encoded protein by the addition of chondroitin sulfate chains gives rise to the secreted proteoglycan bamacan, an abundant basement membrane protein. |
| NA | ENSG00000108061 | SHOC2 | SHOC2 leucine-rich repeat scaffold protein | 8036 | This gene encodes a protein that consists almost entirely of leucine-rich repeats, a domain implicated in protein-protein interactions. The protein may function as a scaffold linking RAS to downstream signal transducers in the RAS/ERK MAP kinase signaling cascade. Mutations in this gene have been associated with Noonan-like syndrome with loose anagen hair. |
| NA | ENSG00000150594 | ADRA2A | adrenoceptor alpha 2A | 150 | Alpha-2-adrenergic receptors are members of the G protein-coupled receptor superfamily. They include 3 highly homologous subtypes: alpha2A, alpha2B, and alpha2C. These receptors have a critical role in regulating neurotransmitter release from sympathetic nerves and from adrenergic neurons in the central nervous system. Studies in mouse revealed that both the alpha2A and alpha2C subtypes were required for normal presynaptic control of transmitter release from sympathetic nerves in the heart and from central noradrenergic neurons; the alpha2A subtype inhibited transmitter release at high stimulation frequencies, whereas the alpha2C subtype modulated neurotransmission at lower levels of nerve activity. This gene encodes alpha2A subtype and it contains no introns in either its coding or untranslated sequences. |
| NA | ENSG00000119927 | GPAM | glycerol-3-phosphate acyltransferase, mitochondrial | 57678 | This gene encodes a mitochondrial enzyme which prefers saturated fatty acids as its substrate for the synthesis of glycerolipids. This metabolic pathway’s first step is catalyzed by the encoded enzyme. Two forms for this enzyme exist, one in the mitochondria and one in the endoplasmic reticulum. Two alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000023041 | ZDHHC6 | zinc finger DHHC-type containing 6 | 64429 | NA |
| NA | ENSG00000151532 | VTI1A | vesicle transport through interaction with t-SNAREs 1A | 143187 | The protein encoded by this gene is a member of the family of soluble N-ethylmaleimide-sensitive fusion protein-attachment protein receptors (SNAREs) that function in intracellular trafficking. This family member is involved in vesicular transport between endosomes and the trans-Golgi network. It is a vesicle-associated SNARE (v-SNARE) that interacts with target membrane SNAREs (t-SNAREs). Polymorphisms in this gene have been associated with binocular function, and also with susceptibility to colorectal and lung cancers. A recurrent rearrangement has been found between this gene and the transcription factor 7-like 2 (TCF7L2) gene in colorectal cancers. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000148737 | TCF7L2 | transcription factor 7 like 2 | 6934 | This gene encodes a high mobility group (HMG) box-containing transcription factor that plays a key role in the Wnt signaling pathway. The protein has been implicated in blood glucose homeostasis. Genetic variants of this gene are associated with increased risk of type 2 diabetes. Several transcript variants encoding multiple different isoforms have been found for this gene. |
| NA | ENSG00000165806 | CASP7 | caspase 7 | 840 | This gene encodes a member of the cysteine-aspartic acid protease (caspase) family. Sequential activation of caspases plays a central role in the execution-phase of cell apoptosis. Caspases exist as inactive proenzymes which undergo proteolytic processing at conserved aspartic residues to produce two subunits, large and small, that dimerize to form the active enzyme. The precursor of the encoded protein is cleaved by caspase 3 and 10, is activated upon cell death stimuli and induces apoptosis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000198924 | DCLRE1A | DNA cross-link repair 1A | 9937 | This gene encodes a conserved protein that is involved in the repair of DNA interstrand cross-links. DNA cross-links suppress transcription, replication, and DNA segregation. The encoded protein is a regulator of the mitotic cell cycle checkpoint. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196865 | NHLRC2 | NHL repeat containing 2 | 374354 | NA |
| NA | ENSG00000165813 | CCDC186 | coiled-coil domain containing 186 | 55088 | NA |
| NA | ENSG00000169129 | AFAP1L2 | actin filament associated protein 1 like 2 | 84632 | NA |
| NA | ENSG00000151553 | FAM160B1 | family with sequence similarity 160 member B1 | 57700 | NA |
| NA | ENSG00000165832 | TRUB1 | TruB pseudouridine (psi) synthase family member 1 | 142940 | Pseudouridine is an abundant component of rRNAs and tRNAs and is enzymatically generated by isomerization of uridine by pseudouridine synthase (Zucchini et al., 2003 [PubMed 12736709]). |
| NA | ENSG00000107518 | ATRNL1 | attractin like 1 | 26033 | NA |
| NA | ENSG00000182645 | CCDC172 | coiled-coil domain containing 172 | 374355 | NA |
| NA | ENSG00000165863 | C10orf82 | chromosome 10 open reading frame 82 | 143379 | NA |
| NA | ENSG00000187164 | SHTN1 | shootin 1 | 57698 | NA |
| NA | ENSG00000165646 | SLC18A2 | solute carrier family 18 member A2 | 6571 | The vesicular monoamine transporter acts to accumulate cytosolic monoamines into synaptic vesicles, using the proton gradient maintained across the synaptic vesicular membrane. Its proper function is essential to the correct activity of the monoaminergic systems that have been implicated in several human neuropsychiatric disorders. The transporter is a site of action of important drugs, including reserpine and tetrabenazine (summary by Peter et al., 1993 [PubMed 7905859]). See also SLC18A1 (MIM 193002). |
| NA | ENSG00000107560 | RAB11FIP2 | RAB11 family interacting protein 2 (class I) | 22841 | NA |
| NA | ENSG00000165669 | FAM204A | family with sequence similarity 204 member A | 63877 | NA |
| NA | ENSG00000151893 | CACUL1 | CDK2 associated cullin domain 1 | 143384 | NA |
| NA | ENSG00000188613 | NANOS1 | nanos homolog 1 (Drosophila) | 340719 | This gene encodes a CCHC-type zinc finger protein that is a member of the nanos family. This protein co-localizes with the RNA-binding protein pumilio RNA-binding family member 2 and may be involved in regulating translation as a post-transcriptional repressor. Mutations in this gene are associated with spermatogenic impairment. |
| NA | ENSG00000107581 | EIF3A | eukaryotic translation initiation factor 3 subunit A | 8661 | NA |
| NA | ENSG00000119979 | FAM45A | family with sequence similarity 45 member A | 404636 | NA |
| NA | ENSG00000183605 | SFXN4 | sideroflexin 4 | 119559 | This gene encodes a member of the sideroflexin family. The encoded protein is a transmembrane protein of the inner mitochondrial membrane, and is required for mitochondrial respiratory homeostasis and erythropoiesis. Mutations in this gene are associated with mitochondriopathy and macrocytic anemia. Alternatively spliced transcript variants have been found in this gene. |
| NA | ENSG00000165672 | PRDX3 | peroxiredoxin 3 | 10935 | This gene encodes a mitochondrial protein with antioxidant function. The protein is similar to the C22 subunit of Salmonella typhimurium alkylhydroperoxide reductase, and it can rescue bacterial resistance to alkylhydroperoxide in E. coli that lack the C22 subunit. The human and mouse genes are highly conserved, and they map to the regions syntenic between mouse and human chromosomes. Sequence comparisons with recently cloned mammalian homologs suggest that these genes consist of a family that is responsible for the regulation of cellular proliferation, differentiation and antioxidant functions. This family member can protect cells from oxidative stress, and it can promote cell survival in prostate cancer. Alternative splicing of this gene results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 1, 3, 13 and 22. |
| NA | ENSG00000198873 | GRK5 | G protein-coupled receptor kinase 5 | 2869 | This gene encodes a member of the guanine nucleotide-binding protein (G protein)-coupled receptor kinase subfamily of the Ser/Thr protein kinase family. The protein phosphorylates the activated forms of G protein-coupled receptors thus initiating their deactivation. It has also been shown to play a role in regulating the motility of polymorphonuclear leukocytes (PMNs). |
| NA | ENSG00000148908 | RGS10 | regulator of G-protein signaling 10 | 6001 | Regulator of G protein signaling (RGS) family members are regulatory molecules that act as GTPase activating proteins (GAPs) for G alpha subunits of heterotrimeric G proteins. RGS proteins are able to deactivate G protein subunits of the Gi alpha, Go alpha and Gq alpha subtypes. They drive G proteins into their inactive GDP-bound forms. Regulator of G protein signaling 10 belongs to this family. All RGS proteins share a conserved 120-amino acid sequence termed the RGS domain. This protein associates specifically with the activated forms of the two related G-protein subunits, G-alphai3 and G-alphaz but fails to interact with the structurally and functionally distinct G-alpha subunits. Regulator of G protein signaling 10 protein is localized in the nucleus. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000151929 | BAG3 | BCL2 associated athanogene 3 | 9531 | BAG proteins compete with Hip for binding to the Hsc70/Hsp70 ATPase domain and promote substrate release. All the BAG proteins have an approximately 45-amino acid BAG domain near the C terminus but differ markedly in their N-terminal regions. The protein encoded by this gene contains a WW domain in the N-terminal region and a BAG domain in the C-terminal region. The BAG domains of BAG1, BAG2, and BAG3 interact specifically with the Hsc70 ATPase domain in vitro and in mammalian cells. All 3 proteins bind with high affinity to the ATPase domain of Hsc70 and inhibit its chaperone activity in a Hip-repressible manner. |
| NA | ENSG00000198825 | INPP5F | inositol polyphosphate-5-phosphatase F | 22876 | The protein encoded by this gene is an inositol 1,4,5-trisphosphate (InsP3) 5-phosphatase and contains a Sac domain. The activity of this protein is specific for phosphatidylinositol 4,5-bisphosphate and phosphatidylinositol 3,4,5-trisphosphate. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000197771 | MCMBP | minichromosome maintenance complex binding protein | 79892 | This gene encodes a protein which is a component of the hexameric minichromosome maintenance (MCM) complex which regulates initiation and elongation of DNA. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000107651 | SEC23IP | SEC23 interacting protein | 11196 | This gene encodes a member of the phosphatidic acid preferring-phospholipase A1 family. The encoded protein is localized to endoplasmic reticulum exit sites and plays a critical role in ER-Golgi transport as part of the multimeric coat protein II complex. An orthologous gene in frogs is required for normal neural crest cell development, suggesting that this gene may play a role in Waardenburg syndrome neural crest defects. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000066468 | FGFR2 | fibroblast growth factor receptor 2 | 2263 | The protein encoded by this gene is a member of the fibroblast growth factor receptor family, where amino acid sequence is highly conserved between members and throughout evolution. FGFR family members differ from one another in their ligand affinities and tissue distribution. A full-length representative protein consists of an extracellular region, composed of three immunoglobulin-like domains, a single hydrophobic membrane-spanning segment and a cytoplasmic tyrosine kinase domain. The extracellular portion of the protein interacts with fibroblast growth factors, setting in motion a cascade of downstream signals, ultimately influencing mitogenesis and differentiation. This particular family member is a high-affinity receptor for acidic, basic and/or keratinocyte growth factor, depending on the isoform. Mutations in this gene are associated with Crouzon syndrome, Pfeiffer syndrome, Craniosynostosis, Apert syndrome, Jackson-Weiss syndrome, Beare-Stevenson cutis gyrata syndrome, Saethre-Chotzen syndrome, and syndromic craniosynostosis. Multiple alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000107669 | ATE1 | arginyltransferase 1 | 11101 | This gene encodes an arginyltransferase, an enzyme that is involved in posttranslational conjugation of arginine to N-terminal aspartate or glutamate residues. Conjugation of arginine to the N-terminal aspartate or glutamate targets proteins for ubiquitin-dependent degradation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000107672 | NSMCE4A | NSE4 homolog A, SMC5-SMC6 complex component | 54780 | NA |
| NA | ENSG00000138162 | TACC2 | transforming acidic coiled-coil containing protein 2 | 10579 | Transforming acidic coiled-coil proteins are a conserved family of centrosome- and microtubule-interacting proteins that are implicated in cancer. This gene encodes a protein that concentrates at centrosomes throughout the cell cycle. This gene lies within a chromosomal region associated with tumorigenesis. Expression of this gene is induced by erythropoietin and is thought to affect the progression of breast tumors. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000166033 | HTRA1 | HtrA serine peptidase 1 | 5654 | This gene encodes a member of the trypsin family of serine proteases. This protein is a secreted enzyme that is proposed to regulate the availability of insulin-like growth factors (IGFs) by cleaving IGF-binding proteins. It has also been suggested to be a regulator of cell growth. Variations in the promoter region of this gene are the cause of susceptibility to age-related macular degeneration type 7. |
| NA | ENSG00000119965 | C10orf88 | chromosome 10 open reading frame 88 | 80007 | NA |
| NA | ENSG00000179988 | PSTK | phosphoseryl-tRNA kinase | 118672 | NA |
| NA | ENSG00000095574 | IKZF5 | IKAROS family zinc finger 5 | 64376 | Members of the Ikaros (ZNFN1A1; MIM 603023) family of transcription factors, which includes Pegasus, are expressed in lymphocytes and are implicated in the control of lymphoid development. |
| NA | ENSG00000196177 | ACADSB | acyl-CoA dehydrogenase, short/branched chain | 36 | Short/branched chain acyl-CoA dehydrogenase(ACADSB) is a member of the acyl-CoA dehydrogenase family of enzymes that catalyze the dehydrogenation of acyl-CoA derivatives in the metabolism of fatty acids or branch chained amino acids. Substrate specificity is the primary characteristic used to define members of this gene family. The ACADSB gene product has the greatest activity towards the short branched chain acyl-CoA derivative, (S)-2-methylbutyryl-CoA, but also reacts significantly with other 2-methyl branched chain substrates and with short straight chain acyl-CoAs. The cDNA encodes for a mitochondrial precursor protein which is cleaved upon mitochondrial import and predicted to yield a mature peptide of approximately 43.7-KDa. |
| NA | ENSG00000188816 | HMX2 | H6 family homeobox 2 | 3167 | The protein encoded by this gene is a member of the NKL homeobox family of transcription factors. Members in this family are of ancient origin and play an important role in organ development during embryogenesis. A related mouse protein plays a role in patterning of inner ear structures. In humans, variations in a region containing this gene have been associated with inner ear malformations, vestibular dysfunction, and hearing loss. |
| NA | ENSG00000154473 | BUB3 | BUB3, mitotic checkpoint protein | 9184 | This gene encodes a protein involved in spindle checkpoint function. The encoded protein contains four WD repeat domains and has sequence similarity with the yeast BUB3 protein. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000121898 | CPXM2 | carboxypeptidase X (M14 family), member 2 | 119587 | NA |
| NA | ENSG00000182022 | CHST15 | carbohydrate (N-acetylgalactosamine 4-sulfate 6-O) sulfotransferase 15 | 51363 | Chondroitin sulfate (CS) is a glycosaminoglycan which is an important structural component of the extracellular matrix and which links to proteins to form proteoglycans. Chondroitin sulfate E (CS-E) is an isomer of chondroitin sulfate in which the C-4 and C-6 hydroxyl groups are sulfated. This gene encodes a type II transmembrane glycoprotein that acts as a sulfotransferase to transfer sulfate to the C-6 hydroxal group of chondroitin sulfate. This gene has also been identified as being co-expressed with RAG1 in B-cells and as potentially acting as a B-cell surface signaling receptor. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000065154 | OAT | ornithine aminotransferase | 4942 | This gene encodes the mitochondrial enzyme ornithine aminotransferase, which is a key enzyme in the pathway that converts arginine and ornithine into the major excitatory and inhibitory neurotransmitters glutamate and GABA. Mutations that result in a deficiency of this enzyme cause the autosomal recessive eye disease Gyrate Atrophy. Alternatively spliced transcript variants encoding different isoforms have been described. Related pseudogenes have been defined on the X chromosome. |
| NA | ENSG00000107902 | LHPP | phospholysine phosphohistidine inorganic pyrophosphate phosphatase | 64077 | NA |
| NA | ENSG00000189319 | FAM53B | family with sequence similarity 53 member B | 9679 | NA |
| NA | ENSG00000203791 | METTL10 | methyltransferase like 10 | 399818 | NA |
| NA | ENSG00000165660 | FAM175B | family with sequence similarity 175 member B | 23172 | NA |
| NA | ENSG00000175029 | CTBP2 | C-terminal binding protein 2 | 1488 | This gene produces alternative transcripts encoding two distinct proteins. One protein is a transcriptional repressor, while the other isoform is a major component of specialized synapses known as synaptic ribbons. Both proteins contain a NAD+ binding domain similar to NAD+-dependent 2-hydroxyacid dehydrogenases. A portion of the 3’ untranslated region was used to map this gene to chromosome 21q21.3; however, it was noted that similar loci elsewhere in the genome are likely. Blast analysis shows that this gene is present on chromosome 10. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000107938 | EDRF1 | erythroid differentiation regulatory factor 1 | 26098 | This gene may play a role in erythroid cell differentiation. The encoded protein inhibits DNA binding of the erythroid transcription factor GATA-1 and may regulate the expression of alpha-globin and gamma-globin. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000188690 | UROS | uroporphyrinogen III synthase | 7390 | The protein encoded by this gene catalyzes the fourth step of porphyrin biosynthesis in the heme biosynthetic pathway. Defects in this gene cause congenital erythropoietic porphyria (Gunther’s disease). |
| NA | ENSG00000107949 | BCCIP | BRCA2 and CDKN1A interacting protein | 56647 | This gene product was isolated on the basis of its interaction with BRCA2 and p21 proteins. It is an evolutionarily conserved nuclear protein with multiple interacting domains. The N-terminal half shares moderate homology with regions of calmodulin and M-calpain, suggesting that it may also bind calcium. Functional studies indicate that this protein may be an important cofactor for BRCA2 in tumor suppression, and a modulator of CDK2 kinase activity via p21. This protein has also been implicated in the regulation of BRCA2 and RAD51 nuclear focus formation, double-strand break-induced homologous recombination, and cell cycle progression. Multiple transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000089876 | DHX32 | DEAH-box helicase 32 (putative) | 55760 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a member of this family. The function of this member has not been determined. Alternative splicing of this gene generates 2 transcript variants, but the full length nature of one of the variants has not been defined. |
| NA | ENSG00000150760 | DOCK1 | dedicator of cytokinesis 1 | 1793 | This gene encodes a member of the dedicator of cytokinesis protein family. Dedicator of cytokinesis proteins act as guanine nucleotide exchange factors for small Rho family G proteins. The encoded protein regulates the small GTPase Rac, thereby influencing several biological processes, including phagocytosis and cell migration. Overexpression of this gene has also been associated with certain cancers. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000132334 | PTPRE | protein tyrosine phosphatase, receptor type E | 5791 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. Several alternatively spliced transcript variants of this gene have been reported, at least two of which encode a receptor-type PTP that possesses a short extracellular domain, a single transmembrane region, and two tandem intracytoplasmic catalytic domains; another one encodes a PTP that contains a distinct hydrophilic N-terminus, and thus represents a nonreceptor-type isoform of this PTP. Studies of the similar gene in mice suggested the regulatory roles of this PTP in RAS related signal transduction pathways, cytokine-induced SATA signaling, as well as the activation of voltage-gated K+ channels. |
| NA | ENSG00000148773 | MKI67 | marker of proliferation Ki-67 | 4288 | This gene encodes a nuclear protein that is associated with and may be necessary for cellular proliferation. Alternatively spliced transcript variants have been described. A related pseudogene exists on chromosome X. |
| NA | ENSG00000108010 | GLRX3 | glutaredoxin 3 | 10539 | This gene encodes a member of the glutaredoxin family. Glutaredoxins are oxidoreductase enzymes that reduce a variety of substrates using glutathione as a cofactor. The encoded protein binds to and modulates the function of protein kinase C theta. The encoded protein may also inhibit apoptosis and play a role in cellular growth, and the expression of this gene may be a marker for cancer. Pseudogenes of this gene are located on the short arm of chromosomes 6 and 9. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000176769 | TCERG1L | transcription elongation regulator 1 like | 256536 | NA |
| NA | ENSG00000151640 | DPYSL4 | dihydropyrimidinase like 4 | 10570 | NA |
| NA | ENSG00000165752 | STK32C | serine/threonine kinase 32C | 282974 | The protein encoded by this gene is a member of the serine/threonine protein kinase family. It is thought that this family member is functional in brain due to its high expression levels there. DNA methylation differences have been found in this gene in monozygotic twins that are discordant for adolescent depression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171813 | PWWP2B | PWWP domain containing 2B | 170394 | NA |
| NA | ENSG00000068383 | INPP5A | inositol polyphosphate-5-phosphatase A | 3632 | The protein encoded by this gene is a membrane-associated type I inositol 1,4,5-trisphosphate (InsP3) 5-phosphatase. InsP3 5-phosphatases hydrolyze Ins(1,4,5)P3, which mobilizes intracellular calcium and acts as a second messenger mediating cell responses to various stimulation. |
| NA | ENSG00000171811 | CFAP46 | cilia and flagella associated protein 46 | 54777 | NA |
| NA | ENSG00000171798 | KNDC1 | kinase non-catalytic C-lobe domain (KIND) containing 1 | 85442 | NA |
| NA | ENSG00000130640 | TUBGCP2 | tubulin gamma complex associated protein 2 | 10844 | NA |
| NA | ENSG00000198546 | ZNF511 | zinc finger protein 511 | 118472 | NA |
| NA | ENSG00000148803 | FUOM | fucose mutarotase | 282969 | NA |
| NA | ENSG00000127884 | ECHS1 | enoyl-CoA hydratase, short chain, 1, mitochondrial | 1892 | The protein encoded by this gene functions in the second step of the mitochondrial fatty acid beta-oxidation pathway. It catalyzes the hydration of 2-trans-enoyl-coenzyme A (CoA) intermediates to L-3-hydroxyacyl-CoAs. The gene product is a member of the hydratase/isomerase superfamily. It localizes to the mitochondrial matrix. Transcript variants utilizing alternative transcription initiation sites have been described in the literature. |
| NA | ENSG00000177951 | BET1L | Bet1 golgi vesicular membrane trafficking protein like | 51272 | NA |
| NA | ENSG00000177963 | RIC8A | RIC8 guanine nucleotide exchange factor A | 60626 | NA |
| NA | ENSG00000142082 | SIRT3 | sirtuin 3 | 23410 | This gene encodes a member of the sirtuin family of proteins, homologs to the yeast Sir2 protein. Members of the sirtuin family are characterized by a sirtuin core domain and grouped into four classes. The functions of human sirtuins have not yet been determined; however, yeast sirtuin proteins are known to regulate epigenetic gene silencing and suppress recombination of rDNA. Studies suggest that the human sirtuins may function as intracellular regulatory proteins with mono-ADP-ribosyltransferase activity. The protein encoded by this gene is included in class I of the sirtuin family. Two alternatively spliced transcript variants that encode different proteins have been described for this gene. |
| NA | ENSG00000185627 | PSMD13 | proteasome 26S subunit, non-ATPase 13 | 5719 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a non-ATPase subunit of the 19S regulator. Two transcripts encoding different isoforms have been described. |
| NA | ENSG00000142102 | ATHL1 | ATH1, acid trehalase-like 1 (yeast) | 80162 | NA |
| NA | ENSG00000185201 | IFITM2 | interferon induced transmembrane protein 2 | 10581 | NA |
| NA | ENSG00000185885 | IFITM1 | interferon induced transmembrane protein 1 | 8519 | NA |
| NA | ENSG00000142089 | IFITM3 | interferon induced transmembrane protein 3 | 10410 | The protein encoded by this gene is an interferon-induced membrane protein that helps confer immunity to influenza A H1N1 virus, West Nile virus, and dengue virus. Two transcript variants, only one of them protein-coding, have been found for this gene. Another variant encoding an N-terminally truncated isoform has been reported, but the full-length nature of this variant has not been determined. |
| NA | ENSG00000182272 | B4GALNT4 | beta-1,4-N-acetyl-galactosaminyltransferase 4 | 338707 | NA |
| NA | ENSG00000185187 | SIGIRR | single immunoglobulin and toll-interleukin 1 receptor (TIR) domain | 59307 | NA |
| NA | ENSG00000185101 | ANO9 | anoctamin 9 | 338440 | NA |
| NA | ENSG00000174915 | PTDSS2 | phosphatidylserine synthase 2 | 81490 | Phosphatidylserine (PS) accounts for 5 to 10% of cell membrane phospholipids. In addition to its role as a structural component, PS is involved in cell signaling, blood coagulation, and apoptosis. PS is synthesized by a calcium-dependent base-exchange reaction catalyzed by PS synthases (EC 2.7.8.8), like PTDSS2, that exchange L-serine for the polar head group of phosphatidylcholine (PC) or phosphatidylethanolamine (PE) (Sturbois-Balcerzak et al., 2001 [PubMed 11084049]). |
| NA | ENSG00000023191 | RNH1 | ribonuclease/angiogenin inhibitor 1 | 6050 | Placental ribonuclease inhibitor (PRI) is a member of a family of proteinaceous cytoplasmic RNase inhibitors that occur in many tissues and bind to both intracellular and extracellular RNases (summarized by Lee et al., 1988 [PubMed 3219362]). In addition to control of intracellular RNases, the inhibitor may have a role in the regulation of angiogenin (MIM 105850). Ribonuclease inhibitor, of 50,000 Da, binds to ribonucleases and holds them in a latent form. Since neutral and alkaline ribonucleases probably play a critical role in the turnover of RNA in eukaryotic cells, RNH may be essential for control of mRNA turnover; the interaction of eukaryotic cells with ribonuclease may be reversible in vivo. |
| NA | ENSG00000174775 | HRAS | Harvey rat sarcoma viral oncogene homolog | 3265 | This gene belongs to the Ras oncogene family, whose members are related to the transforming genes of mammalian sarcoma retroviruses. The products encoded by these genes function in signal transduction pathways. These proteins can bind GTP and GDP, and they have intrinsic GTPase activity. This protein undergoes a continuous cycle of de- and re-palmitoylation, which regulates its rapid exchange between the plasma membrane and the Golgi apparatus. Mutations in this gene cause Costello syndrome, a disease characterized by increased growth at the prenatal stage, growth deficiency at the postnatal stage, predisposition to tumor formation, mental retardation, skin and musculoskeletal abnormalities, distinctive facial appearance and cardiovascular abnormalities. Defects in this gene are implicated in a variety of cancers, including bladder cancer, follicular thyroid cancer, and oral squamous cell carcinoma. Multiple transcript variants, which encode different isoforms, have been identified for this gene. |
| NA | ENSG00000099849 | RASSF7 | Ras association domain family member 7 | 8045 | NA |
| NA | ENSG00000070047 | PHRF1 | PHD and ring finger domains 1 | 57661 | NA |
| NA | ENSG00000185507 | IRF7 | interferon regulatory factor 7 | 3665 | IRF7 encodes interferon regulatory factor 7, a member of the interferon regulatory transcription factor (IRF) family. IRF7 has been shown to play a role in the transcriptional activation of virus-inducible cellular genes, including interferon beta chain genes. Inducible expression of IRF7 is largely restricted to lymphoid tissue. Multiple IRF7 transcript variants have been identified, although the functional consequences of these have not yet been established. |
| NA | ENSG00000177030 | DEAF1 | DEAF1, transcription factor | 10522 | This gene encodes a zinc finger domain-containing protein that functions as a regulator of transcription. The encoded proteins binds to its own promoter as well as to that of several target genes. Activity of this protein is important in the regulation of embryonic development. Mutations in this gene have been found in individuals with autosomal dominant mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000177106 | EPS8L2 | EPS8 like 2 | 64787 | This gene encodes a member of the EPS8 gene family. The encoded protein, like other members of the family, is thought to link growth factor stimulation to actin organization, generating functional redundancy in the pathways that regulate actin cytoskeletal remodeling. |
| NA | ENSG00000177042 | TMEM80 | transmembrane protein 80 | 283232 | NA |
| NA | ENSG00000177156 | TALDO1 | transaldolase 1 | 6888 | Transaldolase 1 is a key enzyme of the nonoxidative pentose phosphate pathway providing ribose-5-phosphate for nucleic acid synthesis and NADPH for lipid biosynthesis. This pathway can also maintain glutathione at a reduced state and thus protect sulfhydryl groups and cellular integrity from oxygen radicals. The functional gene of transaldolase 1 is located on chromosome 11 and a pseudogene is identified on chromosome 1 but there are conflicting map locations. The second and third exon of this gene were developed by insertion of a retrotransposable element. This gene is thought to be involved in multiple sclerosis. |
| NA | ENSG00000177225 | PDDC1 | Parkinson disease 7 domain containing 1 | 347862 | NA |
| NA | ENSG00000184524 | CEND1 | cell cycle exit and neuronal differentiation 1 | 51286 | The protein encoded by this gene is a neuron-specific protein. The similar protein in pig enhances neuroblastoma cell differentiation in vitro and may be involved in neuronal differentiation in vivo. Multiple pseudogenes have been reported for this gene. |
| NA | ENSG00000177542 | SLC25A22 | solute carrier family 25 member 22 | 79751 | This gene encodes a mitochondrial glutamate carrier. Mutations in this gene are associated with early infantile epileptic encephalopathy. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000177595 | PIDD1 | p53-induced death domain protein 1 | 55367 | The protein encoded by this gene contains a leucine-rich repeat and a death domain. This protein has been shown to interact with other death domain proteins, such as Fas (TNFRSF6)-associated via death domain (FADD) and MAP-kinase activating death domain-containing protein (MADD), and thus may function as an adaptor protein in cell death-related signaling processes. The expression of the mouse counterpart of this gene has been found to be positively regulated by the tumor suppressor p53 and to induce cell apoptosis in response to DNA damage, which suggests a role for this gene as an effector of p53-dependent apoptosis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000177600 | RPLP2 | ribosomal protein lateral stalk subunit P2 | 6181 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal phosphoprotein that is a component of the 60S subunit. The protein, which is a functional equivalent of the E. coli L7/L12 ribosomal protein, belongs to the L12P family of ribosomal proteins. It plays an important role in the elongation step of protein synthesis. Unlike most ribosomal proteins, which are basic, the encoded protein is acidic. Its C-terminal end is nearly identical to the C-terminal ends of the ribosomal phosphoproteins P0 and P1. The P2 protein can interact with P0 and P1 to form a pentameric complex consisting of P1 and P2 dimers, and a P0 monomer. The protein is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000177666 | PNPLA2 | patatin like phospholipase domain containing 2 | 57104 | This gene encodes an enzyme which catalyzes the first step in the hydrolysis of triglycerides in adipose tissue. Mutations in this gene are associated with neutral lipid storage disease with myopathy. |
| NA | ENSG00000177685 | CRACR2B | calcium release activated channel regulator 2B | 283229 | NA |
| NA | ENSG00000177697 | CD151 | CD151 molecule (Raph blood group) | 977 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. This encoded protein is a cell surface glycoprotein that is known to complex with integrins and other transmembrane 4 superfamily proteins. It is involved in cellular processes including cell adhesion and may regulate integrin trafficking and/or function. This protein enhances cell motility, invasion and metastasis of cancer cells. Multiple alternatively spliced transcript variants that encode the same protein have been described for this gene. |
| NA | ENSG00000177700 | POLR2L | polymerase (RNA) II subunit L | 5441 | This gene encodes a subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. The product of this gene contains four conserved cysteines characteristic of an atypical zinc-binding domain. Like its counterpart in yeast, this subunit may be shared by the other two DNA-directed RNA polymerases. |
| NA | ENSG00000214063 | TSPAN4 | tetraspanin 4 | 7106 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. This encoded protein is a cell surface glycoprotein and is similar in sequence to its family member CD53 antigen. It is known to complex with integrins and other transmembrane 4 superfamily proteins. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000183020 | AP2A2 | adaptor related protein complex 2 alpha 2 subunit | 161 | NA |
| NA | ENSG00000078902 | TOLLIP | toll interacting protein | 54472 | This gene encodes a ubiquitin-binding protein that interacts with several Toll-like receptor (TLR) signaling cascade components. The encoded protein regulates inflammatory signaling and is involved in interleukin-1 receptor trafficking and in the turnover of IL1R-associated kinase. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000174672 | BRSK2 | BR serine/threonine kinase 2 | 9024 | NA |
| NA | ENSG00000182208 | MOB2 | MOB kinase activator 2 | 81532 | NA |
| NA | ENSG00000117984 | CTSD | cathepsin D | 1509 | This gene encodes a member of the A1 family of peptidases. The encoded preproprotein is proteolytically processed to generate multiple protein products. These products include the cathepsin D light and heavy chains, which heterodimerize to form the mature enzyme. This enzyme exhibits pepsin-like activity and plays a role in protein turnover and in the proteolytic activation of hormones and growth factors. Mutations in this gene play a causal role in neuronal ceroid lipofuscinosis-10 and may be involved in the pathogenesis of several other diseases, including breast cancer and possibly Alzheimer’s disease. |
| NA | ENSG00000214026 | MRPL23 | mitochondrial ribosomal protein L23 | 6150 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. The gene is biallelically expressed, despite its location within a region of imprinted genes on chromosome 11. |
| NA | ENSG00000110651 | CD81 | CD81 molecule | 975 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. This encoded protein is a cell surface glycoprotein that is known to complex with integrins. This protein appears to promote muscle cell fusion and support myotube maintenance. Also it may be involved in signal transduction. This gene is localized in the tumor-suppressor gene region and thus it is a candidate gene for malignancies. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000184281 | TSSC4 | tumor suppressing subtransferable candidate 4 | 10078 | This gene is one of several tumor-suppressing subtransferable fragments located in the imprinted gene domain of 11p15.5, an important tumor-suppressor gene region. Alterations in this region have been associated with the Beckwith-Wiedemann syndrome, Wilms tumor, rhabdomyosarcoma, adrenocortical carcinoma, and lung, ovarian, and breast cancer. This gene is located among several imprinted genes; however, this gene, as well as the pan-hematopoietic expression gene (PHEMX), escapes imprinting. This gene may play a role in malignancies and disease that involve this region. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000129757 | CDKN1C | cyclin-dependent kinase inhibitor 1C | 1028 | This gene is imprinted, with preferential expression of the maternal allele. The encoded protein is a tight-binding, strong inhibitor of several G1 cyclin/Cdk complexes and a negative regulator of cell proliferation. Mutations in this gene are implicated in sporadic cancers and Beckwith-Wiedemann syndorome, suggesting that this gene is a tumor suppressor candidate. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000205531 | NAP1L4 | nucleosome assembly protein 1 like 4 | 4676 | This gene encodes a member of the nucleosome assembly protein (NAP) family which can interact with both core and linker histones. It can shuttle between the cytoplasm and nucleus, suggesting a role as a histone chaperone. This gene is one of several located near the imprinted gene domain of 11p15.5, an important tumor-suppressor gene region. Alterations in this region have been associated with the Beckwith-Wiedemann syndrome, Wilms tumor, rhabdomyosarcoma, adrenocortical carcinoma, and lung, ovarian, and breast cancer. |
| NA | ENSG00000110619 | CARS | cysteinyl-tRNA synthetase | 833 | This gene encodes a class 1 aminoacyl-tRNA synthetase, cysteinyl-tRNA synthetase. Each of the twenty aminoacyl-tRNA synthetases catalyzes the aminoacylation of a specific tRNA or tRNA isoaccepting family with the cognate amino acid. This gene is one of several located near the imprinted gene domain on chromosome 11p15.5, an important tumor-suppressor gene region. Alterations in this region have been associated with Beckwith-Wiedemann syndrome, Wilms tumor, rhabdomyosarcoma, adrenocortical carcinoma, and lung, ovarian and breast cancers. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000167311 | ART5 | ADP-ribosyltransferase 5 | 116969 | The protein encoded by this gene belongs to the ARG-specific ADP-ribosyltransferase family. Proteins in this family regulate the function of target proteins by attaching ADP-ribose to specific amino acid residues in their target proteins. The mouse homolog lacks a glycosylphosphatidylinositol-anchor signal sequence and is predicted to be a secretory enzyme. Several transcripts encoding different isoforms have been found for this gene. |
| NA | ENSG00000110713 | NUP98 | nucleoporin 98kDa | 4928 | Nuclear pore complexes (NPCs) regulate the transport of macromolecules between the nucleus and cytoplasm, and are composed of many polypeptide subunits, many of which belong to the nucleoporin family. This gene belongs to the nucleoporin gene family and encodes a 186 kDa precursor protein that undergoes autoproteolytic cleavage to generate a 98 kDa nucleoporin and 96 kDa nucleoporin. The 98 kDa nucleoporin contains a Gly-Leu-Phe-Gly (GLGF) repeat domain and participates in many cellular processes, including nuclear import, nuclear export, mitotic progression, and regulation of gene expression. The 96 kDa nucleoporin is a scaffold component of the NPC. Proteolytic cleavage is important for targeting of the proteins to the NPC. Translocations between this gene and many other partner genes have been observed in different leukemias. Rearrangements typically result in chimeras with the N-terminal GLGF domain of this gene to the C-terminus of the partner gene. Alternative splicing results in multiple transcript variants encoding different isoforms, at least two of which are proteolytically processed. Some variants lack the region that encodes the 96 kDa nucleoporin. |
| NA | ENSG00000148985 | PGAP2 | post-GPI attachment to proteins 2 | 27315 | NA |
| NA | ENSG00000177105 | RHOG | ras homolog family member G | 391 | This gene encodes a member of the Rho family of small GTPases, which cycle between inactive GDP-bound and active GTP-bound states and function as molecular switches in signal transduction cascades. Rho proteins promote reorganization of the actin cytoskeleton and regulate cell shape, attachment, and motility. The encoded protein facilitates translocation of a functional guanine nucleotide exchange factor (GEF) complex from the cytoplasm to the plasma membrane where ras-related C3 botulinum toxin substrate 1 is activated to promote lamellipodium formation and cell migration. Two related pseudogene have been identified on chromosomes 20 and X. |
| NA | ENSG00000167323 | STIM1 | stromal interaction molecule 1 | 6786 | This gene encodes a type 1 transmembrane protein that mediates Ca2+ influx after depletion of intracellular Ca2+ stores by gating of store-operated Ca2+ influx channels (SOCs). It is one of several genes located in the imprinted gene domain of 11p15.5, an important tumor-suppressor gene region. Alterations in this region have been associated with the Beckwith-Wiedemann syndrome, Wilms tumor, rhabdomyosarcoma, adrenocrotical carcinoma, and lung, ovarian, and breast cancer. This gene may play a role in malignancies and disease that involve this region, as well as early hematopoiesis, by mediating attachment to stromal cells. Mutations in this gene are associated with fatal classic Kaposi sarcoma, immunodeficiency due to defects in store-operated calcium entry (SOCE) in fibroblasts, ectodermal dysplasia and tubular aggregate myopathy. This gene is oriented in a head-to-tail configuration with the ribonucleotide reductase 1 gene (RRM1), with the 3’ end of this gene situated 1.6 kb from the 5’ end of the RRM1 gene. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000167325 | RRM1 | ribonucleotide reductase catalytic subunit M1 | 6240 | This gene encodes the large and catalytic subunit of ribonucleotide reductase, an enzyme essential for the conversion of ribonucleotides into deoxyribonucleotides. A pool of available deoxyribonucleotides is important for DNA replication during S phase of the cell cycle as well as multiple DNA repair processes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000132109 | TRIM21 | tripartite motif containing 21 | 6737 | This gene encodes a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The encoded protein is part of the RoSSA ribonucleoprotein, which includes a single polypeptide and one of four small RNA molecules. The RoSSA particle localizes to both the cytoplasm and the nucleus. RoSSA interacts with autoantigens in patients with Sjogren syndrome and systemic lupus erythematosus. Alternatively spliced transcript variants for this gene have been described but the full-length nature of only one has been determined. |
| NA | ENSG00000167333 | TRIM68 | tripartite motif containing 68 | 55128 | This gene encodes a member of the tripartite motif-containing protein family, whose members are characterized by a ‘really interesting new gene’ (RING) finger domain, a zinc-binding B-box motif, and a coiled-coil region. Members of this family function as E3 ubiquitin ligases and are involved in a broad range of biological processes. This gene regulates the activation of nuclear receptors, such as androgen receptor, and has been implicated in development of prostate cancer cells, where its expression increases in response to a downregulation of microRNAs. In addition, this gene participates in viral defense regulation as a negative regulator of interferon-beta. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000121236 | TRIM6 | tripartite motif containing 6 | 117854 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, B-box type 1 and B-box type 2 domain, and a coiled-coil region. The protein localizes to the nucleus, but its specific function has not been identified. This gene is mapped to chromosome 11p15, where it resides within a TRIM gene cluster. Alternative splicing results in multiple transcript variants. A read-through transcript from this gene into the downstream TRIM34 gene has also been observed, which results in a fusion product from these neighboring family members. |
| NA | ENSG00000132256 | TRIM5 | tripartite motif containing 5 | 85363 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The protein forms homo-oligomers via the coilel-coil region and localizes to cytoplasmic bodies. It appears to function as a E3 ubiquitin-ligase and ubiqutinates itself to regulate its subcellular localization. It may play a role in retroviral restriction. Multiple alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000051009 | FAM160A2 | family with sequence similarity 160 member A2 | 84067 | NA |
| NA | ENSG00000110148 | CCKBR | cholecystokinin B receptor | 887 | This gene encodes a G-protein coupled receptor for gastrin and cholecystokinin (CCK), regulatory peptides of the brain and gastrointestinal tract. This protein is a type B gastrin receptor, which has a high affinity for both sulfated and nonsulfated CCK analogs and is found principally in the central nervous system and the gastrointestinal tract. Alternative splicing results in multiple transcript variants. A misspliced transcript variant including an intron has been observed in cells from colorectal and pancreatic tumors. |
| NA | ENSG00000170955 | PRKCDBP | protein kinase C delta binding protein | 112464 | The protein encoded by this gene was identified as a binding protein of the protein kinase C, delta (PRKCD). The expression of this gene in cultured cell lines is strongly induced by serum starvation. The expression of this protein was found to be down-regulated in various cancer cell lines, suggesting the possible tumor suppressor function of this protein. |
| NA | ENSG00000166313 | APBB1 | amyloid beta precursor protein binding family B member 1 | 322 | The protein encoded by this gene is a member of the Fe65 protein family. It is an adaptor protein localized in the nucleus. It interacts with the Alzheimer’s disease amyloid precursor protein (APP), transcription factor CP2/LSF/LBP1 and the low-density lipoprotein receptor-related protein. APP functions as a cytosolic anchoring site that can prevent the gene product’s nuclear translocation. This encoded protein could play an important role in the pathogenesis of Alzheimer’s disease. It is thought to regulate transcription. Also it is observed to block cell cycle progression by downregulating thymidylate synthase expression. Multiple alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000110171 | TRIM3 | tripartite motif containing 3 | 10612 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family, also called the ‘RING-B-box-coiled-coil’ (RBCC) subgroup of RING finger proteins. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. This protein localizes to cytoplasmic filaments. It is similar to a rat protein which is a specific partner for the tail domain of myosin V, a class of myosins which are involved in the targeted transport of organelles. The rat protein can also interact with alpha-actinin-4. Thus it is suggested that this human protein may play a role in myosin V-mediated cargo transport. Alternatively spliced transcript variants encoding the same isoform have been identified. |
| NA | ENSG00000132254 | ARFIP2 | ADP ribosylation factor interacting protein 2 | 23647 | NA |
| NA | ENSG00000132286 | TIMM10B | translocase of inner mitochondrial membrane 10 homolog B (yeast) | 26515 | FXC1, or TIMM10B, belongs to a family of evolutionarily conserved proteins that are organized in heterooligomeric complexes in the mitochondrial intermembrane space. These proteins mediate the import and insertion of hydrophobic membrane proteins into the mitochondrial inner membrane. |
| NA | ENSG00000179532 | DNHD1 | dynein heavy chain domain 1 | 144132 | NA |
| NA | ENSG00000132275 | RRP8 | ribosomal RNA processing 8, methyltransferase, homolog (yeast) | 23378 | NA |
| NA | ENSG00000166333 | ILK | integrin linked kinase | 3611 | This gene encodes a protein with a kinase-like domain and four ankyrin-like repeats. The encoded protein associates at the cell membrane with the cytoplasmic domain of beta integrins, where it regulates integrin-mediated signal transduction. Activity of this protein is important in the epithelial to mesenchymal transition, and over-expression of this gene is implicated in tumor growth and metastasis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166337 | TAF10 | TATA-box binding protein associated factor 10 | 6881 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes one of the small subunits of TFIID that is associated with a subset of TFIID complexes. Studies with human and mammalian cells have shown that this subunit is required for transcriptional activation by the estrogen receptor, for progression through the cell cycle, and may also be required for certain cellular differentiation programs. |
| NA | ENSG00000166340 | TPP1 | tripeptidyl peptidase I | 1200 | This gene encodes a member of the sedolisin family of serine proteases. The protease functions in the lysosome to cleave N-terminal tripeptides from substrates, and has weaker endopeptidase activity. It is synthesized as a catalytically-inactive enzyme which is activated and auto-proteolyzed upon acidification. Mutations in this gene result in late-infantile neuronal ceroid lipofuscinosis, which is associated with the failure to degrade specific neuropeptides and a subunit of ATP synthase in the lysosome. |
| NA | ENSG00000166341 | DCHS1 | dachsous cadherin-related 1 | 8642 | This gene is a member of the cadherin superfamily whose members encode calcium-dependent cell-cell adhesion molecules. The encoded protein has a signal peptide, 27 cadherin repeat domains and a unique cytoplasmic region. This particular cadherin family member is expressed in fibroblasts but not in melanocytes or keratinocytes. The cell-cell adhesion of fibroblasts is thought to be necessary for wound healing. |
| NA | ENSG00000149054 | ZNF215 | zinc finger protein 215 | 7762 | NA |
| NA | ENSG00000149050 | ZNF214 | zinc finger protein 214 | 7761 | NA |
| NA | ENSG00000166387 | PPFIBP2 | PPFIA binding protein 2 | 8495 | This gene encodes a member of the LAR protein-tyrosine phosphatase-interacting protein (liprin) family. The encoded protein is a beta liprin and plays a role in axon guidance and neuronal synapse development by recruiting LAR protein-tyrosine phosphatases to the plasma membrane. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000166394 | CYB5R2 | cytochrome b5 reductase 2 | 51700 | The protein encoded by this gene belongs to the flavoprotein pyridine nucleotide cytochrome reductase family of proteins. Cytochrome b-type NAD(P)H oxidoreductases are implicated in many processes including cholesterol biosynthesis, fatty acid desaturation and elongation, and respiratory burst in neutrophils and macrophages. Cytochrome b5 reductases have soluble and membrane-bound forms that are the product of alternative splicing. In animal cells, the membrane-bound form binds to the endoplasmic reticulum, where it is a member of a fatty acid desaturation complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175390 | EIF3F | eukaryotic translation initiation factor 3 subunit F | 8665 | NA |
| NA | ENSG00000166402 | TUB | tubby bipartite transcription factor | 7275 | This gene encodes a member of the Tubby family of bipartite transcription factors. The encoded protein may play a role in obesity and sensorineural degradation. The crystal structure has been determined for a similar protein in mouse, and it functions as a membrane-bound transcription regulator that translocates to the nucleus in response to phosphoinositide hydrolysis. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000166405 | RIC3 | RIC3 acetylcholine receptor chaperone | 79608 | The protein encoded by this gene promotes functional expression of homomeric nicotinic acetylcholine receptors at the cell surface. It enhances currents generated by these receptors by expediting receptor transport to the cell surface and by increasing receptor number. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130413 | STK33 | serine/threonine kinase 33 | 65975 | NA |
| NA | ENSG00000166436 | TRIM66 | tripartite motif containing 66 | 9866 | NA |
| NA | ENSG00000166441 | RPL27A | ribosomal protein L27a | 6157 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L15P family of ribosomal proteins. It is located in the cytoplasm. Variable expression of this gene in colorectal cancers compared to adjacent normal tissues has been observed, although no correlation between the level of expression and the severity of the disease has been found. As is typical for genes encoding ribosomal proteins, multiple processed pseudogenes derived from this gene are dispersed through the genome. |
| NA | ENSG00000166444 | ST5 | suppression of tumorigenicity 5 | 6764 | This gene was identified by its ability to suppress the tumorigenicity of Hela cells in nude mice. The protein encoded by this gene contains a C-terminal region that shares similarity with the Rab 3 family of small GTP binding proteins. This protein preferentially binds to the SH3 domain of c-Abl kinase, and acts as a regulator of MAPK1/ERK2 kinase, which may contribute to its ability to reduce the tumorigenic phenotype in cells. Three alternatively spliced transcript variants of this gene encoding distinct isoforms are identified. |
| NA | ENSG00000166452 | AKIP1 | A-kinase interacting protein 1 | 56672 | This gene encodes a nuclear protein that interacts with protein kinase A catalytic subunit, and regulates the effect of the cAMP-dependent protein kinase signaling pathway on the NF-kappa-B activation cascade. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000175348 | TMEM9B | TMEM9 domain family member B | 56674 | NA |
| NA | ENSG00000175352 | NRIP3 | nuclear receptor interacting protein 3 | 56675 | NA |
| NA | ENSG00000166471 | TMEM41B | transmembrane protein 41B | 440026 | NA |
| NA | ENSG00000205339 | IPO7 | importin 7 | 10527 | The importin-alpha/beta complex and the GTPase Ran mediate nuclear import of proteins with a classical nuclear localization signal. The protein encoded by this gene is a member of a class of approximately 20 potential Ran targets that share a sequence motif related to the Ran-binding site of importin-beta. Similar to importin-beta, this protein prevents the activation of Ran’s GTPase by RanGAP1 and inhibits nucleotide exchange on RanGTP, and also binds directly to nuclear pore complexes where it competes for binding sites with importin-beta and transportin. This protein has a Ran-dependent transport cycle and it can cross the nuclear envelope rapidly and in both directions. At least four importin beta-like transport receptors, namely importin beta itself, transportin, RanBP5 and RanBP7, directly bind and import ribosomal proteins. |
| NA | ENSG00000166478 | ZNF143 | zinc finger protein 143 | 7702 | NA |
| NA | ENSG00000166483 | WEE1 | WEE1 G2 checkpoint kinase | 7465 | This gene encodes a nuclear protein, which is a tyrosine kinase belonging to the Ser/Thr family of protein kinases. This protein catalyzes the inhibitory tyrosine phosphorylation of CDC2/cyclin B kinase, and appears to coordinate the transition between DNA replication and mitosis by protecting the nucleus from cytoplasmically activated CDC2 kinase. |
| NA | ENSG00000133789 | SWAP70 | SWAP switching B-cell complex 70kDa subunit | 23075 | NA |
| NA | ENSG00000133812 | SBF2 | SET binding factor 2 | 81846 | This gene encodes a pseudophosphatase and member of the myotubularin-related protein family. This gene maps within the CMT4B2 candidate region of chromosome 11p15 and mutations in this gene have been associated with Charcot-Marie-Tooth Disease, type 4B2. |
| NA | ENSG00000148926 | ADM | adrenomedullin | 133 | The protein encoded by this gene is a preprohormone which is cleaved to form two biologically active peptides, adrenomedullin and proadrenomedullin N-terminal 20 peptide. Adrenomedullin is a 52 aa peptide with several functions, including vasodilation, regulation of hormone secretion, promotion of angiogenesis, and antimicrobial activity. The antimicrobial activity is antibacterial, as the peptide has been shown to kill E. coli and S. aureus at low concentration. |
| NA | ENSG00000133805 | AMPD3 | adenosine monophosphate deaminase 3 | 272 | This gene encodes a member of the AMP deaminase gene family. The encoded protein is a highly regulated enzyme that catalyzes the hydrolytic deamination of adenosine monophosphate to inosine monophosphate, a branch point in the adenylate catabolic pathway. This gene encodes the erythrocyte (E) isoforms, whereas other family members encode isoforms that predominate in muscle (M) and liver (L) cells. Mutations in this gene lead to the clinically asymptomatic, autosomal recessive condition erythrocyte AMP deaminase deficiency. Alternatively spliced transcript variants encoding different isoforms of this gene have been described. |
| NA | ENSG00000255823 | MTRNR2L8 | MT-RNR2-like 8 | 100463486 | NA |
| NA | ENSG00000110315 | RNF141 | ring finger protein 141 | 50862 | The protein encoded by this gene contains a RING finger, a motif known to be involved in protein-DNA and protein-protein interactions. Abundant expression of this gene was found in the testicular tissue of fertile men, but was not detected in azoospermic patients. Studies of the mouse counterpart suggest that this gene may function as a testis specific transcription factor during spermatogenesis. |
| NA | ENSG00000072952 | MRVI1 | murine retrovirus integration site 1 homolog | 10335 | This gene is similar to a putative mouse tumor suppressor gene (Mrvi1) that is frequently disrupted by mouse AIDS-related virus (MRV). The encoded protein, which is found in the membrane of the endoplasmic reticulum, is similar to Jaw1, a lymphoid-restricted protein whose expression is down-regulated during lymphoid differentiation. This protein is a substrate of cGMP-dependent kinase-1 (PKG1) that can function as a regulator of IP3-induced calcium release. Studies in mouse suggest that MRV integration at Mrvi1 induces myeloid leukemia by altering the expression of a gene important for myeloid cell growth and/or differentiation, and thus this gene may function as a myeloid leukemia tumor suppressor gene. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene, and alternative translation start sites, including a non-AUG (CUG) start site, are used. |
| NA | ENSG00000198730 | CTR9 | CTR9 homolog, Paf1/RNA polymerase II complex component | 9646 | CTR9, parafibromin (CDC73; MIM 607393), LEO1 (MIM 610507), and PAF1 (MIM 610506) form the PAF protein complex, which associates with the RNA polymerase II subunit POLR2A (MIM 180660) and with a histone methyltransferase complex (Rozenblatt-Rosen et al., 2005 [PubMed 15632063]). |
| NA | ENSG00000110321 | EIF4G2 | eukaryotic translation initiation factor 4 gamma 2 | 1982 | Translation initiation is mediated by specific recognition of the cap structure by eukaryotic translation initiation factor 4F (eIF4F), which is a cap binding protein complex that consists of three subunits: eIF4A, eIF4E and eIF4G. The protein encoded by this gene shares similarity with the C-terminal region of eIF4G that contains the binding sites for eIF4A and eIF3; eIF4G, in addition, contains a binding site for eIF4E at the N-terminus. Unlike eIF4G, which supports cap-dependent and independent translation, this gene product functions as a general repressor of translation by forming translationally inactive complexes. In vitro and in vivo studies indicate that translation of this mRNA initiates exclusively at a non-AUG (GUG) codon. Alternatively spliced transcript variants encoding different isoforms of this gene have been described. |
| NA | ENSG00000236287 | ZBED5 | zinc finger BED-type containing 5 | 58486 | This gene is unusual in that its coding sequence is mostly derived from Charlie-like DNA transposon; however, it does not appear to be an active DNA transposon as it is not flanked by terminal inverted repeats. The encoded protein is conserved among the mammalian Laurasiatheria branch. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000254598 | CSNK2A3 | casein kinase 2 alpha 3 | 283106 | This gene encodes a protein that is highly similar to the casein kinase II alpha protein. Casein kinase II is a serine/threonine protein kinase complex that phosphorylates numerous substrates including casein. The alpha subunit is the catalytic component of the complex. Mutations in this gene may be associated with a susceptibility to lung cancer. There are contradictory views among published reports of this gene as to whether or not it is a protein-coding gene or a processed pseudogene (PMIDs: 20625391, 20625391 and 10094393). |
| NA | ENSG00000170242 | USP47 | ubiquitin specific peptidase 47 | 55031 | NA |
| NA | ENSG00000050165 | DKK3 | dickkopf WNT signaling pathway inhibitor 3 | 27122 | This gene encodes a protein that is a member of the dickkopf family. The secreted protein contains two cysteine rich regions and is involved in embryonic development through its interactions with the Wnt signaling pathway. The expression of this gene is decreased in a variety of cancer cell lines and it may function as a tumor suppressor gene. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000197702 | PARVA | parvin alpha | 55742 | This gene encodes a member of the parvin family of actin-binding proteins. Parvins are associated with focal contacts and contain calponin homology domains that bind to actin filaments. The encoded protein is part of the integrin-linked kinase signaling complex and plays a role in cell adhesion, motility and survival. |
| NA | ENSG00000187079 | TEAD1 | TEA domain transcription factor 1 | 7003 | This gene encodes a ubiquitous transcriptional enhancer factor that is a member of the TEA/ATTS domain family. This protein directs the transactivation of a wide variety of genes and, in placental cells, also acts as a transcriptional repressor. Mutations in this gene cause Sveinsson’s chorioretinal atrophy. Additional transcript variants have been described but their full-length natures have not been experimentally verified. |
| NA | ENSG00000133794 | ARNTL | aryl hydrocarbon receptor nuclear translocator like | 406 | The protein encoded by this gene is a basic helix-loop-helix protein that forms a heterodimer with CLOCK. This heterodimer binds E-box enhancer elements upstream of Period (PER1, PER2, PER3) and Cryptochrome (CRY1, CRY2) genes and activates transcription of these genes. PER and CRY proteins heterodimerize and repress their own transcription by interacting in a feedback loop with CLOCK/ARNTL complexes. Defects in this gene have been linked to infertility, problems with gluconeogenesis and lipogenesis, and altered sleep patterns. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000148925 | BTBD10 | BTB domain containing 10 | 84280 | NA |
| NA | ENSG00000197601 | FAR1 | fatty acyl-CoA reductase 1 | 84188 | The protein encoded by this gene is required for the reduction of fatty acids to fatty alcohols, a process that is required for the synthesis of monoesters and ether lipids. NADPH is required as a cofactor in this reaction, and 16-18 carbon saturated and unsaturated fatty acids are the preferred substrate. This is a peroxisomal membrane protein, and studies suggest that the N-terminus contains a large catalytic domain located on the outside of the peroxisome, while the C-terminus is exposed to the matrix of the peroxisome. Studies indicate that the regulation of this protein is dependent on plasmalogen levels. Mutations in this gene have been associated with individuals affected by severe intellectual disability, early-onset epilepsy, microcephaly, congenital cataracts, growth retardation, and spasticity (PMID: 25439727). A pseudogene of this gene is located on chromosome 13. |
| NA | ENSG00000129083 | COPB1 | coatomer protein complex subunit beta 1 | 1315 | This gene encodes a protein subunit of the coatomer complex associated with non-clathrin coated vesicles. The coatomer complex, also known as the coat protein complex 1, forms in the cytoplasm and is recruited to the Golgi by activated guanosine triphosphatases. Once at the Golgi membrane, the coatomer complex may assist in the movement of protein and lipid components back to the endoplasmic reticulum. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000129084 | PSMA1 | proteasome subunit alpha 1 | 5682 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the peptidase T1A family, that is a 20S core alpha subunit. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000152270 | PDE3B | phosphodiesterase 3B | 5140 | NA |
| NA | ENSG00000186104 | CYP2R1 | cytochrome P450 family 2 subfamily R member 1 | 120227 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. This enzyme is a microsomal vitamin D hydroxylase that converts vitamin D into the active ligand for the vitamin D receptor. A mutation in this gene has been associated with selective 25-hydroxyvitamin D deficiency. |
| NA | ENSG00000175868 | CALCB | calcitonin related polypeptide beta | 797 | NA |
| NA | ENSG00000110696 | C11orf58 | chromosome 11 open reading frame 58 | 10944 | NA |
| NA | ENSG00000166689 | PLEKHA7 | pleckstrin homology domain containing A7 | 144100 | NA |
| NA | ENSG00000110700 | RPS13 | ribosomal protein S13 | 6207 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S15P family of ribosomal proteins. It is located in the cytoplasm. The protein has been shown to bind to the 5.8S rRNA in rat. The gene product of the E. coli ortholog (ribosomal protein S15) functions at early steps in ribosome assembly. This gene is co-transcribed with two U14 small nucleolar RNA genes, which are located in its third and fifth introns. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000011405 | PIK3C2A | phosphatidylinositol-4-phosphate 3-kinase catalytic subunit type 2 alpha | 5286 | The protein encoded by this gene belongs to the phosphoinositide 3-kinase (PI3K) family. PI3-kinases play roles in signaling pathways involved in cell proliferation, oncogenic transformation, cell survival, cell migration, and intracellular protein trafficking. This protein contains a lipid kinase catalytic domain as well as a C-terminal C2 domain, a characteristic of class II PI3-kinases. C2 domains act as calcium-dependent phospholipid binding motifs that mediate translocation of proteins to membranes, and may also mediate protein-protein interactions. The PI3-kinase activity of this protein is not sensitive to nanomolar levels of the inhibitor wortmanin. This protein was shown to be able to be activated by insulin and may be involved in integrin-dependent signaling. |
| NA | ENSG00000129158 | SERGEF | secretion regulating guanine nucleotide exchange factor | 26297 | NA |
| NA | ENSG00000129167 | TPH1 | tryptophan hydroxylase 1 | 7166 | This gene encodes a member of the aromatic amino acid hydroxylase family. The encoded protein catalyzes the first and rate limiting step in the biosynthesis of serotonin, an important hormone and neurotransmitter. Mutations in this gene have been associated with an elevated risk for a variety of diseases and disorders, including schizophrenia, somatic anxiety, anger-related traits, bipolar disorder, suicidal behavior, addictions, and others. |
| NA | ENSG00000166788 | SAAL1 | serum amyloid A like 1 | 113174 | NA |
| NA | ENSG00000110756 | HPS5 | HPS5, biogenesis of lysosomal organelles complex 2 subunit 2 | 11234 | This gene encodes a protein that may play a role in organelle biogenesis associated with melanosomes, platelet dense granules, and lysosomes. This protein interacts with Hermansky-Pudlak syndrome 6 protein and may interact with the cytoplasmic domain of integrin, alpha-3. Mutations in this gene are associated with Hermansky-Pudlak syndrome type 5. Multiple transcript variants encoding two distinct isoforms have been identified for this gene. |
| NA | ENSG00000110768 | GTF2H1 | general transcription factor IIH subunit 1 | 2965 | NA |
| NA | ENSG00000134333 | LDHA | lactate dehydrogenase A | 3939 | The protein encoded by this gene catalyzes the conversion of L-lactate and NAD to pyruvate and NADH in the final step of anaerobic glycolysis. The protein is found predominantly in muscle tissue and belongs to the lactate dehydrogenase family. Mutations in this gene have been linked to exertional myoglobinuria. Multiple transcript variants encoding different isoforms have been found for this gene. The human genome contains several non-transcribed pseudogenes of this gene. |
| NA | ENSG00000074319 | TSG101 | tumor susceptibility 101 | 7251 | The protein encoded by this gene belongs to a group of apparently inactive homologs of ubiquitin-conjugating enzymes. The gene product contains a coiled-coil domain that interacts with stathmin, a cytosolic phosphoprotein implicated in tumorigenesis. The protein may play a role in cell growth and differentiation and act as a negative growth regulator. In vitro steady-state expression of this tumor susceptibility gene appears to be important for maintenance of genomic stability and cell cycle regulation. Mutations and alternative splicing in this gene occur in high frequency in breast cancer and suggest that defects occur during breast cancer tumorigenesis and/or progression. |
| NA | ENSG00000151116 | UEVLD | UEV and lactate/malate dehyrogenase domains | 55293 | NA |
| NA | ENSG00000179119 | SPTY2D1 | SPT2 chromatin protein domain containing 1 | 144108 | NA |
| NA | ENSG00000110786 | PTPN5 | protein tyrosine phosphatase, non-receptor type 5 | 84867 | NA |
| NA | ENSG00000177054 | ZDHHC13 | zinc finger DHHC-type containing 13 | 54503 | NA |
| NA | ENSG00000129173 | E2F8 | E2F transcription factor 8 | 79733 | This gene encodes a member of a family of transcription factors which regulate the expression of genes required for progression through the cell cycle. The encoded protein regulates progression from G1 to S phase by ensuring the nucleus divides at the proper time. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000166833 | NAV2 | neuron navigator 2 | 89797 | This gene encodes a member of the neuron navigator gene family, which may play a role in cellular growth and migration. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000185238 | PRMT3 | protein arginine methyltransferase 3 | 10196 | This gene belongs to the protein arginine methyltransferase (PRMT) family. The encoded enzyme catalyzes the methylation of guanidino nitrogens of arginyl residues of proteins. The enzyme acts on 40S ribosomal protein S2 (rpS2), which is its major in-vivo substrate, and is involved in the proper maturation of the 80S ribosome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171714 | ANO5 | anoctamin 5 | 203859 | This gene encodes a member of the anoctamin family of transmembrane proteins. The encoded protein is likely a calcium activated chloride channel. Mutations in this gene have been associated with gnathodiaphyseal dysplasia. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000183161 | FANCF | Fanconi anemia complementation group F | 2188 | The Fanconi anemia complementation group (FANC) currently includes FANCA, FANCB, FANCC, FANCD1 (also called BRCA2), FANCD2, FANCE, FANCF, FANCG, FANCI, FANCJ (also called BRIP1), FANCL, FANCM and FANCN (also called PALB2). The previously defined group FANCH is the same as FANCA. Fanconi anemia is a genetically heterogeneous recessive disorder characterized by cytogenetic instability, hypersensitivity to DNA crosslinking agents, increased chromosomal breakage, and defective DNA repair. The members of the Fanconi anemia complementation group do not share sequence similarity; they are related by their assembly into a common nuclear protein complex. This gene encodes the protein for complementation group F. |
| NA | ENSG00000187398 | LUZP2 | leucine zipper protein 2 | 338645 | This gene encodes a leucine zipper protein. This protein is deleted in some patients with Wilms tumor-Aniridia-Genitourinary anomalies-mental Retardation (WAGR) syndrome. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000148942 | SLC5A12 | solute carrier family 5 member 12 | 159963 | Normal blood lactate is maintained at about 1.5 mM, and little filtered lactate is excreted in urine. Reabsorption of lactate is mediated by the low-affinity Na(+)-coupled lactate transporter SLC5A12 in the initial part of the proximal tubule and by the high-affinity Na(+)-coupled lactate transporter SLC5A8 (MIM 608044) in the distal proximal tubule (Gopal et al., 2007 [PubMed 17692818]). |
| NA | ENSG00000205213 | LGR4 | leucine-rich repeat containing G protein-coupled receptor 4 | 55366 | G protein-coupled receptors (GPCRs) play key roles in a variety of physiologic functions. Members of the leucine-rich GPCR (LGR) family, such as GPR48, have multiple N-terminal leucine-rich repeats (LRRs) and a 7-transmembrane domain (Weng et al., 2008 [PubMed 18424556]). |
| NA | ENSG00000148943 | LIN7C | lin-7 homolog C, crumbs cell polarity complex component | 55327 | NA |
| NA | ENSG00000176697 | BDNF | brain-derived neurotrophic factor | 627 | This gene encodes a member of the nerve growth factor family of proteins. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate the mature protein. Binding of this protein to its cognate receptor promotes neuronal survival in the adult brain. Expression of this gene is reduced in Alzheimer’s, Parkinson’s, and Huntington’s disease patients. This gene may play a role in the regulation of the stress response and in the biology of mood disorders. |
| NA | ENSG00000121621 | KIF18A | kinesin family member 18A | 81930 | KIF18A is a member of the kinesin superfamily of microtubule-associated molecular motors (see MIM 148760) that use hydrolysis of ATP to produce force and movement along microtubules (Luboshits and Benayahu, 2005 [PubMed 15878648]). |
| NA | ENSG00000169519 | METTL15 | methyltransferase like 15 | 196074 | NA |
| NA | ENSG00000066382 | MPPED2 | metallophosphoesterase domain containing 2 | 744 | This gene likely encodes a metallophosphoesterase. The encoded protein may play a role a brain development. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000170946 | DNAJC24 | DnaJ heat shock protein family (Hsp40) member C24 | 120526 | Diphthamide is a unique posttranslationally modified histidine found only in translation elongation factor-2 (EEF2; MIM 130610). This modification is conserved from archaebacteria to humans and serves as the target for ADP-ribosylation and inactivation of EEF2 by diphtheria toxin (DT) and Pseudomonas exotoxin A. DPH4 is 1 of several enzymes involved in synthesis of diphthamide in EEF2 (Liu et al., 2004 [PubMed 15485916]). |
| NA | ENSG00000109911 | ELP4 | elongator acetyltransferase complex subunit 4 | 26610 | This gene encodes a component of the six subunit elongator complex, a histone acetyltransferase complex that associates directly with RNA polymerase II during transcriptional elongation. The human gene can partially complement sensitivity phenotypes of yeast ELP4 deletion mutants. This gene has also been associated with Rolandic epilepsy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000049449 | DKFZp686K1684 | uncharacterized LOC440034 | 440034 | NA |
| NA | ENSG00000049449 | RCN1 | reticulocalbin 1 | 5954 | Reticulocalbin 1 is a calcium-binding protein located in the lumen of the ER. The protein contains six conserved regions with similarity to a high affinity Ca(+2)-binding motif, the EF-hand. High conservation of amino acid residues outside of these motifs, in comparison to mouse reticulocalbin, is consistent with a possible biochemical function besides that of calcium binding. In human endothelial and prostate cancer cell lines this protein localizes to the plasma membrane. |
| NA | ENSG00000149100 | EIF3M | eukaryotic translation initiation factor 3 subunit M | 10480 | This gene encodes a protein that is part of the eurkaryotic translation initiation factor 3 complete (eIF-3) required for protein synthesis. Elevated levels of the encoded protein are present in cancer cell lines. Inactivation of the encoded protein has been shown to interfere with translation of herpes virus mRNAs by preventing the association of mRNAs with the ribosomes. A pseudogene of this gene is located on the X chromosome. |
| NA | ENSG00000060749 | QSER1 | glutamine and serine rich 1 | 79832 | NA |
| NA | ENSG00000121690 | DEPDC7 | DEP domain containing 7 | 91614 | NA |
| NA | ENSG00000176148 | TCP11L1 | t-complex 11 like 1 | 55346 | NA |
| NA | ENSG00000176102 | CSTF3 | cleavage stimulation factor, 3’ pre-RNA, subunit 3 | 1479 | The protein encoded by this gene is one of three (including CSTF1 and CSTF2) cleavage stimulation factors that combine to form the cleavage stimulation factor complex (CSTF). This complex is involved in the polyadenylation and 3’ end cleavage of pre-mRNAs. The encoded protein functions as a homodimer and interacts directly with both CSTF1 and CSTF2 in the CSTF complex. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000110422 | HIPK3 | homeodomain interacting protein kinase 3 | 10114 | NA |
| NA | ENSG00000110427 | KIAA1549L | KIAA1549-like | 25758 | NA |
| NA | ENSG00000085063 | CD59 | CD59 molecule | 966 | This gene encodes a cell surface glycoprotein that regulates complement-mediated cell lysis, and it is involved in lymphocyte signal transduction. This protein is a potent inhibitor of the complement membrane attack complex, whereby it binds complement C8 and/or C9 during the assembly of this complex, thereby inhibiting the incorporation of multiple copies of C9 into the complex, which is necessary for osmolytic pore formation. This protein also plays a role in signal transduction pathways in the activation of T cells. Mutations in this gene cause CD59 deficiency, a disease resulting in hemolytic anemia and thrombosis, and which causes cerebral infarction. Multiple alternatively spliced transcript variants, which encode the same protein, have been identified for this gene. |
| NA | ENSG00000110429 | FBXO3 | F-box protein 3 | 26273 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class. Alternative splicing of this gene generates 2 transcript variants diverging at the 3’ end. |
| NA | ENSG00000135387 | CAPRIN1 | cell cycle associated protein 1 | 4076 | NA |
| NA | ENSG00000135372 | NAT10 | N-acetyltransferase 10 | 55226 | NA |
| NA | ENSG00000166016 | ABTB2 | ankyrin repeat and BTB domain containing 2 | 25841 | NA |
| NA | ENSG00000121691 | CAT | catalase | 847 | This gene encodes catalase, a key antioxidant enzyme in the bodies defense against oxidative stress. Catalase is a heme enzyme that is present in the peroxisome of nearly all aerobic cells. Catalase converts the reactive oxygen species hydrogen peroxide to water and oxygen and thereby mitigates the toxic effects of hydrogen peroxide. Oxidative stress is hypothesized to play a role in the development of many chronic or late-onset diseases such as diabetes, asthma, Alzheimer’s disease, systemic lupus erythematosus, rheumatoid arthritis, and cancers. Polymorphisms in this gene have been associated with decreases in catalase activity but, to date, acatalasemia is the only disease known to be caused by this gene. |
| NA | ENSG00000110435 | PDHX | pyruvate dehydrogenase complex component X | 8050 | The pyruvate dehydrogenase (PDH) complex is located in the mitochondrial matrix and catalyzes the conversion of pyruvate to acetyl coenzyme A. The PDH complex thereby links glycolysis to Krebs cycle. The PDH complex contains three catalytic subunits, E1, E2, and E3, two regulatory subunits, E1 kinase and E1 phosphatase, and a non-catalytic subunit, E3 binding protein (E3BP). This gene encodes the E3 binding protein subunit; also known as component X of the pyruvate dehydrogenase complex. This protein tethers E3 dimers to the E2 core of the PDH complex. Defects in this gene are a cause of pyruvate dehydrogenase deficiency which results in neurological dysfunction and lactic acidosis in infancy and early childhood. This protein is also a minor antigen for antimitochondrial antibodies. These autoantibodies are present in nearly 95% of patients with the autoimmune liver disease primary biliary cirrhosis (PBC). In PBC, activated T lymphocytes attack and destroy epithelial cells in the bile duct where this protein is abnormally distributed and overexpressed. PBC eventually leads to cirrhosis and liver failure. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000026508 | CD44 | CD44 molecule (Indian blood group) | 960 | The protein encoded by this gene is a cell-surface glycoprotein involved in cell-cell interactions, cell adhesion and migration. It is a receptor for hyaluronic acid (HA) and can also interact with other ligands, such as osteopontin, collagens, and matrix metalloproteinases (MMPs). This protein participates in a wide variety of cellular functions including lymphocyte activation, recirculation and homing, hematopoiesis, and tumor metastasis. Transcripts for this gene undergo complex alternative splicing that results in many functionally distinct isoforms, however, the full length nature of some of these variants has not been determined. Alternative splicing is the basis for the structural and functional diversity of this protein, and may be related to tumor metastasis. |
| NA | ENSG00000149090 | PAMR1 | peptidase domain containing associated with muscle regeneration 1 | 25891 | NA |
| NA | ENSG00000179431 | FJX1 | four jointed box 1 | 24147 | The protein encoded by this gene is the human ortholog of mouse and Drosophila four-jointed gene product. The Drosophila protein is important for growth and differentiation of legs and wings, and for proper development of the eyes. The exact function of this gene in humans is not known. |
| NA | ENSG00000166326 | TRIM44 | tripartite motif containing 44 | 54765 | This gene encodes a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, namely a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. |
| NA | ENSG00000179241 | LDLRAD3 | low density lipoprotein receptor class A domain containing 3 | 143458 | NA |
| NA | ENSG00000110442 | COMMD9 | COMM domain containing 9 | 29099 | NA |
| NA | ENSG00000135362 | PRR5L | proline rich 5 like | 79899 | NA |
| NA | ENSG00000175104 | TRAF6 | TNF receptor associated factor 6 | 7189 | The protein encoded by this gene is a member of the TNF receptor associated factor (TRAF) protein family. TRAF proteins are associated with, and mediate signal transduction from, members of the TNF receptor superfamily. This protein mediates signaling from members of the TNF receptor superfamily as well as the Toll/IL-1 family. Signals from receptors such as CD40, TNFSF11/RANCE and IL-1 have been shown to be mediated by this protein. This protein also interacts with various protein kinases including IRAK1/IRAK, SRC and PKCzeta, which provides a link between distinct signaling pathways. This protein functions as a signal transducer in the NF-kappaB pathway that activates IkappaB kinase (IKK) in response to proinflammatory cytokines. The interaction of this protein with UBE2N/UBC13, and UBE2V1/UEV1A, which are ubiquitin conjugating enzymes catalyzing the formation of polyubiquitin chains, has been found to be required for IKK activation by this protein. This protein also interacts with the transforming growth factor (TGF) beta receptor complex and is required for Smad-independent activation of the JNK and p38 kinases. This protein has an amino terminal RING domain which is followed by four zinc-finger motifs, a central coiled-coil region and a highly conserved carboxyl terminal domain, known as the TRAF-C domain. Two alternatively spliced transcript variants, encoding an identical protein, have been reported. |
| NA | ENSG00000166352 | C11orf74 | chromosome 11 open reading frame 74 | 119710 | This gene encodes a protein that was identified as a cellular interacting partner of non-structural protein 10 of the severe acute respiratory syndrome coronavirus (SARS-CoV). The encoded protein may function as a negative regulator of transcription. There is a pseudogene for this gene on chromosome 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000148948 | LRRC4C | leucine rich repeat containing 4C | 57689 | NGL1 is a specific binding partner for netrin G1 (NTNG1; MIM 608818), which is a member of the netrin family of axon guidance molecules (Lin et al., 2003 [PubMed 14595443]). |
| NA | ENSG00000166181 | API5 | apoptosis inhibitor 5 | 8539 | This gene encodes an apoptosis inhibitory protein whose expression prevents apoptosis after growth factor deprivation. This protein suppresses the transcription factor E2F1-induced apoptosis and also interacts with, and negatively regulates Acinus, a nuclear factor involved in apoptotic DNA fragmentation. Its depletion enhances the cytotoxic action of the chemotherapeutic drugs. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000149084 | HSD17B12 | hydroxysteroid (17-beta) dehydrogenase 12 | 51144 | This gene encodes a very important 17beta-hydroxysteroid dehydrogenase (17beta-HSD) that converts estrone into estradiol in ovarian tissue. This enzyme is also involved in fatty acid elongation. |
| NA | ENSG00000166199 | ALKBH3 | alkB homolog 3, alpha-ketoglutarate-dependent dioxygenase | 221120 | The Escherichia coli AlkB protein protects against the cytotoxicity of methylating agents by repair of the specific DNA lesions generated in single-stranded DNA. ALKBH2 (MIM 610602) and ALKBH3 are E. coli AlkB homologs that catalyze the removal of 1-methyladenine and 3-methylcytosine (Duncan et al., 2002 [PubMed 12486230]). |
| NA | ENSG00000151348 | EXT2 | exostosin glycosyltransferase 2 | 2132 | This gene encodes one of two glycosyltransferases involved in the chain elongation step of heparan sulfate biosynthesis. Mutations in this gene cause the type II form of multiple exostoses. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000085117 | CD82 | CD82 molecule | 3732 | This metastasis suppressor gene product is a membrane glycoprotein that is a member of the transmembrane 4 superfamily. Expression of this gene has been shown to be downregulated in tumor progression of human cancers and can be activated by p53 through a consensus binding sequence in the promoter. Its expression and that of p53 are strongly correlated, and the loss of expression of these two proteins is associated with poor survival for prostate cancer patients. Two alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000157570 | TSPAN18 | tetraspanin 18 | 90139 | NA |
| NA | ENSG00000019505 | SYT13 | synaptotagmin 13 | 57586 | This gene encodes a member of the large synaptotagmin protein family. Family members have an extracellular N-terminal transmembrane domain and a cytoplasmic C terminus with two tandem C2 domains (C2A and C2B). Synaptotogmin family members can form homo- and heteromeric complexes with each other. They also have different biochemical properties and developmental profiles, and patterns of tissue distribution. Synaptotagmins function as membrane traffickers in multicellular organisms. Two alternatively spliced transcript variants that encode different protein isoforms have been described for this gene. |
| NA | ENSG00000181830 | SLC35C1 | solute carrier family 35 member C1 | 55343 | This gene encodes a GDP-fucose transporter that is found in the Golgi apparatus. Mutations in this gene result in congenital disorder of glycosylation type IIc. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000121671 | CRY2 | cryptochrome circadian clock 2 | 1408 | This gene encodes a flavin adenine dinucleotide-binding protein that is a key component of the circadian core oscillator complex, which regulates the circadian clock. This gene is upregulated by CLOCK/ARNTL heterodimers but then represses this upregulation in a feedback loop using PER/CRY heterodimers to interact with CLOCK/ARNTL. Polymorphisms in this gene have been associated with altered sleep patterns. The encoded protein is widely conserved across plants and animals. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000121653 | MAPK8IP1 | mitogen-activated protein kinase 8 interacting protein 1 | 9479 | This gene encodes a regulator of the pancreatic beta-cell function. It is highly similar to JIP-1, a mouse protein known to be a regulator of c-Jun amino-terminal kinase (Mapk8). This protein has been shown to prevent MAPK8 mediated activation of transcription factors, and to decrease IL-1 beta and MAP kinase kinase 1 (MEKK1) induced apoptosis in pancreatic beta cells. This protein also functions as a DNA-binding transactivator of the glucose transporter GLUT2. RE1-silencing transcription factor (REST) is reported to repress the expression of this gene in insulin-secreting beta cells. This gene is found to be mutated in a type 2 diabetes family, and thus is thought to be a susceptibility gene for type 2 diabetes. |
| NA | ENSG00000121680 | PEX16 | peroxisomal biogenesis factor 16 | 9409 | The protein encoded by this gene is an integral peroxisomal membrane protein. An inactivating nonsense mutation localized to this gene was observed in a patient with Zellweger syndrome of the complementation group CGD/CG9. Expression of this gene product morphologically and biochemically restores the formation of new peroxisomes, suggesting a role in peroxisome organization and biogenesis. Alternative splicing has been observed for this gene and two variants have been described. |
| NA | ENSG00000165905 | GYLTL1B | glycosyltransferase-like 1B | 120071 | NA |
| NA | ENSG00000135365 | PHF21A | PHD finger protein 21A | 51317 | The PHF21A gene encodes BHC80, a component of a BRAF35 (MIM 605535)/histone deacetylase (HDAC; see MIM 601241) complex (BHC) that mediates repression of neuron-specific genes through the cis-regulatory element known as repressor element-1 (RE1) or neural restrictive silencer (NRS) (Hakimi et al., 2002 [PubMed 12032298]). |
| NA | ENSG00000157613 | CREB3L1 | cAMP responsive element binding protein 3-like 1 | 90993 | The protein encoded by this gene is normally found in the membrane of the endoplasmic reticulum (ER). However, upon stress to the ER, the encoded protein is cleaved and the released cytoplasmic transcription factor domain translocates to the nucleus. There it activates the transcription of target genes by binding to box-B elements. |
| NA | ENSG00000149091 | DGKZ | diacylglycerol kinase zeta | 8525 | The protein encoded by this gene belongs to the eukaryotic diacylglycerol kinase family. It may attenuate protein kinase C activity by regulating diacylglycerol levels in intracellular signaling cascade and signal transduction. Alternative splicing occurs at this locus and multiple transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000110497 | AMBRA1 | autophagy/beclin-1 regulator 1 | 55626 | NA |
| NA | ENSG00000180423 | HARBI1 | harbinger transposase derived 1 | 283254 | NA |
| NA | ENSG00000175224 | ATG13 | autophagy related 13 | 9776 | NA |
| NA | ENSG00000175220 | ARHGAP1 | Rho GTPase activating protein 1 | 392 | This gene encodes a member of a large family of proteins that activate Rho-type guanosine triphosphate (GTP) metabolizing enzymes. The encoded protein contains a SRC homology 3 domain and interacts with Bcl-2-associated protein family members. |
| NA | ENSG00000175213 | ZNF408 | zinc finger protein 408 | 79797 | NA |
| NA | ENSG00000175216 | CKAP5 | cytoskeleton associated protein 5 | 9793 | This gene encodes a cytoskeleton-associated protein which belongs to the TOG/XMAP215 family. The N-terminal half of this protein contains a microtubule-binding domain and the C-terminal half contains a KXGS motif for binding tubulin dimers. This protein has two distinct roles in spindle formation; it protects kinetochore microtubules from depolymerization and plays an essential role in centrosomal microtubule assembly. This protein may be necessary for the proper interaction of microtubules with the cell cortex for directional cell movement. It also plays a role in translation of the myelin basic protein (MBP) mRNA by interacting with heterogeneous nuclear ribonucleoprotein (hnRNP) A2, which associates with MBP. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000134569 | LRP4 | LDL receptor related protein 4 | 4038 | This gene encodes a member of the low-density lipoprotein receptor-related protein family. The encoded protein may be a regulator of Wnt signaling. Mutations in this gene are associated with Cenani-Lenz syndrome. |
| NA | ENSG00000149179 | C11orf49 | chromosome 11 open reading frame 49 | 79096 | NA |
| NA | ENSG00000149182 | ARFGAP2 | ADP ribosylation factor GTPase activating protein 2 | 84364 | NA |
| NA | ENSG00000165912 | PACSIN3 | protein kinase C and casein kinase substrate in neurons 3 | 29763 | This gene is a member of the protein kinase C and casein kinase substrate in neurons family. The encoded protein is involved in linking the actin cytoskeleton with vesicle formation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000134574 | DDB2 | damage specific DNA binding protein 2 | 1643 | This gene encodes a protein that is necessary for the repair of ultraviolet light-damaged DNA. This protein is the smaller subunit of a heterodimeric protein complex that participates in nucleotide excision repair, and this complex mediates the ubiquitylation of histones H3 and H4, which facilitates the cellular response to DNA damage. This subunit appears to be required for DNA binding. Mutations in this gene cause xeroderma pigmentosum complementation group E, a recessive disease that is characterized by an increased sensitivity to UV light and a high predisposition for skin cancer development, in some cases accompanied by neurological abnormalities. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000134575 | ACP2 | acid phosphatase 2, lysosomal | 53 | This gene encodes the beta subunit of lysosomal acid phosphatase (LAP). LAP is chemically and genetically distinct from red cell acid phosphatase. The encoded protein belongs to a family of distinct isoenzymes which hydrolyze orthophosphoric monoesters to alcohol and phosphate. LAP-deficiencies in mice cause multiple defects including bone structure alterations, lysosomal storage defects in the kidneys and central nervous system, and an increased tendency towards seizures. An enzymatically-inactive allele of LAP in mice exhibited a more severe phenotype than the null allele, and defects included cerebellum abnormalities, growth retardation, hair-follicle abnormalities, and an ataxia-like phenotype. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000025434 | NR1H3 | nuclear receptor subfamily 1 group H member 3 | 10062 | The protein encoded by this gene belongs to the NR1 subfamily of the nuclear receptor superfamily. The NR1 family members are key regulators of macrophage function, controlling transcriptional programs involved in lipid homeostasis and inflammation. This protein is highly expressed in visceral organs, including liver, kidney and intestine. It forms a heterodimer with retinoid X receptor (RXR), and regulates expression of target genes containing retinoid response elements. Studies in mice lacking this gene suggest that it may play an important role in the regulation of cholesterol homeostasis. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000110514 | MADD | MAP kinase activating death domain | 8567 | Tumor necrosis factor alpha (TNF-alpha) is a signaling molecule that interacts with one of two receptors on cells targeted for apoptosis. The apoptotic signal is transduced inside these cells by cytoplasmic adaptor proteins. The protein encoded by this gene is a death domain-containing adaptor protein that interacts with the death domain of TNF-alpha receptor 1 to activate mitogen-activated protein kinase (MAPK) and propagate the apoptotic signal. It is membrane-bound and expressed at a higher level in neoplastic cells than in normal cells. Several transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000165915 | SLC39A13 | solute carrier family 39 member 13 | 91252 | This gene encodes a member of the LIV-1 subfamily of the ZIP transporter family. The encoded transmembrane protein functions as a zinc transporter. Mutations in this gene have been associated with the spondylocheiro dysplastic form of Ehlers-Danlos syndrome. Alternate transcript variants have been found for this gene. |
| NA | ENSG00000165916 | PSMC3 | proteasome 26S subunit, ATPase 3 | 5702 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes one of the ATPase subunits, a member of the triple-A family of ATPases that have chaperone-like activity. This subunit may compete with PSMC2 for binding to the HIV tat protein to regulate the interaction between the viral protein and the transcription complex. A pseudogene has been identified on chromosome 9. |
| NA | ENSG00000149187 | CELF1 | CUGBP, Elav-like family member 1 | 10658 | Members of the CELF/BRUNOL protein family contain two N-terminal RNA recognition motif (RRM) domains, one C-terminal RRM domain, and a divergent segment of 160-230 aa between the second and third RRM domains. Members of this protein family regulate pre-mRNA alternative splicing and may also be involved in mRNA editing, and translation. This gene may play a role in myotonic dystrophy type 1 (DM1) via interactions with the dystrophia myotonica-protein kinase (DMPK) gene. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000213619 | NDUFS3 | NADH:ubiquinone oxidoreductase core subunit S3 | 4722 | This gene encodes one of the iron-sulfur protein (IP) components of mitochondrial NADH:ubiquinone oxidoreductase (complex I). Mutations in this gene are associated with Leigh syndrome resulting from mitochondrial complex I deficiency. |
| NA | ENSG00000110536 | PTPMT1 | protein tyrosine phosphatase, mitochondrial 1 | 114971 | NA |
| NA | ENSG00000123444 | KBTBD4 | kelch repeat and BTB domain containing 4 | 55709 | NA |
| NA | ENSG00000109919 | MTCH2 | mitochondrial carrier 2 | 23788 | This gene encodes a member of the SLC25 family of nuclear-encoded transporters that are localized in the inner mitochondrial membrane. Members of this superfamily are involved in many metabolic pathways and cell functions. Genome-wide association studies in human have identified single-nucleotide polymorphisms in several loci associated with obesity. This gene is one such locus, which is highly expressed in white adipose tissue and adipocytes, and thought to play a regulatory role in adipocyte differentiation and biology. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. A recent study showed this gene to be an authentic stop codon readthrough target, and that its mRNA can give rise to an additional C-terminally extended isoform by use of an alternative in-frame translation termination codon. |
| NA | ENSG00000109920 | FNBP4 | formin binding protein 4 | 23360 | NA |
| NA | ENSG00000030066 | NUP160 | nucleoporin 160kDa | 23279 | NUP160 is 1 of up to 60 proteins that make up the 120-MD nuclear pore complex, which mediates nucleoplasmic transport. |
| NA | ENSG00000149177 | PTPRJ | protein tyrosine phosphatase, receptor type J | 5795 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes, including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP possesses an extracellular region containing five fibronectin type III repeats, a single transmembrane region, and a single intracytoplasmic catalytic domain, and thus represents a receptor-type PTP. This protein is present in all hematopoietic lineages, and was shown to negatively regulate T cell receptor signaling possibly through interfering with the phosphorylation of Phospholipase C Gamma 1 and Linker for Activation of T Cells. This protein can also dephosphorylate the PDGF beta receptor, and may be involved in UV-induced signal transduction. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183908 | LRRC55 | leucine rich repeat containing 55 | 219527 | NA |
| NA | ENSG00000149115 | TNKS1BP1 | tankyrase 1 binding protein 1 | 85456 | NA |
| NA | ENSG00000149136 | SSRP1 | structure specific recognition protein 1 | 6749 | The protein encoded by this gene is a subunit of a heterodimer that, along with SUPT16H, forms chromatin transcriptional elongation factor FACT. FACT interacts specifically with histones H2A/H2B to effect nucleosome disassembly and transcription elongation. FACT and cisplatin-damaged DNA may be crucial to the anticancer mechanism of cisplatin. This encoded protein contains a high mobility group box which most likely constitutes the structure recognition element for cisplatin-modified DNA. This protein also functions as a co-activator of the transcriptional activator p63. An alternatively spliced transcript variant of this gene has been described, but its full-length nature is not known. |
| NA | ENSG00000186907 | RTN4RL2 | reticulon 4 receptor-like 2 | 349667 | NA |
| NA | ENSG00000149150 | SLC43A1 | solute carrier family 43 member 1 | 8501 | SLC43A1 belongs to the system L family of plasma membrane carrier proteins that transports large neutral amino acids (Babu et al., 2003 [PubMed 12930836]). |
| NA | ENSG00000156587 | UBE2L6 | ubiquitin conjugating enzyme E2 L6 | 9246 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes (E1s), ubiquitin-conjugating enzymes (E2s) and ubiquitin-protein ligases (E3s). This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. This enzyme is highly similar in primary structure to the enzyme encoded by the UBE2L3 gene. Two alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000172409 | CLP1 | cleavage and polyadenylation factor I subunit 1 | 10978 | This gene encodes a member of the Clp1 family. The encoded protein is a multifunctional kinase which is a component of the tRNA splicing endonuclease complex and a component of the pre-mRNA cleavage complex II. This protein is implicated in tRNA, mRNA, and siRNA maturation. Mutations in this gene are associated with pontocerebellar hypoplasia type 10 (PCH10). Alternatively splice transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000156599 | ZDHHC5 | zinc finger DHHC-type containing 5 | 25921 | NA |
| NA | ENSG00000156603 | MED19 | mediator complex subunit 19 | 219541 | The protein encoded by this gene is a subunit of the Mediator complex, which binds to gene-specific regulatory factors and provides support for the basal RNA polymerase II transcription machinery. This gene has been implicated in the growth of several types of cancer, and inhibition of its expression inhibits the growth and spread of these cancers. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000213593 | TMX2 | thioredoxin related transmembrane protein 2 | 51075 | NA |
| NA | ENSG00000211450 | C11orf31 | chromosome 11 open reading frame 31 | 280636 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. Sec is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein mRNAs contains a conserved stem-loop structure, designated the Sec insertion sequence (SECIS) element, that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. This selenoprotein functions as an oxidoreductase, and has been shown to protect neurons against UVB-induced damage by inhibiting apoptotic cell death pathways, promote mitochondrial biogenesis and mitochondrial function, and suppress cellular senescence through genome maintenance and redox regulation. |
| NA | ENSG00000198561 | CTNND1 | catenin delta 1 | 1500 | This gene encodes a member of the Armadillo protein family, which function in adhesion between cells and signal transduction. Multiple translation initiation codons and alternative splicing result in many different isoforms being translated. Not all of the full-length natures of the described transcript variants have been determined. Read-through transcription also exists between this gene and the neighboring upstream thioredoxin-related transmembrane protein 2 (TMX2) gene. |
| NA | ENSG00000110031 | LPXN | leupaxin | 9404 | The product encoded by this gene is preferentially expressed in hematopoietic cells and belongs to the paxillin protein family. Similar to other members of this focal-adhesion-associated adaptor-protein family, it has four leucine-rich LD-motifs in the N-terminus and four LIM domains in the C-terminus. It may function in cell type-specific signaling by associating with PYK2, a member of focal adhesion kinase family. As a substrate for a tyrosine kinase in lymphoid cells, this protein may also function in, and be regulated by, tyrosine kinase activity. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000166840 | LOC100287413 | uncharacterized LOC100287413 | 100287413 | NA |
| NA | ENSG00000166840 | GLYATL1 | glycine-N-acyltransferase like 1 | 92292 | NA |
| NA | ENSG00000189057 | FAM111B | family with sequence similarity 111 member B | 374393 | This gene encodes a protein with a trypsin-like cysteine/serine peptidase domain in the C-terminus. Mutations in this gene are associated with an autosomal dominant form of hereditary fibrosing poikiloderma (HFP). Affected individuals display mottled pigmentation, telangiectasia, epidermal atrophy, tendon contractures, and progressive pulmonary fibrosis. Alternative splicing results in multiple transcript variants encoding distinct isoforms. A paralog of this gene which also has a trypsin‐like peptidase domain, FAM111A, is located only 16 kb from this gene on human chromosome 11q12.1. |
| NA | ENSG00000110042 | DTX4 | deltex 4, E3 ubiquitin ligase | 23220 | NA |
| NA | ENSG00000110048 | OSBP | oxysterol binding protein | 5007 | Oxysterol binding protein is an intracellular protein that is believed to transport sterols from lysosomes to the nucleus where the sterol down-regulates the genes for the LDL receptor, HMG-CoA reductase, and HMG synthetase |
| NA | ENSG00000166889 | PATL1 | protein associated with topoisomerase II homolog 1 (yeast) | 219988 | NA |
| NA | ENSG00000166900 | STX3 | syntaxin 3 | 6809 | The gene is a member of the syntaxin family. The encoded protein is targeted to the apical membrane of epithelial cells where it forms clusters and is important in establishing and maintaining polarity necessary for protein trafficking involving vesicle fusion and exocytosis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166902 | MRPL16 | mitochondrial ribosomal protein L16 | 54948 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000110104 | CCDC86 | coiled-coil domain containing 86 | 79080 | NA |
| NA | ENSG00000110107 | PRPF19 | pre-mRNA processing factor 19 | 27339 | PSO4 is the human homolog of yeast Pso4, a gene essential for cell survival and DNA repair (Beck et al., 2008 [PubMed 18263876]). |
| NA | ENSG00000110108 | TMEM109 | transmembrane protein 109 | 79073 | NA |
| NA | ENSG00000006118 | TMEM132A | transmembrane protein 132A | 54972 | This gene encodes a protein that is highly similar to the rat Grp78-binding protein (GBP). Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000110446 | SLC15A3 | solute carrier family 15 member 3 | 51296 | NA |
| NA | ENSG00000167987 | VPS37C | VPS37C, ESCRT-I subunit | 55048 | VPS37C is a subunit of ESCRT-I (endosomal sorting complex required for transport I), a complex in the class E vacuolar protein sorting (VPS) pathway required for sorting ubiquitinated transmembrane proteins into internal vesicles of multivesicular bodies (Eastman et al., 2005 [PubMed 15509564]). |
| NA | ENSG00000167992 | VWCE | von Willebrand factor C and EGF domains | 220001 | NA |
| NA | ENSG00000167986 | DDB1 | damage specific DNA binding protein 1 | 1642 | The protein encoded by this gene is the large subunit (p127) of the heterodimeric DNA damage-binding (DDB) complex while another protein (p48) forms the small subunit. This protein complex functions in nucleotide-excision repair and binds to DNA following UV damage. Defective activity of this complex causes the repair defect in patients with xeroderma pigmentosum complementation group E (XPE) - an autosomal recessive disorder characterized by photosensitivity and early onset of carcinomas. However, it remains for mutation analysis to demonstrate whether the defect in XPE patients is in this gene or the gene encoding the small subunit. In addition, Best vitelliform mascular dystrophy is mapped to the same region as this gene on 11q, but no sequence alternations of this gene are demonstrated in Best disease patients. The protein encoded by this gene also functions as an adaptor molecule for the cullin 4 (CUL4) ubiquitin E3 ligase complex by facilitating the binding of substrates to this complex and the ubiquitination of proteins. |
| NA | ENSG00000149476 | TKFC | triokinase and FMN cyclase | 26007 | This gene is a member of the family of dihydroxyacetone kinases, which have a protein structure distinct from other kinases. The product of this gene phosphorylates dihydroxyacetone, and also catalyzes the formation of riboflavin 4’,5’-phosphate (aka cyclin FMN) from FAD. Several alternatively spliced transcript variants have been identified, but the full-length nature of only one has been determined. |
| NA | ENSG00000162144 | CYB561A3 | cytochrome b561 family member A3 | 220002 | NA |
| NA | ENSG00000149532 | CPSF7 | cleavage and polyadenylation specific factor 7 | 79869 | NA |
| NA | ENSG00000167985 | SDHAF2 | succinate dehydrogenase complex assembly factor 2 | 54949 | This gene encodes a mitochondrial protein needed for the flavination of a succinate dehydrogenase complex subunit required for activity of the complex. Mutations in this gene are associated with paraganglioma. |
| NA | ENSG00000011347 | SYT7 | synaptotagmin 7 | 9066 | This gene is a member of the synaptotagmin gene family and encodes a protein similar to other family members that mediate calcium-dependent regulation of membrane trafficking in synaptic transmission. A similar protein in rodents mediates hormone secretion and lysosome exocytosis. In humans, expression of this gene has been associated with prostate cancer. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000134780 | DAGLA | diacylglycerol lipase alpha | 747 | This gene encodes a diacylglycerol lipase. The encoded enzyme is involved in the biosynthesis of the endocannabinoid 2-arachidonoyl-glycerol. |
| NA | ENSG00000134825 | TMEM258 | transmembrane protein 258 | 746 | NA |
| NA | ENSG00000168496 | FEN1 | flap structure-specific endonuclease 1 | 2237 | The protein encoded by this gene removes 5’ overhanging flaps in DNA repair and processes the 5’ ends of Okazaki fragments in lagging strand DNA synthesis. Direct physical interaction between this protein and AP endonuclease 1 during long-patch base excision repair provides coordinated loading of the proteins onto the substrate, thus passing the substrate from one enzyme to another. The protein is a member of the XPG/RAD2 endonuclease family and is one of ten proteins essential for cell-free DNA replication. DNA secondary structure can inhibit flap processing at certain trinucleotide repeats in a length-dependent manner by concealing the 5’ end of the flap that is necessary for both binding and cleavage by the protein encoded by this gene. Therefore, secondary structure can deter the protective function of this protein, leading to site-specific trinucleotide expansions. |
| NA | ENSG00000134824 | FADS2 | fatty acid desaturase 2 | 9415 | The protein encoded by this gene is a member of the fatty acid desaturase (FADS) gene family. Desaturase enzymes regulate unsaturation of fatty acids through the introduction of double bonds between defined carbons of the fatty acyl chain. FADS family members are considered fusion products composed of an N-terminal cytochrome b5-like domain and a C-terminal multiple membrane-spanning desaturase portion, both of which are characterized by conserved histidine motifs. This gene is clustered with family members at 11q12-q13.1; this cluster is thought to have arisen evolutionarily from gene duplication based on its similar exon/intron organization. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000149485 | FADS1 | fatty acid desaturase 1 | 3992 | The protein encoded by this gene is a member of the fatty acid desaturase (FADS) gene family. Desaturase enzymes regulate unsaturation of fatty acids through the introduction of double bonds between defined carbons of the fatty acyl chain. FADS family members are considered fusion products composed of an N-terminal cytochrome b5-like domain and a C-terminal multiple membrane-spanning desaturase portion, both of which are characterized by conserved histidine motifs. This gene is clustered with family members FADS1 and FADS2 at 11q12-q13.1; this cluster is thought to have arisen evolutionarily from gene duplication based on its similar exon/intron organization. |
| NA | ENSG00000221968 | FADS3 | fatty acid desaturase 3 | 3995 | The protein encoded by this gene is a member of the fatty acid desaturase (FADS) gene family. Desaturase enzymes regulate unsaturation of fatty acids through the introduction of double bonds between defined carbons of the fatty acyl chain. FADS family members are considered fusion products composed of an N-terminal cytochrome b5-like domain and a C-terminal multiple membrane-spanning desaturase portion, both of which are characterized by conserved histidine motifs. This gene is clustered with family members FADS1 and FADS2 at 11q12-q13.1; this cluster is thought to have arisen evolutionarily from gene duplication based on its similar exon/intron organization. |
| NA | ENSG00000167996 | FTH1 | ferritin, heavy polypeptide 1 | 2495 | This gene encodes the heavy subunit of ferritin, the major intracellular iron storage protein in prokaryotes and eukaryotes. It is composed of 24 subunits of the heavy and light ferritin chains. Variation in ferritin subunit composition may affect the rates of iron uptake and release in different tissues. A major function of ferritin is the storage of iron in a soluble and nontoxic state. Defects in ferritin proteins are associated with several neurodegenerative diseases. This gene has multiple pseudogenes. Several alternatively spliced transcript variants have been observed, but their biological validity has not been determined. |
| NA | ENSG00000149503 | INCENP | inner centromere protein | 3619 | In mammalian cells, 2 broad groups of centromere-interacting proteins have been described: constitutively binding centromere proteins and ‘passenger,’ or transiently interacting, proteins (reviewed by Choo, 1997). The constitutive proteins include CENPA (centromere protein A; MIM 117139), CENPB (MIM 117140), CENPC1 (MIM 117141), and CENPD (MIM 117142). The term ‘passenger proteins’ encompasses a broad collection of proteins that localize to the centromere during specific stages of the cell cycle (Earnshaw and Mackay, 1994 [PubMed 8088460]). These include CENPE (MIM 117143); MCAK (MIM 604538); KID (MIM 603213); cytoplasmic dynein (e.g., MIM 600112); CliPs (e.g., MIM 179838); and CENPF/mitosin (MIM 600236). The inner centromere proteins (INCENPs) (Earnshaw and Cooke, 1991 [PubMed 1860899]), the initial members of the passenger protein group, display a broad localization along chromosomes in the early stages of mitosis but gradually become concentrated at centromeres as the cell cycle progresses into mid-metaphase. During telophase, the proteins are located within the midbody in the intercellular bridge, where they are discarded after cytokinesis (Cutts et al., 1999 [PubMed 10369859]). |
| NA | ENSG00000162174 | ASRGL1 | asparaginase like 1 | 80150 | NA |
| NA | ENSG00000149016 | TUT1 | terminal uridylyl transferase 1, U6 snRNA-specific | 64852 | This gene encodes a nucleotidyl transferase that functions as both a terminal uridylyltransferase and a nuclear poly(A) polymerase. The encoded enzyme specifically adds and removes nucleotides from the 3’ end of small nuclear RNAs and select mRNAs and may function in controlling gene expression and cell proliferation. |
| NA | ENSG00000149480 | MTA2 | metastasis associated 1 family member 2 | 9219 | This gene encodes a protein that has been identified as a component of NuRD, a nucleosome remodeling deacetylase complex identified in the nucleus of human cells. It shows a very broad expression pattern and is strongly expressed in many tissues. It may represent one member of a small gene family that encode different but related proteins involved either directly or indirectly in transcriptional regulation. Their indirect effects on transcriptional regulation may include chromatin remodeling. It is closely related to another member of this family, a protein that has been correlated with the metastatic potential of certain carcinomas. These two proteins are so closely related that they share the same types of domains. These domains include two DNA binding domains, a dimerization domain, and a domain commonly found in proteins that methylate DNA. One of the proteins known to be a target protein for this gene product is p53. Deacetylation of p53 is correlated with a loss of growth inhibition in transformed cells supporting a connection between these gene family members and metastasis. |
| NA | ENSG00000149541 | B3GAT3 | beta-1,3-glucuronyltransferase 3 | 26229 | The protein encoded by this gene is a member of the glucuronyltransferase gene family, enzymes that exhibit strict acceptor specificity, recognizing nonreducing terminal sugars and their anomeric linkages. This gene product catalyzes the formation of the glycosaminoglycan-protein linkage by way of a glucuronyl transfer reaction in the final step of the biosynthesis of the linkage region of proteoglycans. A pseudogene of this gene has been identified on chromosome 3. |
| NA | ENSG00000089597 | GANAB | glucosidase II alpha subunit | 23193 | NA |
| NA | ENSG00000185085 | INTS5 | integrator complex subunit 5 | 80789 | INTS5 is a subunit of the Integrator complex, which associates with the C-terminal domain of RNA polymerase II large subunit (POLR2A; MIM 180660) and mediates 3-prime end processing of small nuclear RNAs U1 (RNU1; MIM 180680) and U2 (RNU2; MIM 180690) (Baillat et al., 2005 [PubMed 16239144]). |
| NA | ENSG00000162194 | LBHD1 | LBH domain containing 1 | 79081 | NA |
| NA | ENSG00000204922 | UQCC3 | ubiquinol-cytochrome c reductase complex assembly factor 3 | 790955 | Complex III is a mitochondrial inner membrane protein complex that transfers electrons from ubiquinol to cytochrome c. This gene encodes a protein that functions in complex III assembly. Mutations in this gene result in Mitochondrial complex III deficiency, nuclear type 9. |
| NA | ENSG00000162191 | UBXN1 | UBX domain protein 1 | 51035 | NA |
| NA | ENSG00000168000 | BSCL2 | Berardinelli-Seip congenital lipodystrophy 2 (seipin) | 26580 | This gene encodes the multi-pass transmembrane protein protein seipin. This protein localizes to the endoplasmic reticulum and may be important for lipid droplet morphology. Mutations in this gene have been associated with congenital generalized lipodystrophy type 2 or Berardinelli-Seip syndrome, a rare autosomal recessive disease characterized by a near absence of adipose tissue and severe insulin resistance. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. Naturally occurring read-through transcription occurs between this locus and the neighboring locus HNRNPUL2 (heterogeneous nuclear ribonucleoprotein U-like 2). |
| NA | ENSG00000162188 | GNG3 | G protein subunit gamma 3 | 2785 | Guanine nucleotide binding proteins are heterotrimeric signal-transducing molecules consisting of alpha, beta, and gamma subunits. The gamma subunit determines the specificity of which signaling pathways will be affected by this particular complex. The protein encoded by this gene represents the gamma subunit of both inhibitory and stimulatory complexes. |
| NA | ENSG00000214753 | HNRNPUL2 | heterogeneous nuclear ribonucleoprotein U-like 2 | 221092 | NA |
| NA | ENSG00000162222 | TTC9C | tetratricopeptide repeat domain 9C | 283237 | NA |
| NA | ENSG00000185670 | ZBTB3 | zinc finger and BTB domain containing 3 | 79842 | NA |
| NA | ENSG00000168002 | POLR2G | polymerase (RNA) II subunit G | 5436 | This gene encodes the seventh largest subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. The protein functions in transcription initiation, and is also thought to help stabilize transcribing polyermase molecules during elongation. |
| NA | ENSG00000162231 | NXF1 | nuclear RNA export factor 1 | 10482 | This gene is one member of a family of nuclear RNA export factor genes. Common domain features of this family are a noncanonical RNP-type RNA-binding domain (RBD), 4 leucine-rich repeats (LRRs), a nuclear transport factor 2 (NTF2)-like domain that allows heterodimerization with NTF2-related export protein-1 (NXT1), and a ubiquitin-associated domain that mediates interactions with nucleoporins. The LRRs and NTF2-like domains are required for export activity. Alternative splicing seems to be a common mechanism in this gene family. The encoded protein of this gene shuttles between the nucleus and the cytoplasm and binds in vivo to poly(A)+ RNA. It is the vertebrate homologue of the yeast protein Mex67p. The encoded protein overcomes the mRNA export block caused by the presence of saturating amounts of CTE (constitutive transport element) RNA of type D retroviruses. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000162236 | STX5 | syntaxin 5 | 6811 | This gene encodes a member of the syntaxin or t-SNARE (target-SNAP receptor) family. These proteins are found on cell membranes and serve as the targets for v-SNAREs (vesicle-SNAP receptors), permitting specific synaptic vesicle docking and fusion. The encoded protein regulates endoplasmic reticulum to Golgi transport and plays a critical role in autophagy. Autoantibodies targeting the encoded protein may be a diagnostic marker for endometriosis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000133316 | WDR74 | WD repeat domain 74 | 54663 | NA |
| NA | ENSG00000168003 | SLC3A2 | solute carrier family 3 member 2 | 6520 | This gene is a member of the solute carrier family and encodes a cell surface, transmembrane protein. The protein exists as the heavy chain of a heterodimer, covalently bound through di-sulfide bonds to one of several possible light chains. The encoded transporter plays a role in regulation of intracellular calcium levels and transports L-type amino acids. Alternatively spliced transcript variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000176485 | PLA2G16 | phospholipase A2 group XVI | 11145 | NA |
| NA | ENSG00000184743 | ATL3 | atlastin GTPase 3 | 25923 | This gene encodes a member of a family of dynamin-like, integral membrane GTPases. The encoded protein is required for the proper formation of the network of interconnected tubules of the endoplasmic reticulum. Mutations in this gene may be associated with hereditary sensory neuropathy type IF. Alternatively spliced transcript variants that encode distinct isoforms have been described. |
| NA | ENSG00000133318 | RTN3 | reticulon 3 | 10313 | This gene belongs to the reticulon family of highly conserved genes that are preferentially expressed in neuroendocrine tissues. This family of proteins interact with, and modulate the activity of beta-amyloid converting enzyme 1 (BACE1), and the production of amyloid-beta. An increase in the expression of any reticulon protein substantially reduces the production of amyloid-beta, suggesting that reticulon proteins are negative modulators of BACE1 in cells. Alternatively spliced transcript variants encoding different isoforms have been found for this gene, and pseudogenes of this gene are located on chromosomes 4 and 12. |
| NA | ENSG00000168005 | C11orf84 | chromosome 11 open reading frame 84 | 144097 | NA |
| NA | ENSG00000072518 | MARK2 | microtubule affinity regulating kinase 2 | 2011 | This gene encodes a member of the Par-1 family of serine/threonine protein kinases. The protein is an important regulator of cell polarity in epithelial and neuronal cells, and also controls the stability of microtubules through phosphorylation and inactivation of several microtubule-associating proteins. The protein localizes to cell membranes. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000167771 | RCOR2 | REST corepressor 2 | 283248 | NA |
| NA | ENSG00000110583 | NAA40 | N(alpha)-acetyltransferase 40, NatD catalytic subunit | 79829 | NA |
| NA | ENSG00000176340 | COX8A | cytochrome c oxidase subunit 8A | 1351 | The protein encoded by this gene is the terminal enzyme of the respiratory chain, coupling the transfer of electrons from cytochrome c to molecular oxygen, with the concomitant production of a proton electrochemical gradient across the inner mitochondrial membrane. In addition to 3 mitochondrially encoded subunits, which perform the catalytic function, the eukaryotic enzyme contains nuclear-encoded smaller subunits, ranging in number from 4 in some organisms to 10 in mammals. It has been proposed that nuclear-encoded subunits may be involved in the modulation of the catalytic function. This gene encodes one of the nuclear-encoded subunits. |
| NA | ENSG00000167770 | OTUB1 | OTU deubiquitinase, ubiquitin aldehyde binding 1 | 55611 | The product of this gene is a member of the OTU (ovarian tumor) superfamily of predicted cysteine proteases. The encoded protein is a highly specific ubiquitin iso-peptidase, and cleaves ubiquitin from branched poly-ubiquitin chains but not from ubiquitinated substrates. It interacts with another ubiquitin protease and an E3 ubiquitin ligase that inhibits cytokine gene transcription in the immune system. It is proposed to function in specific ubiquitin-dependent pathways, possibly by providing an editing function for polyubiquitin chain growth. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000133315 | MACROD1 | MACRO domain containing 1 | 28992 | NA |
| NA | ENSG00000168439 | STIP1 | stress induced phosphoprotein 1 | 10963 | STIP1 is an adaptor protein that coordinates the functions of HSP70 (see HSPA1A; MIM 140550) and HSP90 (see HSP90AA1; MIM 140571) in protein folding. It is thought to assist in the transfer of proteins from HSP70 to HSP90 by binding both HSP90 and substrate-bound HSP70. STIP1 also stimulates the ATPase activity of HSP70 and inhibits the ATPase activity of HSP90, suggesting that it regulates both the conformations and ATPase cycles of these chaperones (Song and Masison, 2005 [PubMed 16100115]). |
| NA | ENSG00000149743 | TRPT1 | tRNA phosphotransferase 1 | 83707 | NA |
| NA | ENSG00000149761 | NUDT22 | nudix hydrolase 22 | 84304 | NA |
| NA | ENSG00000110011 | DNAJC4 | DnaJ heat shock protein family (Hsp40) member C4 | 3338 | NA |
| NA | ENSG00000173511 | VEGFB | vascular endothelial growth factor B | 7423 | This gene encodes a member of the PDGF (platelet-derived growth factor)/VEGF (vascular endothelial growth factor) family. The VEGF family members regulate the formation of blood vessels and are involved in endothelial cell physiology. This member is a ligand for VEGFR-1 (vascular endothelial growth factor receptor 1) and NRP-1 (neuropilin-1). Studies in mice showed that this gene was co-expressed with nuclear-encoded mitochondrial genes and the encoded protein specifically controlled endothelial uptake of fatty acids. Alternatively spliced transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000173457 | PPP1R14B | protein phosphatase 1 regulatory inhibitor subunit 14B | 26472 | NA |
| NA | ENSG00000149782 | PLCB3 | phospholipase C beta 3 | 5331 | This gene encodes a member of the phosphoinositide phospholipase C beta enzyme family that catalyze the production of the secondary messengers diacylglycerol and inositol 1,4,5-triphosphate from phosphatidylinositol in G-protein-linked receptor-mediated signal transduction. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000002330 | BAD | BCL2 associated agonist of cell death | 572 | The protein encoded by this gene is a member of the BCL-2 family. BCL-2 family members are known to be regulators of programmed cell death. This protein positively regulates cell apoptosis by forming heterodimers with BCL-xL and BCL-2, and reversing their death repressor activity. Proapoptotic activity of this protein is regulated through its phosphorylation. Protein kinases AKT and MAP kinase, as well as protein phosphatase calcineurin were found to be involved in the regulation of this protein. Alternative splicing of this gene results in two transcript variants which encode the same isoform. |
| NA | ENSG00000173264 | GPR137 | G protein-coupled receptor 137 | 56834 | NA |
| NA | ENSG00000173153 | ESRRA | estrogen related receptor alpha | 2101 | The protein encoded by this gene is a nuclear receptor that is closely related to the estrogen receptor. This protein acts as a site-specific transcription regulator and has been also shown to interact with estrogen and the transcripton factor TFIIB by direct protein-protein contact. The binding and regulatory activities of this protein have been demonstrated in the regulation of a variety of genes including lactoferrin, osteopontin, medium-chain acyl coenzyme A dehydrogenase (MCAD) and thyroid hormone receptor genes. A processed pseudogene of ESRRA is located on chromosome 13q12.1. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000173113 | TRMT112 | tRNA methyltransferase 11-2 homolog (S. cerevisiae) | 51504 | NA |
| NA | ENSG00000126432 | PRDX5 | peroxiredoxin 5 | 25824 | This gene encodes a member of the peroxiredoxin family of antioxidant enzymes, which reduce hydrogen peroxide and alkyl hydroperoxides. The encoded protein may play an antioxidant protective role in different tissues under normal conditions and during inflammatory processes. This protein interacts with peroxisome receptor 1. The crystal structure of this protein in its reduced form has been resolved to 1.5 angstrom resolution. This gene uses alternate in-frame translation initiation sites to generate mitochondrial or peroxisomal/cytoplasmic forms. Three transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000168071 | CCDC88B | coiled-coil domain containing 88B | 283234 | This gene encodes a member of the hook-related protein family. Members of this family are characterized by an N-terminal potential microtubule binding domain, a central coiled-coiled and a C-terminal Hook-related domain. The encoded protein may be involved in linking organelles to microtubules. |
| NA | ENSG00000162302 | RPS6KA4 | ribosomal protein S6 kinase A4 | 8986 | This gene encodes a member of the RSK (ribosomal S6 kinase) family of serine/threonine kinases. This kinase contains 2 non-identical kinase catalytic domains and phosphorylates various substrates, including CREB1 and ATF1. The encoded protein can also phosphorylate histone H3 to regulate certain inflammatory genes. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000110076 | NRXN2 | neurexin 2 | 9379 | This gene encodes a member of the neurexin gene family. The products of these genes function as cell adhesion molecules and receptors in the vertebrate nervous system. These genes utilize two promoters. The majority of transcripts are produced from the upstream promoter and encode alpha-neurexin isoforms while a smaller number of transcripts are produced from the downstream promoter and encode beta-neuresin isoforms. The alpha-neurexins contain epidermal growth factor-like (EGF-like) sequences and laminin G domains, and have been shown to interact with neurexophilins. The beta-neurexins lack EGF-like sequences and contain fewer laminin G domains than alpha-neurexins. Alternative splicing and the use of alternative promoters may generate thousands of transcript variants (PMID: 12036300, PMID: 11944992). |
| NA | ENSG00000068831 | RASGRP2 | RAS guanyl releasing protein 2 | 10235 | The protein encoded by this gene is a brain-enriched nucleotide exchanged factor that contains an N-terminal GEF domain, 2 tandem repeats of EF-hand calcium-binding motifs, and a C-terminal diacylglycerol/phorbol ester-binding domain. This protein can activate small GTPases, including RAS and RAP1/RAS3. The nucleotide exchange activity of this protein can be stimulated by calcium and diacylglycerol. Four alternatively spliced transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000068976 | PYGM | phosphorylase, glycogen, muscle | 5837 | This gene encodes a muscle enzyme involved in glycogenolysis. Highly similar enzymes encoded by different genes are found in liver and brain. Mutations in this gene are associated with McArdle disease (myophosphorylase deficiency), a glycogen storage disease of muscle. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168066 | SF1 | splicing factor 1 | 7536 | This gene encodes a nuclear pre-mRNA splicing factor. The encoded protein specifically recognizes the intron branch point sequence and is required for the early stages of spliceosome assembly. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000168067 | MAP4K2 | mitogen-activated protein kinase kinase kinase kinase 2 | 5871 | The protein encoded by this gene is a member of the serine/threonine protein kinase family. Although this kinase is found in many tissues, its expression in lymphoid follicles is restricted to the cells of germinal centre, where it may participate in B-cell differentiation. This kinase can be activated by TNF-alpha, and has been shown to specifically activate MAP kinases. This kinase is also found to interact with TNF receptor-associated factor 2 (TRAF2), which is involved in the activation of MAP3K1/MEKK1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000133895 | MEN1 | menin 1 | 4221 | This gene encodes menin, a putative tumor suppressor associated with a syndrome known as multiple endocrine neoplasia type 1. In vitro studies have shown menin is localized to the nucleus, possesses two functional nuclear localization signals, and inhibits transcriptional activation by JunD, however, the function of this protein is not known. Two messages have been detected on northern blots but the larger message has not been characterized. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171219 | CDC42BPG | CDC42 binding protein kinase gamma | 55561 | NA |
| NA | ENSG00000110047 | EHD1 | EH domain containing 1 | 10938 | This gene belongs to a highly conserved gene family encoding EPS15 homology (EH) domain-containing proteins. The protein-binding EH domain was first noted in EPS15, a substrate for the epidermal growth factor receptor. The EH domain has been shown to be an important motif in proteins involved in protein-protein interactions and in intracellular sorting. The protein encoded by this gene is thought to play a role in the endocytosis of IGF1 receptors. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000110046 | ATG2A | autophagy related 2A | 23130 | NA |
| NA | ENSG00000068971 | PPP2R5B | protein phosphatase 2 regulatory subunit B’, beta | 5526 | The product of this gene belongs to the phosphatase 2A regulatory subunit B family. Protein phosphatase 2A is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The B regulatory subunit might modulate substrate selectivity and catalytic activity. This gene encodes a beta isoform of the regulatory subunit B56 subfamily. |
| NA | ENSG00000168062 | BATF2 | basic leucine zipper ATF-like transcription factor 2 | 116071 | NA |
| NA | ENSG00000213465 | ARL2 | ADP ribosylation factor like GTPase 2 | 402 | This gene encodes a small GTP-binding protein of the RAS superfamily which functions as an ADP-ribosylation factor (ARF). The encoded protein is one of a functionally distinct group of ARF-like genes. |
| NA | ENSG00000168061 | SAC3D1 | SAC3 domain containing 1 | 29901 | NA |
| NA | ENSG00000168060 | NAALADL1 | N-acetylated alpha-linked acidic dipeptidase-like 1 | 10004 | NA |
| NA | ENSG00000146670 | CDCA5 | cell division cycle associated 5 | 113130 | NA |
| NA | ENSG00000162300 | ZFPL1 | zinc finger protein like 1 | 7542 | NA |
| NA | ENSG00000149823 | VPS51 | VPS51, GARP complex subunit | 738 | This gene encodes a member of the vacuolar protein sorting-associated protein 51 family. The encoded protein is a component of the Golgi-associated retrograde protein complex which acts as a tethering factor for carriers in retrograde transport from the early and late endosomes to the trans-Golgi network. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000149809 | TM7SF2 | transmembrane 7 superfamily member 2 | 7108 | NA |
| NA | ENSG00000174276 | ZNHIT2 | zinc finger HIT-type containing 2 | 741 | NA |
| NA | ENSG00000149806 | FAU | Finkel-Biskis-Reilly murine sarcoma virus (FBR-MuSV) ubiquitously expressed | 2197 | This gene is the cellular homolog of the fox sequence in the Finkel-Biskis-Reilly murine sarcoma virus (FBR-MuSV). It encodes a fusion protein consisting of the ubiquitin-like protein fubi at the N terminus and ribosomal protein S30 at the C terminus. It has been proposed that the fusion protein is post-translationally processed to generate free fubi and free ribosomal protein S30. Fubi is a member of the ubiquitin family, and ribosomal protein S30 belongs to the S30E family of ribosomal proteins. Whereas the function of fubi is currently unknown, ribosomal protein S30 is a component of the 40S subunit of the cytoplasmic ribosome and displays antimicrobial activity. Pseudogenes derived from this gene are present in the genome. Similar to ribosomal protein S30, ribosomal proteins S27a and L40 are synthesized as fusion proteins with ubiquitin. |
| NA | ENSG00000162298 | SYVN1 | synoviolin 1 | 84447 | This gene encodes a protein involved in endoplasmic reticulum (ER)-associated degradation. The encoded protein removes unfolded proteins, accumulated during ER stress, by retrograde transport to the cytosol from the ER. This protein also uses the ubiquitin-proteasome system for additional degradation of unfolded proteins. Sequence analysis identified two transcript variants that encode different isoforms. |
| NA | ENSG00000149792 | MRPL49 | mitochondrial ribosomal protein L49 | 740 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. Pseudogenes corresponding to this gene are found on chromosomes 5q and 8p. |
| NA | ENSG00000014216 | CAPN1 | calpain 1 | 823 | The calpains, calcium-activated neutral proteases, are nonlysosomal, intracellular cysteine proteases. The mammalian calpains include ubiquitous, stomach-specific, and muscle-specific proteins. The ubiquitous enzymes consist of heterodimers with distinct large, catalytic subunits associated with a common small, regulatory subunit. This gene encodes the large subunit of the ubiquitous enzyme, calpain 1. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000014138 | POLA2 | polymerase (DNA) alpha 2, accessory subunit | 23649 | NA |
| NA | ENSG00000149798 | CDC42EP2 | CDC42 effector protein 2 | 10435 | CDC42, a small Rho GTPase, regulates the formation of F-actin-containing structures through its interaction with the downstream effector proteins. The protein encoded by this gene is a member of the Borg family of CDC42 effector proteins. Borg family proteins contain a CRIB (Cdc42/Rac interactive-binding) domain. They bind to, and negatively regulate the function of CDC42. Coexpression of this protein with CDC42 suggested a role of this protein in actin filament assembly and cell shape control. |
| NA | ENSG00000133884 | DPF2 | double PHD fingers 2 | 5977 | The protein encoded by this gene is a member of the d4 domain family, characterized by a zinc finger-like structural motif. This protein functions as a transcription factor which is necessary for the apoptotic response following deprivation of survival factors. It likely serves a regulatory role in rapid hematopoietic cell growth and turnover. This gene is considered a candidate gene for multiple endocrine neoplasia type I, an inherited cancer syndrome involving multiple parathyroid, enteropancreatic, and pituitary tumors. |
| NA | ENSG00000126391 | FRMD8 | FERM domain containing 8 | 83786 | NA |
| NA | ENSG00000142186 | SCYL1 | SCY1 like pseudokinase 1 | 57410 | This gene encodes a transcriptional regulator belonging to the SCY1-like family of kinase-like proteins. The protein has a divergent N-terminal kinase domain that is thought to be catalytically inactive, and can bind specific DNA sequences through its C-terminal domain. It activates transcription of the telomerase reverse transcriptase and DNA polymerase beta genes. The protein has been localized to the nucleus, and also to the cytoplasm and centrosomes during mitosis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000168056 | LTBP3 | latent transforming growth factor beta binding protein 3 | 4054 | The protein encoded by this gene forms a complex with transforming growth factor beta (TGF-beta) proteins and may be involved in their subcellular localization. Activation of this complex requires removal of the encoded binding protein. This protein also may play a structural role in the extracellular matrix. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000173465 | SSSCA1 | Sjogren syndrome/scleroderma autoantigen 1 | 10534 | This antigen is recognized by a subset of anti-centromere antibodies from patients with scleroderma and/or Sjogren’s syndrome. Subcellular localization has not yet been established. |
| NA | ENSG00000176973 | FAM89B | family with sequence similarity 89 member B | 23625 | NA |
| NA | ENSG00000173327 | MAP3K11 | mitogen-activated protein kinase kinase kinase 11 | 4296 | The protein encoded by this gene is a member of the serine/threonine kinase family. This kinase contains a SH3 domain and a leucine zipper-basic motif. This kinase preferentially activates MAPK8/JNK kinase, and functions as a positive regulator of JNK signaling pathway. This kinase can directly phosphorylate, and activates IkappaB kinase alpha and beta, and is found to be involved in the transcription activity of NF-kappaB mediated by Rho family GTPases and CDC42. |
| NA | ENSG00000197136 | PCNX3 | pecanex homolog 3 (Drosophila) | 399909 | NA |
| NA | ENSG00000213445 | SIPA1 | signal-induced proliferation-associated 1 | 6494 | The product of this gene is a mitogen induced GTPase activating protein (GAP). It exhibits a specific GAP activity for Ras-related regulatory proteins Rap1 and Rap2, but not for Ran or other small GTPases. This protein may also hamper mitogen-induced cell cycle progression when abnormally or prematurely expressed. It is localized to the perinuclear region. Two alternatively spliced variants encoding the same isoform have been characterized to date. |
| NA | ENSG00000173039 | RELA | v-rel avian reticuloendotheliosis viral oncogene homolog A | 5970 | NF-kappa-B is a ubiquitous transcription factor involved in several biological processes. It is held in the cytoplasm in an inactive state by specific inhibitors. Upon degradation of the inhibitor, NF-kappa-B moves to the nucleus and activates transcription of specific genes. NF-kappa-B is composed of NFKB1 or NFKB2 bound to either REL, RELA, or RELB. The most abundant form of NF-kappa-B is NFKB1 complexed with the product of this gene, RELA. Four transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000172977 | KAT5 | lysine acetyltransferase 5 | 10524 | The protein encoded by this gene belongs to the MYST family of histone acetyl transferases (HATs) and was originally isolated as an HIV-1 TAT-interactive protein. HATs play important roles in regulating chromatin remodeling, transcription and other nuclear processes by acetylating histone and nonhistone proteins. This protein is a histone acetylase that has a role in DNA repair and apoptosis and is thought to play an important role in signal transduction. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000254470 | AP5B1 | adaptor related protein complex 5 beta 1 subunit | 91056 | NA |
| NA | ENSG00000172757 | CFL1 | cofilin 1 | 1072 | The protein encoded by this gene can polymerize and depolymerize F-actin and G-actin in a pH-dependent manner. Increased phosphorylation of this protein by LIM kinase aids in Rho-induced reorganization of the actin cytoskeleton. Cofilin is a widely distributed intracellular actin-modulating protein that binds and depolymerizes filamentous F-actin and inhibits the polymerization of monomeric G-actin in a pH-dependent manner. It is involved in the translocation of actin-cofilin complex from cytoplasm to nucleus. |
| NA | ENSG00000172732 | MUS81 | MUS81 structure-specific endonuclease subunit | 80198 | NA |
| NA | ENSG00000175602 | CCDC85B | coiled-coil domain containing 85B | 11007 | Hepatitis delta virus (HDV) is a pathogenic human virus whose RNA genome and replication cycle resemble those of plant viroids. Delta-interacting protein A (DIPA), a cellular gene product, has been found to have homology to hepatitis delta virus antigen (HDAg). DIPA interacts with the viral antigen, HDAg, and can affect HDV replication in vitro. |
| NA | ENSG00000175592 | FOSL1 | FOS like antigen 1 | 8061 | The Fos gene family consists of 4 members: FOS, FOSB, FOSL1, and FOSL2. These genes encode leucine zipper proteins that can dimerize with proteins of the JUN family, thereby forming the transcription factor complex AP-1. As such, the FOS proteins have been implicated as regulators of cell proliferation, differentiation, and transformation. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000175573 | C11orf68 | chromosome 11 open reading frame 68 | 83638 | NA |
| NA | ENSG00000175550 | DRAP1 | DR1 associated protein 1 | 10589 | Transcriptional repression is a general mechanism for regulating transcriptional initiation in organisms ranging from yeast to humans. Accurate initiation of transcription from eukaryotic protein-encoding genes requires the assembly of a large multiprotein complex consisting of RNA polymerase II and general transcription factors such as TFIIA, TFIIB, and TFIID. DR1 is a repressor that interacts with the TATA-binding protein (TBP) of TFIID and prevents the formation of an active transcription complex by precluding the entry of TFIIA and/or TFIIB into the preinitiation complex. The protein encoded by this gene is a corepressor of transcription that interacts with DR1 to enhance DR1-mediated repression. The interaction between this corepressor and DR1 is required for corepressor function and appears to stabilize the TBP-DR1-DNA complex. |
| NA | ENSG00000175467 | SART1 | squamous cell carcinoma antigen recognized by T-cells 1 | 9092 | This gene encodes two proteins, the SART1(800) protein expressed in the nucleus of the majority of proliferating cells, and the SART1(259) protein expressed in the cytosol of epithelial cancers. The SART1(259) protein is translated by the mechanism of -1 frameshifting during posttranscriptional regulation; its full-length sequence is not published yet. The two encoded proteins are thought to be involved in the regulation of proliferation. Both proteins have tumor-rejection antigens. The SART1(259) protein possesses tumor epitopes capable of inducing HLA-A2402-restricted cytotoxic T lymphocytes in cancer patients. This SART1(259) antigen may be useful in specific immunotherapy for cancer patients and may serve as a paradigmatic tool for the diagnosis and treatment of patients with atopy. The SART1(259) protein is found to be essential for the recruitment of the tri-snRNP to the pre-spliceosome in the spliceosome assembly pathway. |
| NA | ENSG00000175376 | EIF1AD | eukaryotic translation initiation factor 1A domain containing | 84285 | NA |
| NA | ENSG00000175334 | BANF1 | barrier to autointegration factor 1 | 8815 | The protein encoded by this gene was first identified by its ability to protect retroviruses from intramolecular integration and therefore promote intermolecular integration into the host cell genome. The protein forms a homodimer which localizes to both the nucleus and cytoplasm and is specifically associated with chromosomes during mitosis. This protein binds to double stranded DNA in a non-specific manner and also binds to LEM-domain containing proteins of the nuclear envelope. This protein is thought to facilitate nuclear reassembly by binding with both DNA and inner nuclear membrane proteins and thereby recruit chromatin to the nuclear periphery. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000175229 | GAL3ST3 | galactose-3-O-sulfotransferase 3 | 89792 | This gene encodes a member of the galactose-3-O-sulfotransferase protein family. The product of this gene catalyzes sulfonation by transferring a sulfate group to the 3’ position of galactose in N-acetyllactosamine in both type 2 (Gal-beta-1-4GlcNAc-R) oligosaccharides and core-2-branched O-glycans, but not on type 1 or core-1-branched structures. This gene, which has also been referred to as GAL3ST2, is different from the GAL3ST2 gene located on chromosome 2 that encodes a related enzyme with distinct tissue distribution and substrate specificities, compared to galactose-3-O-sulfotransferase 3. |
| NA | ENSG00000087365 | SF3B2 | splicing factor 3b subunit 2 | 10992 | This gene encodes subunit 2 of the splicing factor 3b protein complex. Splicing factor 3b, together with splicing factor 3a and a 12S RNA unit, forms the U2 small nuclear ribonucleoproteins complex (U2 snRNP). The splicing factor 3b/3a complex binds pre-mRNA upstream of the intron’s branch site in a sequence-independent manner and may anchor the U2 snRNP to the pre-mRNA. Splicing factor 3b is also a component of the minor U12-type spliceosome. Subunit 2 associates with pre-mRNA upstream of the branch site at the anchoring site. Subunit 2 also interacts directly with subunit 4 of the splicing factor 3b complex. Subunit 2 is a highly hydrophilic protein with a proline-rich N-terminus and a glutamate-rich stretch in the C-terminus. |
| NA | ENSG00000175115 | PACS1 | phosphofurin acidic cluster sorting protein 1 | 55690 | This gene encodes a protein with a putative role in the localization of trans-Golgi network (TGN) membrane proteins. Mouse and rat homologs have been identified and studies of the homologous rat protein indicate a role in directing TGN localization of furin by binding to the protease’s phosphorylated cytosolic domain. In addition, the human protein plays a role in HIV-1 Nef-mediated downregulation of cell surface MHC-I molecules to the TGN, thereby enabling HIV-1 to escape immune surveillance. |
| NA | ENSG00000174996 | KLC2 | kinesin light chain 2 | 64837 | Kinesin is a molecular motor that generates ATP-dependent movement of vesicles and organelles along microtubules. Kinesin consists of 2 light chains, such as KLC2, and 2 heavy chains (see KIF5B; MIM 602809) in a 1:1 stoichiometric ratio (Rahman et al., 1998 [PubMed 9624122]). |
| NA | ENSG00000174903 | RAB1B | RAB1B, member RAS oncogene family | 81876 | Members of the RAB protein family, such as RAB1B, are low molecular mass monomeric GTPases localized on the cytoplasmic surfaces of distinct membrane-bound organelles. RAB1B functions in the early secretory pathway and is essential for vesicle transport between the endoplasmic reticulum (ER) and Golgi (Chen et al., 1997 [PubMed 9030196]; Alvarez et al., 2003 [PubMed 12802079]). |
| NA | ENSG00000174871 | CNIH2 | cornichon family AMPA receptor auxiliary protein 2 | 254263 | The protein encoded by this gene is an auxiliary subunit of the ionotropic glutamate receptor of the AMPA subtype. AMPA receptors mediate fast synaptic neurotransmission in the central nervous system. This protein has been reported to interact with the Type I AMPA receptor regulatory protein isoform gamma-8 to control assembly of hippocampal AMPA receptor complexes, thereby modulating receptor gating and pharmacology. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000174851 | YIF1A | Yip1 interacting factor homolog A, membrane trafficking protein | 10897 | NA |
| NA | ENSG00000174807 | CD248 | CD248 molecule | 57124 | NA |
| NA | ENSG00000174744 | BRMS1 | breast cancer metastasis suppressor 1 | 25855 | This gene reduces the metastatic potential, but not the tumorogenicity, of human breast cancer and melanoma cell lines. The protein encoded by this gene localizes primarily to the nucleus and is a component of the mSin3a family of histone deacetylase complexes (HDAC). The protein contains two coiled-coil motifs and several imperfect leucine zipper motifs. Alternative splicing results in two transcript variants encoding different isoforms. |
| NA | ENSG00000174684 | B4GAT1 | beta-1,4-glucuronyltransferase 1 | 11041 | This gene encodes a member of the beta-1,3-N-acetylglucosaminyltransferase family. This enzyme is a type II transmembrane protein. It is essential for the synthesis of poly-N-acetyllactosamine, a determinant for the blood group i antigen. |
| NA | ENSG00000174669 | SLC29A2 | solute carrier family 29 member 2 | 3177 | The uptake of nucleosides by transporters, such as SLC29A2, is essential for nucleotide synthesis by salvage pathways in cells that lack de novo biosynthetic pathways. Nucleoside transport also plays a key role in the regulation of many physiologic processes through its effect on adenosine concentration at the cell surface (Griffiths et al., 1997 [PubMed 9396714]). |
| NA | ENSG00000174547 | MRPL11 | mitochondrial ribosomal protein L11 | 65003 | This nuclear gene encodes a 39S subunit component of the mitochondial ribosome. Alternative splicing results in multiple transcript variants. Pseudogenes for this gene are found on chromosomes 5 and 12. |
| NA | ENSG00000174516 | PELI3 | pellino E3 ubiquitin protein ligase family member 3 | 246330 | The protein encoded by this gene is a scaffold protein and an intermediate signaling protein in the innate immune response pathway. The encoded protein helps transmit the immune response signal from Toll-like receptors to IRAK1/TRAF6 complexes. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000254986 | DPP3 | dipeptidyl peptidase 3 | 10072 | This gene encodes a protein that is a member of the M49 family of metallopeptidases. This cytoplasmic protein binds a single zinc ion with its zinc-binding motif (HELLGH) and has post-proline dipeptidyl aminopeptidase activity, cleaving Xaa-Pro dipeptides from the N-termini of proteins. Increased activity of this protein is associated with endometrial and ovarian cancers. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000174483 | BBS1 | Bardet-Biedl syndrome 1 | 582 | Mutations in this gene have been observed in patients with the major form (type 1) of Bardet-Biedl syndrome. The encoded protein may play a role in eye, limb, cardiac and reproductive system development. |
| NA | ENSG00000174165 | ZDHHC24 | zinc finger DHHC-type containing 24 | 254359 | NA |
| NA | ENSG00000173992 | CCS | copper chaperone for superoxide dismutase | 9973 | Copper chaperone for superoxide dismutase specifically delivers Cu to copper/zinc superoxide dismutase and may activate copper/zinc superoxide dismutase through direct insertion of the Cu cofactor. |
| NA | ENSG00000239306 | RBM14 | RNA binding motif protein 14 | 10432 | This gene encodes a ribonucleoprotein that functions as a general nuclear coactivator, and an RNA splicing modulator. This protein contains two RNA recognition motifs (RRM) at the N-terminus, and multiple hexapeptide repeat domain at the C-terminus that interacts with thyroid hormone receptor-binding protein (TRBP), and is required for transcription activation. Alternatively spliced transcript variants encoding different isoforms (with opposing effects on transcription) have been described for this gene. |
| NA | ENSG00000173933 | RBM4 | RNA binding motif protein 4 | 5936 | NA |
| NA | ENSG00000173914 | RBM4B | RNA binding motif protein 4B | 83759 | NA |
| NA | ENSG00000173898 | SPTBN2 | spectrin beta, non-erythrocytic 2 | 6712 | Spectrins are principle components of a cell’s membrane-cytoskeleton and are composed of two alpha and two beta spectrin subunits. The protein encoded by this gene (SPTBN2), is called spectrin beta non-erythrocytic 2 or beta-III spectrin. It is related to, but distinct from, the beta-II spectrin gene which is also known as spectrin beta non-erythrocytic 1 (SPTBN1). SPTBN2 regulates the glutamate signaling pathway by stabilizing the glutamate transporter EAAT4 at the surface of the plasma membrane. Mutations in this gene cause a form of spinocerebellar ataxia, SCA5, that is characterized by neurodegeneration, progressive locomotor incoordination, dysarthria, and uncoordinated eye movements. |
| NA | ENSG00000173715 | C11orf80 | chromosome 11 open reading frame 80 | 79703 | NA |
| NA | ENSG00000173653 | RCE1 | Ras converting CAAX endopeptidase 1 | 9986 | This gene encodes an integral membrane protein which is classified as a member of the metalloproteinase family. This enzyme is thought to function in the maintenance and processing of CAAX-type prenylated proteins. |
| NA | ENSG00000173599 | PC | pyruvate carboxylase | 5091 | This gene encodes pyruvate carboxylase, which requires biotin and ATP to catalyse the carboxylation of pyruvate to oxaloacetate. The active enzyme is a homotetramer arranged in a tetrahedron which is located exclusively in the mitochondrial matrix. Pyruvate carboxylase is involved in gluconeogenesis, lipogenesis, insulin secretion and synthesis of the neurotransmitter glutamate. Mutations in this gene have been associated with pyruvate carboxylase deficiency. Alternatively spliced transcript variants with different 5’ UTRs, but encoding the same protein, have been found for this gene. |
| NA | ENSG00000173621 | LRFN4 | leucine rich repeat and fibronectin type III domain containing 4 | 78999 | NA |
| NA | ENSG00000173156 | RHOD | ras homolog family member D | 29984 | Ras homolog, or Rho, proteins interact with protein kinases and may serve as targets for activated GTPase. They play a critical role in muscle differentiation. The protein encoded by this gene binds GTP and is a member of the small GTPase superfamily. It is involved in endosome dynamics and reorganization of the actin cytoskeleton, and it may coordinate membrane transport with the function of the cytoskeleton. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000173120 | KDM2A | lysine demethylase 2A | 22992 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbls class and, in addition to an F-box, contains at least six highly degenerated leucine-rich repeats. This family member plays a role in epigenetic silencing. It nucleates at CpG islands and specifically demethylates both mono- and di-methylated lysine-36 of histone H3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000173020 | ADRBK1 | adrenergic, beta, receptor kinase 1 | 156 | The product of this gene phosphorylates the beta-2-adrenergic receptor and appears to mediate agonist-specific desensitization observed at high agonist concentrations. This protein is an ubiquitous cytosolic enzyme that specifically phosphorylates the activated form of the beta-adrenergic and related G-protein-coupled receptors. Abnormal coupling of beta-adrenergic receptor to G protein is involved in the pathogenesis of the failing heart. |
| NA | ENSG00000172932 | ANKRD13D | ankyrin repeat domain 13 family member D | 338692 | NA |
| NA | ENSG00000172830 | SSH3 | slingshot protein phosphatase 3 | 54961 | The ADF (actin-depolymerizing factor)/cofilin family (see MIM 601442) is composed of stimulus-responsive mediators of actin dynamics. ADF/cofilin proteins are inactivated by kinases such as LIM domain kinase-1 (LIMK1; MIM 601329). The SSH family appears to play a role in actin dynamics by reactivating ADF/cofilin proteins in vivo (Niwa et al., 2002 [PubMed 11832213]). |
| NA | ENSG00000175482 | POLD4 | polymerase (DNA) delta 4, accessory subunit | 57804 | This gene encodes the smallest subunit of DNA polymerase delta. DNA polymerase delta possesses both polymerase and 3’ to 5’ exonuclease activity and plays a critical role in DNA replication and repair. The encoded protein enhances the activity of DNA polymerase delta and plays a role in fork repair and stabilization through interactions with the DNA helicase Bloom syndrome protein. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000172613 | RAD9A | RAD9 checkpoint clamp component A | 5883 | This gene product is highly similar to Schizosaccharomyces pombe rad9, a cell cycle checkpoint protein required for cell cycle arrest and DNA damage repair. This protein possesses 3’ to 5’ exonuclease activity, which may contribute to its role in sensing and repairing DNA damage. It forms a checkpoint protein complex with RAD1 and HUS1. This complex is recruited by checkpoint protein RAD17 to the sites of DNA damage, which is thought to be important for triggering the checkpoint-signaling cascade. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000172531 | PPP1CA | protein phosphatase 1 catalytic subunit alpha | 5499 | The protein encoded by this gene is one of the three catalytic subunits of protein phosphatase 1 (PP1). PP1 is a serine/threonine specific protein phosphatase known to be involved in the regulation of a variety of cellular processes, such as cell division, glycogen metabolism, muscle contractility, protein synthesis, and HIV-1 viral transcription. Increased PP1 activity has been observed in the end stage of heart failure. Studies in both human and mice suggest that PP1 is an important regulator of cardiac function. Mouse studies also suggest that PP1 functions as a suppressor of learning and memory. Three alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000175634 | RPS6KB2 | ribosomal protein S6 kinase B2 | 6199 | This gene encodes a member of the RSK (ribosomal S6 kinase) family of serine/threonine kinases. This kinase contains a kinase catalytic domain and phosphorylates the S6 ribosomal protein and eukaryotic translation initiation factor 4B (eIF4B). Phosphorylation of S6 leads to an increase in protein synthesis and cell proliferation. |
| NA | ENSG00000172725 | CORO1B | coronin 1B | 57175 | Members of the coronin family, such as CORO1B, are WD repeat-containing actin-binding proteins that regulate cell motility (Cai et al., 2005 [PubMed 16027158]). |
| NA | ENSG00000172663 | TMEM134 | transmembrane protein 134 | 80194 | NA |
| NA | ENSG00000110711 | AIP | aryl hydrocarbon receptor interacting protein | 9049 | The protein encoded by this gene is a receptor for aryl hydrocarbons and a ligand-activated transcription factor. The encoded protein is found in the cytoplasm as part of a multiprotein complex, but upon binding of ligand is transported to the nucleus. This protein can regulate the expression of many xenobiotic metabolizing enzymes. Also, the encoded protein can bind specifically to and inhibit the activity of hepatitis B virus. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000110697 | PITPNM1 | phosphatidylinositol transfer protein membrane associated 1 | 9600 | PITPNM1 belongs to a family of membrane-associated phosphatidylinositol transfer domain-containing proteins that share homology with the Drosophila retinal degeneration B (rdgB) protein (Ocaka et al., 2005 [PubMed 15627748]). |
| NA | ENSG00000167797 | CDK2AP2 | cyclin-dependent kinase 2 associated protein 2 | 10263 | This gene encodes a protein that interacts with cyclin-dependent kinase 2 associated protein 1. Pseudogenes associated with this gene are located on chromosomes 7 and 9. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000084207 | GSTP1 | glutathione S-transferase pi 1 | 2950 | Glutathione S-transferases (GSTs) are a family of enzymes that play an important role in detoxification by catalyzing the conjugation of many hydrophobic and electrophilic compounds with reduced glutathione. Based on their biochemical, immunologic, and structural properties, the soluble GSTs are categorized into 4 main classes: alpha, mu, pi, and theta. This GST family member is a polymorphic gene encoding active, functionally different GSTP1 variant proteins that are thought to function in xenobiotic metabolism and play a role in susceptibility to cancer, and other diseases. |
| NA | ENSG00000167792 | NDUFV1 | NADH:ubiquinone oxidoreductase core subunit V1 | 4723 | The mitochondrial respiratory chain provides energy to cells via oxidative phosphorylation and consists of four membrane-bound electron-transporting protein complexes (I-IV) and an ATP synthase (complex V). This gene encodes a 51 kDa subunit of the NADH:ubiquinone oxidoreductase complex I; a large complex with at least 45 nuclear and mitochondrial encoded subunits that liberates electrons from NADH and channels them to ubiquinone. This subunit carries the NADH-binding site as well as flavin mononucleotide (FMN)- and Fe-S-biding sites. Defects in complex I are a common cause of mitochondrial dysfunction; a syndrome that occurs in approximately 1 in 10,000 live births. Mitochondrial complex I deficiency is linked to myopathies, encephalomyopathies, and neurodegenerative disorders such as Parkinson’s disease and Leigh syndrome. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000167799 | NUDT8 | nudix hydrolase 8 | 254552 | NA |
| NA | ENSG00000110057 | UNC93B1 | unc-93 homolog B1 (C. elegans) | 81622 | This gene encodes a protein that is involved in innate and adaptive immune response by regulating toll-like receptor signaling. The encoded protein traffics nucleotide sensing toll-like receptors to the endolysosome from the endoplasmic reticulum. Deficiency of the encoded protein has been associated with herpes simplex encephalitis. |
| NA | ENSG00000110719 | TCIRG1 | T-cell immune regulator 1, ATPase H+ transporting V0 subunit a3 | 10312 | Through alternate splicing, this gene encodes two proteins with similarity to subunits of the vacuolar ATPase (V-ATPase) but the encoded proteins seem to have different functions. V-ATPase is a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, and receptor-mediated endocytosis. V-ATPase is comprised of a cytosolic V1 domain and a transmembrane V0 domain. Mutations in this gene are associated with infantile malignant osteopetrosis. |
| NA | ENSG00000110721 | CHKA | choline kinase alpha | 1119 | The major pathway for the biosynthesis of phosphatidylcholine occurs via the CDP-choline pathway. The protein encoded by this gene is the initial enzyme in the sequence and may play a regulatory role. The encoded protein also catalyzes the phosphorylation of ethanolamine. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000171067 | C11orf24 | chromosome 11 open reading frame 24 | 53838 | NA |
| NA | ENSG00000162337 | LRP5 | LDL receptor related protein 5 | 4041 | This gene encodes a transmembrane low-density lipoprotein receptor that binds and internalizes ligands in the process of receptor-mediated endocytosis. This protein also acts as a co-receptor with Frizzled protein family members for transducing signals by Wnt proteins and was originally cloned on the basis of its association with type 1 diabetes mellitus in humans. This protein plays a key role in skeletal homeostasis and many bone density related diseases are caused by mutations in this gene. Mutations in this gene also cause familial exudative vitreoretinopathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000110075 | PPP6R3 | protein phosphatase 6 regulatory subunit 3 | 55291 | Protein phosphatase regulatory subunits, such as SAPS3, modulate the activity of protein phosphatase catalytic subunits by restricting substrate specificity, recruiting substrates, and determining the intracellular localization of the holoenzyme. SAPS3 is a regulatory subunit for the protein phosphatase-6 catalytic subunit (PPP6C; MIM 612725) (Stefansson and Brautigan, 2006 [PubMed 16769727]). |
| NA | ENSG00000069482 | GAL | galanin/GMAP prepropeptide | 51083 | This gene encodes a neuroendocrine peptide that is widely expressed in the central and peripheral nervous systems and also the gastrointestinal tract, pancreas, adrenal gland and urogenital tract. The encoded protein is a precursor that is proteolytically processed to generate two mature peptides: galanin and galanin message-associated peptide (GMAP). Galanin has diverse physiological functions including nociception, feeding and energy homeostasis, osmotic regulation and water balance. GMAP has been demonstrated to possess antifungal activity and hypothesized to be part of the innate immune system. |
| NA | ENSG00000132749 | MTL5 | metallothionein-like 5, testis-specific (tesmin) | 9633 | Metallothionein proteins are highly conserved low-molecular-weight cysteine-rich proteins that are induced by and bind to heavy metal ions and have no enzymatic activity. They may play a central role in the regulation of cell growth and differentiation and are involved in spermatogenesis. This gene encodes a metallothionein-like protein which has been shown to be expressed differentially in mouse testis and ovary. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000110090 | CPT1A | carnitine palmitoyltransferase 1A | 1374 | The mitochondrial oxidation of long-chain fatty acids is initiated by the sequential action of carnitine palmitoyltransferase I (which is located in the outer membrane and is detergent-labile) and carnitine palmitoyltransferase II (which is located in the inner membrane and is detergent-stable), together with a carnitine-acylcarnitine translocase. CPT I is the key enzyme in the carnitine-dependent transport across the mitochondrial inner membrane and its deficiency results in a decreased rate of fatty acid beta-oxidation. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197345 | MRPL21 | mitochondrial ribosomal protein L21 | 219927 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. Multiple transcript variants encoding different isoforms were identified through sequence analysis although some may be subject to nonsense-mediated decay (NMD). |
| NA | ENSG00000132740 | IGHMBP2 | immunoglobulin mu binding protein 2 | 3508 | This gene encodes a helicase superfamily member that binds a specific DNA sequence from the immunoglobulin mu chain switch region. Mutations in this gene lead to spinal muscle atrophy with respiratory distress type 1. |
| NA | ENSG00000172935 | MRGPRF | MAS related GPR family member F | 116535 | NA |
| NA | ENSG00000162341 | TPCN2 | two pore segment channel 2 | 219931 | This gene encodes a putative cation-selective ion channel with two repeats of a six-transmembrane-domain. The protein localizes to lysosomal membranes and enables nicotinic acid adenine dinucleotide phosphate (NAADP) -induced calcium ion release from lysosome-related stores. This ubiquitously expressed gene has elevated expression in liver and kidney. Two common nonsynonymous SNPs in this gene strongly associate with blond versus brown hair pigmentation. |
| NA | ENSG00000110092 | CCND1 | cyclin D1 | 595 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance throughout the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. This cyclin forms a complex with and functions as a regulatory subunit of CDK4 or CDK6, whose activity is required for cell cycle G1/S transition. This protein has been shown to interact with tumor suppressor protein Rb and the expression of this gene is regulated positively by Rb. Mutations, amplification and overexpression of this gene, which alters cell cycle progression, are observed frequently in a variety of tumors and may contribute to tumorigenesis. |
| NA | ENSG00000149716 | ORAOV1 | oral cancer overexpressed 1 | 220064 | NA |
| NA | ENSG00000162344 | FGF19 | fibroblast growth factor 19 | 9965 | The protein encoded by this gene is a member of the fibroblast growth factor (FGF) family. FGF family members possess broad mitogenic and cell survival activities, and are involved in a variety of biological processes including embryonic development cell growth, morphogenesis, tissue repair, tumor growth and invasion. This growth factor is a high affinity, heparin dependent ligand for FGFR4. Expression of this gene was detected only in fetal but not adult brain tissue. Synergistic interaction of the chick homolog and Wnt-8c has been shown to be required for initiation of inner ear development. |
| NA | ENSG00000131620 | ANO1 | anoctamin 1 | 55107 | NA |
| NA | ENSG00000168040 | FADD | Fas associated via death domain | 8772 | The protein encoded by this gene is an adaptor molecule that interacts with various cell surface receptors and mediates cell apoptotic signals. Through its C-terminal death domain, this protein can be recruited by TNFRSF6/Fas-receptor, tumor necrosis factor receptor, TNFRSF25, and TNFSF10/TRAIL-receptor, and thus it participates in the death signaling initiated by these receptors. Interaction of this protein with the receptors unmasks the N-terminal effector domain of this protein, which allows it to recruit caspase-8, and thereby activate the cysteine protease cascade. Knockout studies in mice also suggest the importance of this protein in early T cell development. |
| NA | ENSG00000131626 | PPFIA1 | PTPRF interacting protein alpha 1 | 8500 | The protein encoded by this gene is a member of the LAR protein-tyrosine phosphatase-interacting protein (liprin) family. Liprins interact with members of LAR family of transmembrane protein tyrosine phosphatases, which are known to be important for axon guidance and mammary gland development. This protein binds to the intracellular membrane-distal phosphatase domain of tyrosine phosphatase LAR, and appears to localize LAR to cell focal adhesions. This interaction may regulate the disassembly of focal adhesion and thus help orchestrate cell-matrix interactions. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000085733 | CTTN | cortactin | 2017 | This gene is overexpressed in breast cancer and squamous cell carcinomas of the head and neck. The encoded protein is localized in the cytoplasm and in areas of the cell-substratum contacts. This gene has two roles: (1) regulating the interactions between components of adherens-type junctions and (2) organizing the cytoskeleton and cell adhesion structures of epithelia and carcinoma cells. During apoptosis, the encoded protein is degraded in a caspase-dependent manner. The aberrant regulation of this gene contributes to tumor cell invasion and metastasis. Three splice variants that encode different isoforms have been identified for this gene. |
| NA | ENSG00000162105 | SHANK2 | SH3 and multiple ankyrin repeat domains 2 | 22941 | This gene encodes a protein that is a member of the Shank family of synaptic proteins that may function as molecular scaffolds in the postsynaptic density of excitatory synapses. Shank proteins contain multiple domains for protein-protein interaction, including ankyrin repeats, and an SH3 domain. This particular family member contains a PDZ domain, a consensus sequence for cortactin SH3 domain-binding peptides and a sterile alpha motif. The alternative splicing demonstrated in Shank genes has been suggested as a mechanism for regulating the molecular structure of Shank and the spectrum of Shank-interacting proteins in the postsynaptic densities of the adult and developing brain. Alterations in the encoded protein may be associated with susceptibility to autism spectrum disorder. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000172893 | DHCR7 | 7-dehydrocholesterol reductase | 1717 | This gene encodes an enzyme that removes the C(7-8) double bond in the B ring of sterols and catalyzes the conversion of 7-dehydrocholesterol to cholesterol. This gene is ubiquitously expressed and its transmembrane protein localizes to the endoplasmic reticulum membrane and nuclear outer membrane. Mutations in this gene cause Smith-Lemli-Opitz syndrome (SLOS); a syndrome that is metabolically characterized by reduced serum cholesterol levels and elevated serum 7-dehydrocholesterol levels and phenotypically characterized by mental retardation, facial dysmorphism, syndactyly of second and third toes, and holoprosencephaly in severe cases to minimal physical abnormalities and near-normal intelligence in mild cases. Alternative splicing results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000172890 | NADSYN1 | NAD synthetase 1 | 55191 | Nicotinamide adenine dinucleotide (NAD) is a coenzyme in metabolic redox reactions, a precursor for several cell signaling molecules, and a substrate for protein posttranslational modifications. NAD synthetase (EC 6.3.5.1) catalyzes the final step in the biosynthesis of NAD from nicotinic acid adenine dinucleotide (NaAD). |
| NA | ENSG00000158483 | FAM86C1 | family with sequence similarity 86 member C1 | 55199 | NA |
| NA | ENSG00000254469 | RP11-849H4.2 | Putative short transient receptor potential channel 2-like protein | ENSG00000254469 | NA |
| NA | ENSG00000137522 | RNF121 | ring finger protein 121 | 55298 | The protein encoded by this gene contains a RING finger, a motif present in a variety of functionally distinct proteins and known to be involved in protein-protein and protein-DNA interactions. Several alternatively spliced transcript variants have been noted for this gene, however, not all are likely to encode viable protein products. |
| NA | ENSG00000137497 | NUMA1 | nuclear mitotic apparatus protein 1 | 4926 | This gene encodes a large protein that forms a structural component of the nuclear matrix. The encoded protein interacts with microtubules and plays a role in the formation and organization of the mitotic spindle during cell division. Chromosomal translocation of this gene with the RARA (retinoic acid receptor, alpha) gene on chromosome 17 have been detected in patients with acute promyelocytic leukemia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000184154 | LRTOMT | leucine rich transmembrane and O-methyltransferase domain containing | 220074 | This gene includes two transcript forms. The short form has one open reading frame (ORF), which encodes the leucine-rich repeats (LRR)-containing protein of unknown function. This protein is called LRTOMT1 or LRRC51. The long form has two alternative ORFs; the upstream ORF has the same translation start codon as used in the short form and the resulting transcript is a candidate for nonsense-mediated decay, and the downstream ORF encodes a different protein, which is a transmembrane catechol-O-methyltransferase and is called LRTOMT2, TOMT or COMT2. The COMT2 is essential for auditory and vestibular function. Defects in the COMT2 can cause nonsyndromic deafness. Alternatively spliced transcript variants from each transcript form have been found for this gene. |
| NA | ENSG00000149357 | LAMTOR1 | late endosomal/lysosomal adaptor, MAPK and MTOR activator 1 | 55004 | NA |
| NA | ENSG00000110200 | ANAPC15 | anaphase promoting complex subunit 15 | 25906 | NA |
| NA | ENSG00000165458 | INPPL1 | inositol polyphosphate phosphatase like 1 | 3636 | The protein encoded by this gene is an SH2-containing 5’-inositol phosphatase that is involved in the regulation of insulin function. The encoded protein also plays a role in the regulation of epidermal growth factor receptor turnover and actin remodelling. Additionally, this gene supports metastatic growth in breast cancer and is a valuable biomarker for breast cancer. |
| NA | ENSG00000162129 | CLPB | ClpB homolog, mitochondrial AAA ATPase chaperonin | 81570 | This gene belongs to the ATP-ases associated with diverse cellular activities (AAA+) superfamily. Members of this superfamily form ring-shaped homo-hexamers and have highly conserved ATPase domains that are involved in various processes including DNA replication, protein degradation and reactivation of misfolded proteins. All members of this family hydrolyze ATP through their AAA+ domains and use the energy generated through ATP hydrolysis to exert mechanical force on their substrates. In addition to an AAA+ domain, the protein encoded by this gene contains a C-terminal D2 domain, which is characteristic of the AAA+ subfamily of Caseinolytic peptidases to which this protein belongs. It cooperates with Hsp70 in the disaggregation of protein aggregates. Allelic variants of this gene are associated with 3-methylglutaconic aciduria, which causes cataracts and neutropenia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000186642 | PDE2A | phosphodiesterase 2A | 5138 | NA |
| NA | ENSG00000186635 | ARAP1 | ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 1 | 116985 | The protein encoded by this gene contains SAM, ARF-GAP, RHO-GAP, ankyrin repeat, RAS-associating, and pleckstrin homology (PH) domains. In vitro, this protein displays RHO-GAP and phosphatidylinositol (3,4,5) trisphosphate (PIP3)-dependent ARF-GAP activity. The encoded protein associates with the Golgi, and the ARF-GAP activity mediates changes in the Golgi and the formation of filopodia. It is thought to regulate the cell-specific trafficking of a receptor protein involved in apoptosis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000168010 | ATG16L2 | autophagy related 16 like 2 | 89849 | NA |
| NA | ENSG00000137478 | FCHSD2 | FCH and double SH3 domains 2 | 9873 | NA |
| NA | ENSG00000110237 | ARHGEF17 | Rho guanine nucleotide exchange factor 17 | 9828 | NA |
| NA | ENSG00000054967 | RELT | RELT tumor necrosis factor receptor | 84957 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This receptor is especially abundant in hematologic tissues. It has been shown to activate the NF-kappaB pathway and selectively bind TNF receptor-associated factor 1 (TRAF1). This receptor is capable of stimulating T-cell proliferation in the presence of CD3 signaling, which suggests its regulatory role in immune response. Two alternatively spliced transcript variants of this gene encoding the same protein have been reported. |
| NA | ENSG00000054965 | FAM168A | family with sequence similarity 168 member A | 23201 | NA |
| NA | ENSG00000021300 | PLEKHB1 | pleckstrin homology domain containing B1 | 58473 | NA |
| NA | ENSG00000175582 | RAB6A | RAB6A, member RAS oncogene family | 5870 | This gene encodes a member of the RAB family, which belongs to the small GTPase superfamily. GTPases of the RAB family bind to various effectors to regulate the targeting and fusion of transport carriers to acceptor compartments. This protein is located at the Golgi apparatus, which regulates trafficking in both a retrograde (from early endosomes and Golgi to the endoplasmic reticulum) and an anterograde (from the Golgi to the plasma membrane) directions. Myosin II is an effector of this protein in these processes. This protein is also involved in assembly of human cytomegalovirus (HCMV) by interacting with the cellular protein Bicaudal D1, which interacts with the HCMV virion tegument protein, pp150. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000181924 | COA4 | cytochrome c oxidase assembly factor 4 homolog | 51287 | NA |
| NA | ENSG00000175575 | PAAF1 | proteasomal ATPase associated factor 1 | 80227 | This gene encodes a WD repeat-containing protein involved in regulation of association of proteasome components. During HIV infection, the encoded protein is thought to promote provirus transcription through recruitment of the 19S regulatory complex. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000175567 | UCP2 | uncoupling protein 2 (mitochondrial, proton carrier) | 7351 | Mitochondrial uncoupling proteins (UCP) are members of the larger family of mitochondrial anion carrier proteins (MACP). UCPs separate oxidative phosphorylation from ATP synthesis with energy dissipated as heat, also referred to as the mitochondrial proton leak. UCPs facilitate the transfer of anions from the inner to the outer mitochondrial membrane and the return transfer of protons from the outer to the inner mitochondrial membrane. They also reduce the mitochondrial membrane potential in mammalian cells. Tissue specificity occurs for the different UCPs and the exact methods of how UCPs transfer H+/OH- are not known. UCPs contain the three homologous protein domains of MACPs. This gene is expressed in many tissues, with the greatest expression in skeletal muscle. It is thought to play a role in nonshivering thermogenesis, obesity and diabetes. Chromosomal order is 5’-UCP3-UCP2-3’. |
| NA | ENSG00000168014 | C2CD3 | C2 calcium-dependent domain containing 3 | 26005 | This gene encodes a protein that functions as a regulator of centriole elongation. Studies of the orthologous mouse protein show that it promotes centriolar distal appendage assembly and is also required for the recruitment of other ciliogenic proteins, including intraflagellar transport proteins. Mutations in this gene cause orofaciodigital syndrome XIV (OFD14), a ciliopathy resulting in malformations of the oral cavity, face and digits. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000214517 | PPME1 | protein phosphatase methylesterase 1 | 51400 | This gene encodes a protein phosphatase methylesterase localized to the nucleus. The encoded protein acts on the protein phosphatase-2A catalytic subunit and supports the ERK pathway through dephosphorylation of regulatory proteins. It plays a role in malignant glioma progression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165434 | PGM2L1 | phosphoglucomutase 2-like 1 | 283209 | NA |
| NA | ENSG00000175536 | LIPT2 | lipoyl(octanoyl) transferase 2 (putative) | 387787 | NA |
| NA | ENSG00000077514 | POLD3 | polymerase (DNA) delta 3, accessory subunit | 10714 | This gene encodes the 66-kDa subunit of DNA polymerase delta. DNA polymerase delta possesses both polymerase and 3’ to 5’ exonuclease activity and plays a critical role in DNA replication and repair. The encoded protein plays a role in regulating the activity of DNA polymerase delta through interactions with other subunits and the processivity cofactor proliferating cell nuclear antigen (PCNA). Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000166439 | RNF169 | ring finger protein 169 | 254225 | NA |
| NA | ENSG00000166435 | XRRA1 | X-ray radiation resistance associated 1 | 143570 | NA |
| NA | ENSG00000118363 | SPCS2 | signal peptidase complex subunit 2 | 9789 | NA |
| NA | ENSG00000137486 | ARRB1 | arrestin, beta 1 | 408 | Members of arrestin/beta-arrestin protein family are thought to participate in agonist-mediated desensitization of G-protein-coupled receptors and cause specific dampening of cellular responses to stimuli such as hormones, neurotransmitters, or sensory signals. Arrestin beta 1 is a cytosolic protein and acts as a cofactor in the beta-adrenergic receptor kinase (BARK) mediated desensitization of beta-adrenergic receptors. Besides the central nervous system, it is expressed at high levels in peripheral blood leukocytes, and thus the BARK/beta-arrestin system is believed to play a major role in regulating receptor-mediated immune functions. Alternatively spliced transcripts encoding different isoforms of arrestin beta 1 have been described. |
| NA | ENSG00000149273 | RPS3 | ribosomal protein S3 | 6188 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit, where it forms part of the domain where translation is initiated. The protein belongs to the S3P family of ribosomal proteins. Studies of the mouse and rat proteins have demonstrated that the protein has an extraribosomal role as an endonuclease involved in the repair of UV-induced DNA damage. The protein appears to be located in both the cytoplasm and nucleus but not in the nucleolus. Higher levels of expression of this gene in colon adenocarcinomas and adenomatous polyps compared to adjacent normal colonic mucosa have been observed. This gene is co-transcribed with the small nucleolar RNA genes U15A and U15B, which are located in its first and fifth introns, respectively. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000158555 | GDPD5 | glycerophosphodiester phosphodiesterase domain containing 5 | 81544 | Glycerophosphodiester phosphodiesterases (GDPDs; EC 3.1.4.46), such as GDPD5, are involved in glycerol metabolism (Lang et al., 2008 [PubMed 17578682]). |
| NA | ENSG00000149257 | SERPINH1 | serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1) | 871 | This gene encodes a member of the serpin superfamily of serine proteinase inhibitors. The encoded protein is localized to the endoplasmic reticulum and plays a role in collagen biosynthesis as a collagen-specific molecular chaperone. Autoantibodies to the encoded protein have been found in patients with rheumatoid arthritis. Expression of this gene may be a marker for cancer, and nucleotide polymorphisms in this gene may be associated with preterm birth caused by preterm premature rupture of membranes. Alternatively spliced transcript variants have been observed for this gene, and a pseudogene of this gene is located on the short arm of chromosome 9. |
| NA | ENSG00000171533 | MAP6 | microtubule associated protein 6 | 4135 | This gene encodes a microtubule-associated protein. The encoded protein is a calmodulin-binding and calmodulin-regulated protein that is involved in microtubule stabilization. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000198382 | UVRAG | UV radiation resistance associated | 7405 | This gene complements the ultraviolet sensitivity of xeroderma pigmentosum group C cells and encodes a protein with a C2 domain. The protein activates the Beclin1-PI(3)KC3 complex, promoting autophagy and suppressing the proliferation and tumorigenicity of human colon cancer cells. Chromosomal aberrations involving this gene are associated with left-right axis malformation and mutations in this gene have been associated with colon cancer. |
| NA | ENSG00000137492 | THAP12 | THAP domain containing 12 | 5612 | NA |
| NA | ENSG00000179240 | LOC100506127 | putative uncharacterized protein FLJ37770-like | 100506127 | NA |
| NA | ENSG00000158636 | EMSY | EMSY, BRCA2 interacting transcriptional repressor | 56946 | NA |
| NA | ENSG00000137507 | LRRC32 | leucine rich repeat containing 32 | 2615 | This gene encodes a type I membrane protein which contains 20 leucine-rich repeats. Alterations in the chromosomal region 11q13-11q14 are involved in several pathologies. |
| NA | ENSG00000182704 | TSKU | tsukushi, small leucine rich proteoglycan | 25987 | NA |
| NA | ENSG00000078124 | ACER3 | alkaline ceramidase 3 | 55331 | NA |
| NA | ENSG00000149260 | CAPN5 | calpain 5 | 726 | Calpains are calcium-dependent cysteine proteases involved in signal transduction in a variety of cellular processes. A functional calpain protein consists of an invariant small subunit and 1 of a family of large subunits. CAPN5 is one of the large subunits. Unlike some of the calpains, CAPN5 and CAPN6 lack a calmodulin-like domain IV. Because of the significant similarity to Caenorhabditis elegans sex determination gene tra-3, CAPN5 is also called as HTRA3. |
| NA | ENSG00000137474 | MYO7A | myosin VIIA | 4647 | This gene is a member of the myosin gene family. Myosins are mechanochemical proteins characterized by the presence of a motor domain, an actin-binding domain, a neck domain that interacts with other proteins, and a tail domain that serves as an anchor. This gene encodes an unconventional myosin with a very short tail. Defects in this gene are associated with the mouse shaker-1 phenotype and the human Usher syndrome 1B which are characterized by deafness, reduced vestibular function, and (in human) retinal degeneration. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000149269 | PAK1 | p21 protein (Cdc42/Rac)-activated kinase 1 | 5058 | This gene encodes a family member of serine/threonine p21-activating kinases, known as PAK proteins. These proteins are critical effectors that link RhoGTPases to cytoskeleton reorganization and nuclear signaling, and they serve as targets for the small GTP binding proteins Cdc42 and Rac. This specific family member regulates cell motility and morphology. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000074201 | CLNS1A | chloride nucleotide-sensitive channel 1A | 1207 | This gene encodes a protein that functions in multiple regulatory pathways. The encoded protein complexes with numerous cytosolic proteins and performs diverse functions including regulation of small nuclear ribonucleoprotein biosynthesis, platelet activation and cytoskeletal organization. The protein is also found associated with the plasma membrane where it functions as a chloride current regulator. Pseudogenes of this gene are found on chromosomes 1, 4 and 6. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000178301 | AQP11 | aquaporin 11 | 282679 | NA |
| NA | ENSG00000048649 | RSF1 | remodeling and spacing factor 1 | 51773 | This gene encodes a nuclear protein that interacts with hepatitis B virus X protein (HBX) and facilitates transcription of hepatitis B virus genes by the HBX transcription activator, suggesting a role for this interaction in the virus life cycle. This protein also interacts with SNF2H protein to form the RSF chromatin-remodeling complex, where the SNF2H subunit functions as the nucleosome-dependent ATPase, and this protein as the histone chaperone. |
| NA | ENSG00000087884 | AAMDC | adipogenesis associated, Mth938 domain containing | 28971 | NA |
| NA | ENSG00000149262 | INTS4 | integrator complex subunit 4 | 92105 | INTS4 is a subunit of the Integrator complex, which associates with the C-terminal domain of RNA polymerase II large subunit (POLR2A; MIM 180660) and mediates 3-prime end processing of small nuclear RNAs U1 (RNU1; MIM 180680) and U2 (RNU2; MIM 180690) (Baillat et al., 2005 [PubMed 16239144]). |
| NA | ENSG00000151364 | KCTD14 | potassium channel tetramerization domain containing 14 | 65987 | NA |
| NA | ENSG00000151366 | NDUFC2 | NADH:ubiquinone oxidoreductase subunit C2 | 4718 | NA |
| NA | ENSG00000033327 | GAB2 | GRB2 associated binding protein 2 | 9846 | This gene is a member of the GRB2-associated binding protein (GAB) gene family. These proteins contain pleckstrin homology (PH) domain, and bind SHP2 tyrosine phosphatase and GRB2 adapter protein. They act as adapters for transmitting various signals in response to stimuli through cytokine and growth factor receptors, and T- and B-cell antigen receptors. The protein encoded by this gene is the principal activator of phosphatidylinositol-3 kinase in response to activation of the high affinity IgE receptor. Two alternatively spliced transcripts encoding different isoforms have been described for this gene. |
| NA | ENSG00000137513 | NARS2 | asparaginyl-tRNA synthetase 2, mitochondrial (putative) | 79731 | This gene encodes a putative member of the class II family of aminoacyl-tRNA synthetases. These enzymes play a critical role in protein biosynthesis by charging tRNAs with their cognate amino acids. This protein is encoded by the nuclear genome but is likely to be imported to the mitochondrion where it is thought to catalyze the ligation of asparagine to tRNA molecules. Mutations in this gene have been associated with combined oxidative phosphorylation deficiency 24 (COXPD24). |
| NA | ENSG00000149256 | TENM4 | teneurin transmembrane protein 4 | 26011 | NA |
| NA | ENSG00000137509 | PRCP | prolylcarboxypeptidase | 5547 | This gene encodes a member of the peptidase S28 family of serine exopeptidases. The encoded preproprotein is proteolytically processed to generate the mature lysosomal prolylcarboxypeptidase. This enzyme cleaves C-terminal amino acids linked to proline in peptides such as angiotension II, III and des-Arg9-bradykinin. The cleavage occurs at acidic pH, but the enzyme activity is retained with some substrates at neutral pH. This enzyme has been shown to be an activator of the cell matrix-associated prekallikrein. The importance of angiotension II, one of the substrates of this enzyme, in regulating blood pressure and electrolyte balance suggests that this gene may be related to essential hypertension. A pseudogene of this gene has been identified on chromosome 2. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000165490 | DDIAS | DNA damage induced apoptosis suppressor | 220042 | NA |
| NA | ENSG00000137502 | RAB30 | RAB30, member RAS oncogene family | 27314 | NA |
| NA | ENSG00000165494 | PCF11 | PCF11 cleavage and polyadenylation factor subunit | 51585 | NA |
| NA | ENSG00000137494 | ANKRD42 | ankyrin repeat domain 42 | 338699 | NA |
| NA | ENSG00000150672 | DLG2 | discs large homolog 2 | 1740 | This gene encodes a member of the membrane-associated guanylate kinase (MAGUK) family. The encoded protein forms a heterodimer with a related family member that may interact at postsynaptic sites to form a multimeric scaffold for the clustering of receptors, ion channels, and associated signaling proteins. Multiple transcript variants encoding different isoforms have been found for this gene. Additional transcript variants have been described, but their full-length nature is not known. |
| NA | ENSG00000137501 | SYTL2 | synaptotagmin like 2 | 54843 | The protein encoded by this gene is a synaptotagmin-like protein (SLP) that belongs to a C2 domain-containing protein family. The SLP homology domain (SHD) of this protein has been shown to specifically bind the GTP-bound form of Ras-related protein Rab-27A (RAB27A). This protein plays a role in RAB27A-dependent vesicle trafficking and controls melanosome distribution in the cell periphery. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000073921 | PICALM | phosphatidylinositol binding clathrin assembly protein | 8301 | This gene encodes a clathrin assembly protein, which recruits clathrin and adaptor protein complex 2 (AP2) to cell membranes at sites of coated-pit formation and clathrin-vesicle assembly. The protein may be required to determine the amount of membrane to be recycled, possibly by regulating the size of the clathrin cage. The protein is involved in AP2-dependent clathrin-mediated endocytosis at the neuromuscular junction. A chromosomal translocation t(10;11)(p13;q14) leading to the fusion of this gene and the MLLT10 gene is found in acute lymphoblastic leukemia, acute myeloid leukemia and malignant lymphomas. The polymorphisms of this gene are associated with the risk of Alzheimer disease. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000150687 | PRSS23 | protease, serine 23 | 11098 | This gene encodes a conserved member of the trypsin family of serine proteases. Mouse studies found a decrease of mRNA levels of this gene after ovulation was induced. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000174804 | FZD4 | frizzled class receptor 4 | 8322 | This gene is a member of the frizzled gene family. Members of this family encode seven-transmembrane domain proteins that are receptors for the Wingless type MMTV integration site family of signaling proteins. Most frizzled receptors are coupled to the beta-catenin canonical signaling pathway. This protein may play a role as a positive regulator of the Wingless type MMTV integration site signaling pathway. A transcript variant retaining intronic sequence and encoding a shorter isoform has been described, however, its expression is not supported by other experimental evidence. |
| NA | ENSG00000166575 | TMEM135 | transmembrane protein 135 | 65084 | NA |
| NA | ENSG00000123892 | RAB38 | RAB38, member RAS oncogene family | 23682 | NA |
| NA | ENSG00000109861 | CTSC | cathepsin C | 1075 | This gene encodes a member of the peptidase C1 family and lysosomal cysteine proteinase that appears to be a central coordinator for activation of many serine proteinases in cells of the immune system. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate heavy and light chains that form a disulfide-linked dimer. A portion of the propeptide acts as an intramolecular chaperone for the folding and stabilization of the mature enzyme. This enzyme requires chloride ions for activity and can degrade glucagon. Defects in the encoded protein have been shown to be a cause of Papillon-Lefevre syndrome, an autosomal recessive disorder characterized by palmoplantar keratosis and periodontitis. |
| NA | ENSG00000086991 | NOX4 | NADPH oxidase 4 | 50507 | This gene encodes a member of the NOX-family of enzymes that functions as the catalytic subunit the NADPH oxidase complex. The encoded protein is localized to non-phagocytic cells where it acts as an oxygen sensor and catalyzes the reduction of molecular oxygen to various reactive oxygen species (ROS). The ROS generated by this protein have been implicated in numerous biological functions including signal transduction, cell differentiation and tumor cell growth. A pseudogene has been identified on the other arm of chromosome 11. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000077616 | NAALAD2 | N-acetylated alpha-linked acidic dipeptidase 2 | 10003 | This gene is a member of the N-acetylated alpha-linked acidic dipeptidase (NAALADase) gene family. The representative member of this family is the gene encoding human prostate-specific membrane antigen (PSM), which is a marker of prostatic carcinomas and is the first to be shown to possess NAALADase activity. NAALADase cleaves N-acetyl-L-aspartate-L-glutamate (NAAG), which is a neuropeptide expressed both in the central nervous systems and in the periphery and is thought to function as a neurotransmitter. The product of this gene is a type II integral membrane protein. Transient transfection of this gene confers both NAALADase and dipetidyl peptidase IV activities to mammalian cells. This gene is highly expressed in ovary and testis as well as within discrete brain areas. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165323 | FAT3 | FAT atypical cadherin 3 | 120114 | NA |
| NA | ENSG00000166002 | SMCO4 | single-pass membrane protein with coiled-coil domains 4 | 56935 | NA |
| NA | ENSG00000182919 | C11orf54 | chromosome 11 open reading frame 54 | 28970 | NA |
| NA | ENSG00000042429 | MED17 | mediator complex subunit 17 | 9440 | The activation of gene transcription is a multistep process that is triggered by factors that recognize transcriptional enhancer sites in DNA. These factors work with co-activators to direct transcriptional initiation by the RNA polymerase II apparatus. The protein encoded by this gene is a subunit of the CRSP (cofactor required for SP1 activation) complex, which, along with TFIID, is required for efficient activation by SP1. This protein is also a component of other multisubunit complexes e.g. thyroid hormone receptor-(TR-) associated proteins which interact with TR and facilitate TR function on DNA templates in conjunction with initiation factors and cofactors. |
| NA | ENSG00000110218 | PANX1 | pannexin 1 | 24145 | The protein encoded by this gene belongs to the innexin family. Innexin family members are the structural components of gap junctions. This protein and pannexin 2 are abundantly expressed in central nerve system (CNS) and are coexpressed in various neuronal populations. Studies in Xenopus oocytes suggest that this protein alone and in combination with pannexin 2 may form cell type-specific gap junctions with distinct properties. |
| NA | ENSG00000168876 | ANKRD49 | ankyrin repeat domain 49 | 54851 | NA |
| NA | ENSG00000196371 | FUT4 | fucosyltransferase 4 | 2526 | The product of this gene transfers fucose to N-acetyllactosamine polysaccharides to generate fucosylated carbohydrate structures. It catalyzes the synthesis of the non-sialylated antigen, Lewis x (CD15). |
| NA | ENSG00000166025 | AMOTL1 | angiomotin like 1 | 154810 | The protein encoded by this gene is a peripheral membrane protein that is a component of tight junctions or TJs. TJs form an apical junctional structure and act to control paracellular permeability and maintain cell polarity. This protein is related to angiomotin, an angiostatin binding protein that regulates endothelial cell migration and capillary formation. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000186280 | KDM4D | lysine demethylase 4D | 55693 | NA |
| NA | ENSG00000149218 | ENDOD1 | endonuclease domain containing 1 | 23052 | NA |
| NA | ENSG00000077458 | FAM76B | family with sequence similarity 76 member B | 143684 | NA |
| NA | ENSG00000166037 | CEP57 | centrosomal protein 57kDa | 9702 | This gene encodes a cytoplasmic protein called Translokin. This protein localizes to the centrosome and has a function in microtubular stabilization. The N-terminal half of this protein is required for its centrosome localization and for its multimerization, and the C-terminal half is required for nucleating, bundling and anchoring microtubules to the centrosomes. This protein specifically interacts with fibroblast growth factor 2 (FGF2), sorting nexin 6, Ran-binding protein M and the kinesins KIF3A and KIF3B, and thus mediates the nuclear translocation and mitogenic activity of the FGF2. It also interacts with cyclin D1 and controls nucleocytoplasmic distribution of the cyclin D1 in quiescent cells. This protein is crucial for maintaining correct chromosomal number during cell division. Mutations in this gene cause mosaic variegated aneuploidy syndrome, a rare autosomal recessive disorder. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000087053 | MTMR2 | myotubularin related protein 2 | 8898 | This gene is a member of the myotubularin family of phosphoinositide lipid phosphatases. The encoded protein possesses phosphatase activity towards phosphatidylinositol-3-phosphate and phosphatidylinositol-3,5-bisphosphate. Mutations in this gene are a cause of Charcot-Marie-Tooth disease type 4B, an autosomal recessive demyelinating neuropathy. Alternatively spliced transcript variants encoding multiple isoforms have been found for this gene. |
| NA | ENSG00000184384 | MAML2 | mastermind like transcriptional coactivator 2 | 84441 | The protein encoded by this gene is a member of the Mastermind-like family of proteins. All family members are proline and glutamine-rich, and contain a conserved basic domain that binds the ankyrin repeat domain of the intracellular domain of the Notch receptors (ICN1-4) in their N-terminus, and a transcriptional activation domain in their C-terminus. This protein binds to an extended groove that is formed by the interaction of CBF1, Suppressor of Hairless, LAG-1 (CSL) with ICN, and positively regulates Notch signaling. High levels of expression of this gene have been observed in several B cell-derived lymphomas. Translocations resulting in fusion proteins with both CRTC1 and CRTC3 have been implicated in the development of mucoepidermoid carcinomas, while a translocation event with CXCR4 has been linked with chronic lymphocytic leukemia (CLL). Copy number variation in the polyglutamine tract has been observed. |
| NA | ENSG00000149231 | CCDC82 | coiled-coil domain containing 82 | 79780 | NA |
| NA | ENSG00000183340 | JRKL | JRK-like | 8690 | The function of this gene has not yet been defined, however, the encoded protein shares similarity with the human (41% identical) and mouse (34% identical) jerky gene products. This protein may act as a nuclear regulatory protein. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000165895 | ARHGAP42 | Rho GTPase activating protein 42 | 143872 | NA |
| NA | ENSG00000170647 | TMEM133 | transmembrane protein 133 | 83935 | There is evidence that this intronless gene is transcribed but the protein is predicted. The gene function is unknown. |
| NA | ENSG00000110318 | CEP126 | centrosomal protein 126kDa | 57562 | NA |
| NA | ENSG00000137691 | C11orf70 | chromosome 11 open reading frame 70 | 85016 | NA |
| NA | ENSG00000137693 | YAP1 | Yes associated protein 1 | 10413 | This gene encodes a downstream nuclear effector of the Hippo signaling pathway which is involved in development, growth, repair, and homeostasis. This gene is known to play a role in the development and progression of multiple cancers as a transcriptional regulator of this signaling pathway and may function as a potential target for cancer treatment. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000110330 | BIRC2 | baculoviral IAP repeat containing 2 | 329 | The protein encoded by this gene is a member of a family of proteins that inhibits apoptosis by binding to tumor necrosis factor receptor-associated factors TRAF1 and TRAF2, probably by interfering with activation of ICE-like proteases. This encoded protein inhibits apoptosis induced by serum deprivation and menadione, a potent inducer of free radicals. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000187240 | DYNC2H1 | dynein cytoplasmic 2 heavy chain 1 | 79659 | This gene encodes a large cytoplasmic dynein protein that is involved in retrograde transport in the cilium and has a role in intraflagellar transport, a process required for ciliary/flagellar assembly. Mutations in this gene cause a heterogeneous spectrum of conditions related to altered primary cilium function and often involve polydactyly, abnormal skeletogenesis, and polycystic kidneys. Alternative splicing results in multiple transcript variants encoding distinct proteins. |
| NA | ENSG00000170962 | PDGFD | platelet derived growth factor D | 80310 | The protein encoded by this gene is a member of the platelet-derived growth factor family. The four members of this family are mitogenic factors for cells of mesenchymal origin and are characterized by a core motif of eight cysteines, seven of which are found in this factor. This gene product only forms homodimers and, therefore, does not dimerize with the other three family members. It differs from alpha and beta members of this family in having an unusual N-terminal domain, the CUB domain. Two splice variants have been identified for this gene. |
| NA | ENSG00000170903 | MSANTD4 | Myb/SANT DNA binding domain containing 4 with coiled-coils | 84437 | NA |
| NA | ENSG00000182359 | KBTBD3 | kelch repeat and BTB domain containing 3 | 143879 | NA |
| NA | ENSG00000149313 | AASDHPPT | aminoadipate-semialdehyde dehydrogenase-phosphopantetheinyl transferase | 60496 | The protein encoded by this gene is similar to Saccharomyces cerevisiae LYS5, which is required for the activation of the alpha-aminoadipate dehydrogenase in the biosynthetic pathway of lysine. Yeast alpha-aminoadipate dehydrogenase converts alpha-biosynthetic-aminoadipate semialdehyde to alpha-aminoadipate. It has been suggested that defects in the human gene result in pipecolic acidemia. |
| NA | ENSG00000152402 | GUCY1A2 | guanylate cyclase 1, soluble, alpha 2 | 2977 | Soluble guanylate cyclases are heterodimeric proteins that catalyze the conversion of GTP to 3’,5’-cyclic GMP and pyrophosphate. The protein encoded by this gene is an alpha subunit of this complex and it interacts with a beta subunit to form the guanylate cyclase enzyme, which is activated by nitric oxide. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000152404 | CWF19L2 | CWF19-like 2, cell cycle control (S. pombe) | 143884 | NA |
| NA | ENSG00000137760 | ALKBH8 | alkB homolog 8, tRNA methyltransferase | 91801 | NA |
| NA | ENSG00000110675 | LOC643923 | uncharacterized LOC643923 | 643923 | NA |
| NA | ENSG00000110675 | ELMOD1 | ELMO domain containing 1 | 55531 | NA |
| NA | ENSG00000110660 | SLC35F2 | solute carrier family 35 member F2 | 54733 | NA |
| NA | ENSG00000179331 | RAB39A | RAB39A, member RAS oncogene family | 54734 | NA |
| NA | ENSG00000166266 | CUL5 | cullin 5 | 8065 | NA |
| NA | ENSG00000149311 | ATM | ATM serine/threonine kinase | 472 | The protein encoded by this gene belongs to the PI3/PI4-kinase family. This protein is an important cell cycle checkpoint kinase that phosphorylates; thus, it functions as a regulator of a wide variety of downstream proteins, including tumor suppressor proteins p53 and BRCA1, checkpoint kinase CHK2, checkpoint proteins RAD17 and RAD9, and DNA repair protein NBS1. This protein and the closely related kinase ATR are thought to be master controllers of cell cycle checkpoint signaling pathways that are required for cell response to DNA damage and for genome stability. Mutations in this gene are associated with ataxia telangiectasia, an autosomal recessive disorder. |
| NA | ENSG00000178202 | KDELC2 | KDEL motif containing 2 | 143888 | NA |
| NA | ENSG00000110723 | EXPH5 | exophilin 5 | 23086 | The protein encoded by this gene is a member of the synaptotagmin-like protein (Slp) family lacking a C2 domain. It contains an N-terminal synaptotagmin-like homology domain (SHD), and is a ras-related protein Rab-27B effector protein. This protein is thought to be involved in exosome secretion and intracellular vesicle trafficking. Reduced expression of this gene results in keratin filament defects. Mutations in this gene have been associated with some cases of epidermolysis bullosa, an inherited skin fragility disorder. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000178105 | DDX10 | DEAD-box helicase 10 | 1662 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, and it may be involved in ribosome assembly. Fusion of this gene and the nucleoporin gene, NUP98, by inversion 11 (p15q22) chromosome translocation is found in the patients with de novo or therapy-related myeloid malignancies. |
| NA | ENSG00000149289 | ZC3H12C | zinc finger CCCH-type containing 12C | 85463 | NA |
| NA | ENSG00000137710 | RDX | radixin | 5962 | Radixin is a cytoskeletal protein that may be important in linking actin to the plasma membrane. It is highly similar in sequence to both ezrin and moesin. The radixin gene has been localized by fluorescence in situ hybridization to 11q23. A truncated version representing a pseudogene (RDXP2) was assigned to Xp21.3. Another pseudogene that seemed to lack introns (RDXP1) was mapped to 11p by Southern and PCR analyses. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137714 | FDX1 | ferredoxin 1 | 2230 | This gene encodes a small iron-sulfur protein that transfers electrons from NADPH through ferredoxin reductase to mitochondrial cytochrome P450, involved in steroid, vitamin D, and bile acid metabolism. Pseudogenes of this functional gene are found on chromosomes 20 and 21. |
| NA | ENSG00000204381 | LAYN | layilin | 143903 | NA |
| NA | ENSG00000170145 | SIK2 | salt inducible kinase 2 | 23235 | NA |
| NA | ENSG00000137713 | PPP2R1B | protein phosphatase 2 regulatory subunit A, beta | 5519 | This gene encodes a constant regulatory subunit of protein phosphatase 2. Protein phosphatase 2 is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The constant regulatory subunit A serves as a scaffolding molecule to coordinate the assembly of the catalytic subunit and a variable regulatory B subunit. This gene encodes a beta isoform of the constant regulatory subunit A. Mutations in this gene have been associated with some lung and colon cancers. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000086848 | ALG9 | ALG9, alpha-1,2-mannosyltransferase | 79796 | This gene encodes an alpha-1,2-mannosyltransferase enzyme that functions in lipid-linked oligosaccharide assembly. Mutations in this gene result in congenital disorder of glycosylation type Il. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000109846 | CRYAB | crystallin alpha B | 1410 | Mammalian lens crystallins are divided into alpha, beta, and gamma families. Alpha crystallins are composed of two gene products: alpha-A and alpha-B, for acidic and basic, respectively. Alpha crystallins can be induced by heat shock and are members of the small heat shock protein (HSP20) family. They act as molecular chaperones although they do not renature proteins and release them in the fashion of a true chaperone; instead they hold them in large soluble aggregates. Post-translational modifications decrease the ability to chaperone. These heterogeneous aggregates consist of 30-40 subunits; the alpha-A and alpha-B subunits have a 3:1 ratio, respectively. Two additional functions of alpha crystallins are an autokinase activity and participation in the intracellular architecture. The encoded protein has been identified as a moonlighting protein based on its ability to perform mechanistically distinct functions. Alpha-A and alpha-B gene products are differentially expressed; alpha-A is preferentially restricted to the lens and alpha-B is expressed widely in many tissues and organs. Elevated expression of alpha-B crystallin occurs in many neurological diseases; a missense mutation cosegregated in a family with a desmin-related myopathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000150764 | DIXDC1 | DIX domain containing 1 | 85458 | The protein encoded by this gene is a positive regulator of the Wnt signaling pathway. The encoded protein is found associated with gamma tubulin at the centrosome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000150768 | DLAT | dihydrolipoamide S-acetyltransferase | 1737 | This gene encodes component E2 of the multi-enzyme pyruvate dehydrogenase complex (PDC). PDC resides in the inner mitochondrial membrane and catalyzes the conversion of pyruvate to acetyl coenzyme A. The protein product of this gene, dihydrolipoamide acetyltransferase, accepts acetyl groups formed by the oxidative decarboxylation of pyruvate and transfers them to coenzyme A. Dihydrolipoamide acetyltransferase is the antigen for antimitochondrial antibodies. These autoantibodies are present in nearly 95% of patients with the autoimmune liver disease primary biliary cirrhosis (PBC). In PBC, activated T lymphocytes attack and destroy epithelial cells in the bile duct where this protein is abnormally distributed and overexpressed. PBC enventually leads to cirrhosis and liver failure. Mutations in this gene are also a cause of pyruvate dehydrogenase E2 deficiency which causes primary lactic acidosis in infancy and early childhood. |
| NA | ENSG00000150773 | PIH1D2 | PIH1 domain containing 2 | 120379 | NA |
| NA | ENSG00000150776 | C11orf57 | chromosome 11 open reading frame 57 | 55216 | NA |
| NA | ENSG00000150779 | TIMM8B | translocase of inner mitochondrial membrane 8 homolog B (yeast) | 26521 | This gene encodes a member of a well-conserved family of proteins with similarity to yeast Tim mitochondrial import proteins. This gene is encoded by a nuclear gene and is transported into the intermembrane space of the mitochondrion. When formed into complexes, these proteins guide membrane-spanning proteins across the mitochondrial intermembrane space before they are added into the mitochondrial inner membrane. This gene is adjacent to succinate dehydrogenase, subunit D (SDHD), in which mutations have been found in affected members of families with hereditary paraganglioma. |
| NA | ENSG00000204370 | SDHD | succinate dehydrogenase complex subunit D | 6392 | This gene encodes a member of complex II of the respiratory chain, which is responsible for the oxidation of succinate. The encoded protein is one of two integral membrane proteins anchoring the complex to the matrix side of the mitochondrial inner membrane. Mutations in this gene are associated with the formation of tumors, including hereditary paraganglioma. Transmission of disease occurs almost exclusively through the paternal allele, suggesting that this locus may be maternally imprinted. There are pseudogenes for this gene on chromosomes 1, 2, 3, 7, and 18. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000150787 | PTS | 6-pyruvoyltetrahydropterin synthase | 5805 | The enzyme encoded by this gene catalyzes the elimination of inorganic triphosphate from dihydroneopterin triphosphate, which is the second and irreversible step in the biosynthesis of tetrahydrobiopterin from GTP. Tetrahydrobiopterin, also known as BH(4), is an essential cofactor and regulator of various enzyme activities, including enzymes involved in serotonin biosynthesis and NO synthase activity. Mutations in this gene result in hyperphenylalaninemia. |
| NA | ENSG00000149294 | NCAM1 | neural cell adhesion molecule 1 | 4684 | This gene encodes a cell adhesion protein which is a member of the immunoglobulin superfamily. The encoded protein is involved in cell-to-cell interactions as well as cell-matrix interactions during development and differentiation. The encoded protein has been shown to be involved in development of the nervous system, and for cells involved in the expansion of T cells and dendritic cells which play an important role in immune surveillance. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000149292 | TTC12 | tetratricopeptide repeat domain 12 | 54970 | NA |
| NA | ENSG00000086827 | ZW10 | zw10 kinetochore protein | 9183 | This gene encodes a protein that is one of many involved in mechanisms to ensure proper chromosome segregation during cell division. This protein is an essential component of the mitotic checkpoint, which prevents cells from prematurely exiting mitosis. |
| NA | ENSG00000166736 | HTR3A | 5-hydroxytryptamine receptor 3A | 3359 | The product of this gene belongs to the ligand-gated ion channel receptor superfamily. This gene encodes subunit A of the type 3 receptor for 5-hydroxytryptamine (serotonin), a biogenic hormone that functions as a neurotransmitter, a hormone, and a mitogen. This receptor causes fast, depolarizing responses in neurons after activation. It appears that the heteromeric combination of A and B subunits is necessary to provide the full functional features of this receptor, since either subunit alone results in receptors with very low conductance and response amplitude. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000076053 | RBM7 | RNA binding motif protein 7 | 10179 | NA |
| NA | ENSG00000076043 | REXO2 | RNA exonuclease 2 | 25996 | This gene encodes a 3’-to-5’ exonuclease specific for small (primarily 5 nucleotides or less in length) single-stranded RNA and DNA oligomers. This protein may have a role in DNA repair, replication, and recombination, and in RNA processing and degradation. It may also be involved in resistance of human cells to UV-C-induced cell death through its role in the DNA repair process. |
| NA | ENSG00000137656 | BUD13 | BUD13 homolog | 84811 | NA |
| NA | ENSG00000109917 | ZPR1 | ZPR1 zinc finger | 8882 | The protein encoded by this gene is found in the cytoplasm of quiescent cells but translocates to the nucleolus in proliferating cells. The encoded protein interacts with survival motor neuron protein (SMN1) to enhance pre-mRNA splicing and to induce neuronal differentiation and axonal growth. Defects in this gene or the SMN1 gene can cause spinal muscular atrophy. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000160584 | SIK3 | SIK family kinase 3 | 23387 | NA |
| NA | ENSG00000168092 | PAFAH1B2 | platelet activating factor acetylhydrolase 1b catalytic subunit 2 | 5049 | Platelet-activating factor acetylhydrolase (PAFAH) inactivates platelet-activating factor (PAF) into acetate and LYSO-PAF. This gene encodes the beta subunit of PAFAH, the other subunits are alpha and gamma. Multiple alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000149577 | SIDT2 | SID1 transmembrane family member 2 | 51092 | NA |
| NA | ENSG00000149591 | TAGLN | transgelin | 6876 | The protein encoded by this gene is a transformation and shape-change sensitive actin cross-linking/gelling protein found in fibroblasts and smooth muscle. Its expression is down-regulated in many cell lines, and this down-regulation may be an early and sensitive marker for the onset of transformation. A functional role of this protein is unclear. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000160613 | PCSK7 | proprotein convertase subtilisin/kexin type 7 | 9159 | This gene encodes a member of the subtilisin-like proprotein convertase family, which includes proteases that process protein and peptide precursors trafficking through regulated or constitutive branches of the secretory pathway. It encodes a type 1 membrane bound protease that is expressed in many tissues, including neuroendocrine, liver, gut, and brain. The encoded protein undergoes an initial autocatalytic processing event in the ER and then sorts to the trans-Golgi network through endosomes where a second autocatalytic event takes place and the catalytic activity is acquired. This gene encodes one of the seven basic amino acid-specific members which cleave their substrates at single or paired basic residues. It can process proalbumin and is thought to be responsible for the activation of HIV envelope glycoproteins gp160 and gp140. This gene has been implicated in the transcriptional regulation of housekeeping genes and plays a role in the regulation of iron metabolism. A t(11;14)(q23;q32) chromosome translocation associated with B-cell lymphoma occurs between this gene and its inverted counterpart. |
| NA | ENSG00000167257 | RNF214 | ring finger protein 214 | 257160 | NA |
| NA | ENSG00000186318 | BACE1 | beta-site APP-cleaving enzyme 1 | 23621 | This gene encodes a member of the peptidase A1 family of aspartic proteases. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate the mature protease. This transmembrane protease catalyzes the first step in the formation of amyloid beta peptide from amyloid precursor protein. Amyloid beta peptides are the main constituent of amyloid beta plaques, which accumulate in the brains of human Alzheimer’s disease patients. |
| NA | ENSG00000110274 | CEP164 | centrosomal protein 164kDa | 22897 | This gene encodes a centrosomal protein involved in microtubule organization, DNA damage response, and chromosome segregation. The encoded protein is required for assembly of primary cilia and localizes to mature centrioles. Defects in this gene are a cause of nephronophthisis-related ciliopathies. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137726 | FXYD6 | FXYD domain containing ion transport regulator 6 | 53826 | This gene encodes a member of the FXYD family of transmembrane proteins. This particular protein encodes phosphohippolin, which likely affects the activity of Na,K-ATPase. Multiple alternatively spliced transcript variants encoding the same protein have been described. Related pseudogenes have been identified on chromosomes 10 and X. Read-through transcripts have been observed between this locus and the downstream sodium/potassium-transporting ATPase subunit gamma (FXYD2, GeneID 486) locus. |
| NA | ENSG00000177098 | SCN4B | sodium voltage-gated channel beta subunit 4 | 6330 | The protein encoded by this gene is one of several sodium channel beta subunits. These subunits interact with voltage-gated alpha subunits to change sodium channel kinetics. The encoded transmembrane protein forms interchain disulfide bonds with SCN2A. Defects in this gene are a cause of long QT syndrome type 10 (LQT10). Three protein-coding and one non-coding transcript variant have been found for this gene. |
| NA | ENSG00000160588 | MPZL3 | myelin protein zero like 3 | 196264 | NA |
| NA | ENSG00000149573 | MPZL2 | myelin protein zero like 2 | 10205 | Thymus development depends on a complex series of interactions between thymocytes and the stromal component of the organ. Epithelial V-like antigen (EVA) is expressed in thymus epithelium and strongly downregulated by thymocyte developmental progression. This gene is expressed in the thymus and in several epithelial structures early in embryogenesis. It is highly homologous to the myelin protein zero and, in thymus-derived epithelial cell lines, is poorly soluble in nonionic detergents, strongly suggesting an association to the cytoskeleton. Its capacity to mediate cell adhesion through a homophilic interaction and its selective regulation by T cell maturation might imply the participation of EVA in the earliest phases of thymus organogenesis. The protein bears a characteristic V-type domain and two potential N-glycosylation sites in the extracellular domain; a putative serine phosphorylation site for casein kinase 2 is also present in the cytoplasmic tail. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000110344 | UBE4A | ubiquitination factor E4A | 9354 | This gene encodes a member of the U-box ubiquitin ligase family. The encoded protein is involved in multiubiquitin chain assembly and plays a critical role in chromosome condensation and separation through the polyubiquitination of securin. Autoantibodies against the encoded protein may be markers for scleroderma and Crohn’s disease. A pseudogene of this gene is located on the long arm of chromosome 3. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000254873 | RP11-770J1.5 | NA | ENSG00000254873 | NA |
| NA | ENSG00000167283 | ATP5L | ATP synthase, H+ transporting, mitochondrial Fo complex subunit G | 10632 | Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. It is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, which comprises the proton channel. The F1 complex consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled in a ratio of 3 alpha, 3 beta, and a single representative of the other 3. The Fo seems to have nine subunits (a, b, c, d, e, f, g, F6 and 8). This gene encodes the g subunit of the Fo complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000118058 | KMT2A | lysine methyltransferase 2A | 4297 | This gene encodes a transcriptional coactivator that plays an essential role in regulating gene expression during early development and hematopoiesis. The encoded protein contains multiple conserved functional domains. One of these domains, the SET domain, is responsible for its histone H3 lysine 4 (H3K4) methyltransferase activity which mediates chromatin modifications associated with epigenetic transcriptional activation. This protein is processed by the enzyme Taspase 1 into two fragments, MLL-C and MLL-N. These fragments reassociate and further assemble into different multiprotein complexes that regulate the transcription of specific target genes, including many of the HOX genes. Multiple chromosomal translocations involving this gene are the cause of certain acute lymphoid leukemias and acute myeloid leukemias. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000149582 | TMEM25 | transmembrane protein 25 | 84866 | NA |
| NA | ENSG00000118096 | IFT46 | intraflagellar transport 46 | 56912 | NA |
| NA | ENSG00000095139 | ARCN1 | archain 1 | 372 | This gene maps in a region, which include the mixed lineage leukemia and Friend leukemia virus integration 1 genes, where multiple disease-associated chromosome translocations occur. It is an intracellular protein. Archain sequences are well conserved among eukaryotes and this protein may play a fundamental role in eukaryotic cell biology. It has similarities to heat shock proteins and clathrin-associated proteins, and may be involved in vesicle structure or trafficking. |
| NA | ENSG00000019144 | PHLDB1 | pleckstrin homology like domain family B member 1 | 23187 | NA |
| NA | ENSG00000110367 | DDX6 | DEAD-box helicase 6 | 1656 | This gene encodes a member of the DEAD box protein family. The protein is an RNA helicase found in P-bodies and stress granules, and functions in translation suppression and mRNA degradation. It is required for microRNA-induced gene silencing. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000186174 | BCL9L | B-cell CLL/lymphoma 9-like | 283149 | NA |
| NA | ENSG00000186166 | CCDC84 | coiled-coil domain containing 84 | 338657 | This gene encodes a protein thought to contain a coiled coil motif. No function has been determined for the encoded protein. A pseudogene of this gene is located on chromosome 20. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000118181 | RPS25 | ribosomal protein S25 | 6230 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S25E family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000137700 | SLC37A4 | solute carrier family 37 member 4 | 2542 | This gene regulates glucose-6-phosphate transport from the cytoplasm to the lumen of the endoplasmic reticulum, in order to maintain glucose homeostasis. It also plays a role in ATP-mediated calcium sequestration in the lumen of the endoplasmic reticulum. Mutations in this gene have been associated with various forms of glycogen storage disease. Alternative splicing in this gene results in multiple transcript variants. |
| NA | ENSG00000149428 | HYOU1 | hypoxia up-regulated 1 | 10525 | The protein encoded by this gene belongs to the heat shock protein 70 family. This gene uses alternative transcription start sites. A cis-acting segment found in the 5’ UTR is involved in stress-dependent induction, resulting in the accumulation of this protein in the endoplasmic reticulum (ER) under hypoxic conditions. The protein encoded by this gene is thought to play an important role in protein folding and secretion in the ER. Since suppression of the protein is associated with accelerated apoptosis, it is also suggested to have an important cytoprotective role in hypoxia-induced cellular perturbation. This protein has been shown to be up-regulated in tumors, especially in breast tumors, and thus it is associated with tumor invasiveness. This gene also has an alternative translation initiation site, resulting in a protein that lacks the N-terminal signal peptide. This signal peptide-lacking protein, which is only 3 amino acids shorter than the mature protein in the ER, is thought to have a housekeeping function in the cytosol. In rat, this protein localizes to both the ER by a carboxy-terminal peptide sequence and to mitochondria by an amino-terminal targeting signal. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160695 | VPS11 | VPS11, CORVET/HOPS core subunit | 55823 | Vesicle mediated protein sorting plays an important role in segregation of intracellular molecules into distinct organelles. Genetic studies in yeast have identified more than 40 vacuolar protein sorting (VPS) genes involved in vesicle transport to vacuoles. This gene encodes the human homolog of yeast class C Vps11 protein. The mammalian class C Vps proteins are predominantly associated with late endosomes/lysosomes, and like their yeast counterparts, may mediate vesicle trafficking steps in the endosome/lysosome pathway. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000256269 | HMBS | hydroxymethylbilane synthase | 3145 | This gene encodes a member of the hydroxymethylbilane synthase superfamily. The encoded protein is the third enzyme of the heme biosynthetic pathway and catalyzes the head to tail condensation of four porphobilinogen molecules into the linear hydroxymethylbilane. Mutations in this gene are associated with the autosomal dominant disease acute intermittent porphyria. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000188486 | H2AFX | H2A histone family member X | 3014 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene encodes a replication-independent histone that is a member of the histone H2A family, and generates two transcripts through the use of the conserved stem-loop termination motif, and the polyA addition motif. |
| NA | ENSG00000172269 | DPAGT1 | dolichyl-phosphate N-acetylglucosaminephosphotransferase 1 | 1798 | The protein encoded by this gene is an enzyme that catalyzes the first step in the dolichol-linked oligosaccharide pathway for glycoprotein biosynthesis. This enzyme belongs to the glycosyltransferase family 4. This protein is an integral membrane protein of the endoplasmic reticulum. The congenital disorder of glycosylation type Ij is caused by mutation in the gene encoding this enzyme. |
| NA | ENSG00000172273 | HINFP | histone H4 transcription factor | 25988 | This gene encodes a transcription factor that interacts with methyl-CpG-binding protein-2 (MBD2), a component of the MeCP1 histone deacetylase (HDAC) complex, and plays a role in DNA methylation and transcription repression. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000160703 | NLRX1 | NLR family member X1 | 79671 | The protein encoded by this gene is a member of the NLR family and localizes to the outer mitochondrial membrane. The encoded protein is a regulator of mitochondrial antivirus responses. Three transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000248712 | CCDC153 | coiled-coil domain containing 153 | 283152 | NA |
| NA | ENSG00000110395 | CBL | Cbl proto-oncogene, E3 ubiquitin protein ligase | 867 | This gene is a proto-oncogene that encodes a RING finger E3 ubiquitin ligase. The encoded protein is one of the enzymes required for targeting substrates for degradation by the proteasome. This protein mediates the transfer of ubiquitin from ubiquitin conjugating enzymes (E2) to specific substrates. This protein also contains an N-terminal phosphotyrosine binding domain that allows it to interact with numerous tyrosine-phosphorylated substrates and target them for proteasome degradation. As such it functions as a negative regulator of many signal transduction pathways. This gene has been found to be mutated or translocated in many cancers including acute myeloid leukaemia. Mutations in this gene are also the cause of Noonan syndrome-like disorder. |
| NA | ENSG00000076706 | MCAM | melanoma cell adhesion molecule | 4162 | NA |
| NA | ENSG00000173456 | RNF26 | ring finger protein 26 | 79102 | The protein encoded by this intronless gene contains a C3HC5 type of RING finger, a motif known to be involved in protein-DNA and protein-protein interactions. The expression of this gene was found to be upregulated in cancer cell lines derived from different types of cancer. |
| NA | ENSG00000036672 | USP2 | ubiquitin specific peptidase 2 | 9099 | This gene encodes a member of the family of de-ubiquitinating enzymes, which belongs to the peptidase C19 superfamily. The encoded protein is a ubiquitin-specific protease which is required for TNF-alpha (tumor necrosis factor alpha) -induced NF-kB (nuclear factor kB) signaling. This protein deubiquitinates polyubiquitinated target proteins such as fatty acid synthase, murine double minute 2 (MDM2), MDM4/MDMX and cyclin D1. MDM2 and MDM4 are negative regulators of the p53 tumor suppressor and cyclin D1 is required for cell cycle G1/S transition. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000154096 | THY1 | Thy-1 cell surface antigen | 7070 | This gene encodes a cell surface glycoprotein and member of the immunoglobulin superfamily of proteins. The encoded protein is involved in cell adhesion and cell communication in numerous cell types, but particularly in cells of the immune and nervous systems. The encoded protein is widely used as a marker for hematopoietic stem cells. This gene may function as a tumor suppressor in nasopharyngeal carcinoma. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000110400 | NECTIN1 | nectin cell adhesion molecule 1 | 5818 | This gene encodes an adhesion protein that plays a role in the organization of adherens junctions and tight junctions in epithelial and endothelial cells. The protein is a calcium(2+)-independent cell-cell adhesion molecule that belongs to the immunoglobulin superfamily and has 3 extracellular immunoglobulin-like loops, a single transmembrane domain (in some isoforms), and a cytoplasmic region. This protein acts as a receptor for glycoprotein D (gD) of herpes simplex viruses 1 and 2 (HSV-1, HSV-2), and pseudorabies virus (PRV) and mediates viral entry into epithelial and neuronal cells. Mutations in this gene cause cleft lip and palate/ectodermal dysplasia 1 syndrome (CLPED1) as well as non-syndromic cleft lip with or without cleft palate (CL/P). Alternative splicing results in multiple transcript variants encoding proteins with distinct C-termini. |
| NA | ENSG00000181264 | TMEM136 | transmembrane protein 136 | 219902 | NA |
| NA | ENSG00000196914 | ARHGEF12 | Rho guanine nucleotide exchange factor 12 | 23365 | Rho GTPases play a fundamental role in numerous cellular processes that are initiated by extracellular stimuli working through G protein-coupled receptors. The encoded protein may form a complex with G proteins and stimulate Rho-dependent signals. This protein has been observed to form a myeloid/lymphoid fusion partner in acute myeloid leukemia. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000149403 | GRIK4 | glutamate ionotropic receptor kainate type subunit 4 | 2900 | This gene encodes a protein that belongs to the glutamate-gated ionic channel family. Glutamate functions as the major excitatory neurotransmitter in the central nervous system through activation of ligand-gated ion channels and G protein-coupled membrane receptors. The protein encoded by this gene forms functional heteromeric kainate-preferring ionic channels with the subunits encoded by related gene family members. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000154114 | TBCEL | tubulin folding cofactor E-like | 219899 | NA |
| NA | ENSG00000154127 | UBASH3B | ubiquitin associated and SH3 domain containing B | 84959 | This gene encodes a protein that contains a ubiquitin associated domain at the N-terminus, an SH3 domain, and a C-terminal domain with similarities to the catalytic motif of phosphoglycerate mutase. The encoded protein was found to inhibit endocytosis of epidermal growth factor receptor (EGFR) and platelet-derived growth factor receptor. |
| NA | ENSG00000109971 | HSPA8 | heat shock protein family A (Hsp70) member 8 | 3312 | This gene encodes a member of the heat shock protein 70 family, which contains both heat-inducible and constitutively expressed members. This protein belongs to the latter group, which are also referred to as heat-shock cognate proteins. It functions as a chaperone, and binds to nascent polypeptides to facilitate correct folding. It also functions as an ATPase in the disassembly of clathrin-coated vesicles during transport of membrane components through the cell. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000166250 | CLMP | CXADR-like membrane protein | 79827 | This gene encodes a type I transmembrane protein that is localized to junctional complexes between endothelial and epithelial cells and may have a role in cell-cell adhesion. Expression of this gene in white adipose tissue is implicated in adipocyte maturation and development of obesity. This gene is also essential for normal intestinal development and mutations in the gene are associated with congenital short bowel syndrome. |
| NA | ENSG00000023171 | GRAMD1B | GRAM domain containing 1B | 57476 | NA |
| NA | ENSG00000166261 | ZNF202 | zinc finger protein 202 | 7753 | NA |
| NA | ENSG00000110002 | VWA5A | von Willebrand factor A domain containing 5A | 4013 | NA |
| NA | ENSG00000154144 | TBRG1 | transforming growth factor beta regulator 1 | 84897 | NA |
| NA | ENSG00000064199 | SPA17 | sperm autoantigenic protein 17 | 53340 | This gene encodes a protein present at the cell surface. The N-terminus has sequence similarity to human cAMP-dependent protein kinase A (PKA) type II alpha regulatory subunit (RIIa) while the C-terminus has an IQ calmodulin-binding motif. The central portion of the protein has carbohydrate binding motifs and likely functions in cell-cell adhesion. The protein was initially characterized by its involvement in the binding of sperm to the zona pellucida of the oocyte. Recent studies indicate that it is also involved in additional cell-cell adhesion functions such as immune cell migration and metastasis. A retrotransposed pseudogene is present on chromosome 10q22. |
| NA | ENSG00000120458 | MSANTD2 | Myb/SANT DNA binding domain containing 2 | 79684 | NA |
| NA | ENSG00000154134 | ROBO3 | roundabout guidance receptor 3 | 64221 | This gene is a member of the Roundabout (ROBO) gene family that controls neurite outgrowth, growth cone guidance, and axon fasciculation. ROBO proteins are a subfamily of the immunoglobulin transmembrane receptor superfamily. SLIT proteins 1-3, a family of secreted chemorepellants, are ligands for ROBO proteins and SLIT/ROBO interactions regulate myogenesis, leukocyte migration, kidney morphogenesis, angiogenesis, and vasculogenesis in addition to neurogenesis. This gene, ROBO3, has a putative extracellular domain with five immunoglobulin (Ig)-like loops and three fibronectin (Fn) type III motifs, a transmembrane segment, and a cytoplasmic tail with three conserved signaling motifs: CC0, CC2, and CC3 (CC for conserved cytoplasmic). Unlike other ROBO family members, ROBO3 lacks motif CC1. The ROBO3 gene regulates axonal navigation at the ventral midline of the neural tube. In mouse, loss of Robo3 results in a complete failure of commissural axons to cross the midline throughout the spinal cord and the hindbrain. Mutations ROBO3 result in horizontal gaze palsy with progressive scoliosis (HGPPS); an autosomal recessive disorder characterized by congenital absence of horizontal gaze, progressive scoliosis, and failure of the corticospinal and somatosensory axon tracts to cross the midline in the medulla. Alternative transcript variants have been described but have not been experimentally validated. |
| NA | ENSG00000149548 | CCDC15 | coiled-coil domain containing 15 | 80071 | NA |
| NA | ENSG00000150433 | TMEM218 | transmembrane protein 218 | 219854 | NA |
| NA | ENSG00000165495 | PKNOX2 | PBX/knotted 1 homeobox 2 | 63876 | Homeodomain proteins are sequence-specific transcription factors that share a highly conserved DNA-binding domain and play fundamental roles in cell proliferation, differentiation, and death. PKNOX2 belongs to the TALE (3-amino acid loop extension) class of homeodomain proteins characterized by a 3-amino acid extension between alpha helices 1 and 2 within the homeodomain (Imoto et al., 2001 [PubMed 11549286]). |
| NA | ENSG00000149547 | EI24 | EI24, autophagy associated transmembrane protein | 9538 | This gene encodes a putative tumor suppressor and has higher expression in p53-expressing cells than in control cells and is an immediate-early induction target of p53-mediated apoptosis. The encoded protein may suppress cell growth by inducing apoptotic cell death through the caspase 9 and mitochondrial pathways. This gene is located on human chromosome 11q24, a region frequently altered in cancers. Alternative splicing results in multiple transcript variants. Pseudogenes of this gene have been defined on chromosomes 1, 3, 7, and 8. |
| NA | ENSG00000134910 | STT3A | STT3A, catalytic subunit of the oligosaccharyltransferase complex | 3703 | The protein encoded by this gene is a catalytic subunit of the N-oligosaccharyltransferase (OST) complex, which functions in the endoplasmic reticulum to transfer glycan chains to asparagine residues of target proteins. A separate complex containing a similar catalytic subunit with an overlapping function also exists. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000149554 | CHEK1 | checkpoint kinase 1 | 1111 | The protein encoded by this gene belongs to the Ser/Thr protein kinase family. It is required for checkpoint mediated cell cycle arrest in response to DNA damage or the presence of unreplicated DNA. This protein acts to integrate signals from ATM and ATR, two cell cycle proteins involved in DNA damage responses, that also associate with chromatin in meiotic prophase I. Phosphorylation of CDC25A protein phosphatase by this protein is required for cells to delay cell cycle progression in response to double-strand DNA breaks. Several alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000198331 | HYLS1 | hydrolethalus syndrome 1 | 219844 | This gene encodes a protein localized to the cytoplasm. Mutations in this gene are associated with hydrolethalus syndrome. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000109832 | DDX25 | DEAD-box helicase 25 | 29118 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of the DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a member of this family. The encoded protein is a gonadotropin-regulated and developmentally expressed testicular RNA helicase. It may serve to maintain testicular functions related to steroidogenesis and spermatogenesis. |
| NA | ENSG00000064309 | CDON | cell adhesion associated, oncogene regulated | 50937 | This gene encodes a cell surface receptor that is a member of the immunoglobulin superfamily. The encoded protein contains three fibronectin type III domains and five immunoglobulin-like C2-type domains. This protein is a member of a cell-surface receptor complex that mediates cell-cell interactions between muscle precursor cells and positively regulates myogenesis. |
| NA | ENSG00000165526 | RPUSD4 | RNA pseudouridylate synthase domain containing 4 | 84881 | NA |
| NA | ENSG00000197798 | FAM118B | family with sequence similarity 118 member B | 79607 | NA |
| NA | ENSG00000182934 | SRPRA | SRP receptor alpha subunit | 6734 | The gene encodes a subunit of the endoplasmic reticulum signal recognition particle receptor that, in conjunction with the signal recognition particle, is involved in the targeting and translocation of signal sequence tagged secretory and membrane proteins across the endoplasmic reticulum. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000110074 | FOXRED1 | FAD-dependent oxidoreductase domain containing 1 | 55572 | This gene encodes a protein that contains a FAD-dependent oxidoreductase domain. The encoded protein is localized to the mitochondria and may function as a chaperone protein required for the function of mitochondrial complex I. Mutations in this gene are associated with mitochondrial complex I deficiency. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000255062 | RP11-712L6.5 | NA | ENSG00000255062 | NA |
| NA | ENSG00000110063 | DCPS | decapping enzyme, scavenger | 28960 | NA |
| NA | ENSG00000110080 | ST3GAL4 | ST3 beta-galactoside alpha-2,3-sialyltransferase 4 | 6484 | This gene encodes a member of the glycosyltransferase 29 family, a group of enzymes involved in protein glycosylation. The encoded protein is targeted to Golgi membranes but may be proteolytically processed and secreted. The gene product may also be involved in the increased expression of sialyl Lewis X antigen seen in inflammatory responses. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000134954 | ETS1 | ETS proto-oncogene 1, transcription factor | 2113 | This gene encodes a member of the ETS family of transcription factors, which are defined by the presence of a conserved ETS DNA-binding domain that recognizes the core consensus DNA sequence GGAA/T in target genes. These proteins function either as transcriptional activators or repressors of numerous genes, and are involved in stem cell development, cell senescence and death, and tumorigenesis. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000134909 | ARHGAP32 | Rho GTPase activating protein 32 | 9743 | RICS is a neuron-associated GTPase-activating protein that may regulate dendritic spine morphology and strength by modulating Rho GTPase (see RHOA; MIM 165390) activity (Okabe et al., 2003 [PubMed 12531901]). |
| NA | ENSG00000170322 | NFRKB | nuclear factor related to kappaB binding protein | 4798 | NA |
| NA | ENSG00000170325 | PRDM10 | PR domain 10 | 56980 | The protein encoded by this gene is a transcription factor that contains C2H2-type zinc-fingers. It also contains a positive regulatory domain, which has been found in several other zinc-finger transcription factors including those involved in B cell differentiation and tumor suppression. Studies of the mouse counterpart suggest that this protein may be involved in the development of the central nerve system (CNS), as well as in the pathogenesis of neuronal storage disease. Multiple alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000084234 | APLP2 | amyloid beta precursor like protein 2 | 334 | This gene encodes amyloid precursor- like protein 2 (APLP2), which is a member of the APP (amyloid precursor protein) family including APP, APLP1 and APLP2. This protein is ubiquitously expressed. It contains heparin-, copper- and zinc- binding domains at the N-terminus, BPTI/Kunitz inhibitor and E2 domains in the middle region, and transmembrane and intracellular domains at the C-terminus. This protein interacts with major histocompatibility complex (MHC) class I molecules. The synergy of this protein and the APP is required to mediate neuromuscular transmission, spatial learning and synaptic plasticity. This protein has been implicated in the pathogenesis of Alzheimer’s disease. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000149418 | ST14 | suppression of tumorigenicity 14 | 6768 | The protein encoded by this gene is an epithelial-derived, integral membrane serine protease. This protease forms a complex with the Kunitz-type serine protease inhibitor, HAI-1, and is found to be activated by sphingosine 1-phosphate. This protease has been shown to cleave and activate hepatocyte growth factor/scattering factor, and urokinase plasminogen activator, which suggest the function of this protease as an epithelial membrane activator for other proteases and latent growth factors. The expression of this protease has been associated with breast, colon, prostate, and ovarian tumors, which implicates its role in cancer invasion, and metastasis. |
| NA | ENSG00000196323 | ZBTB44 | zinc finger and BTB domain containing 44 | 29068 | NA |
| NA | ENSG00000134917 | ADAMTS8 | ADAM metallopeptidase with thrombospondin type 1 motif 8 | 11095 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) protein family. Members of the family share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. The encoded preproprotein is proteolytically processed to generate the mature enzyme. This enzyme contains two C-terminal TS motifs, and disrupts angiogenesis in vivo. A number of disorders have been mapped in the vicinity of this gene, most notably lung neoplasms. Reduced expression of this gene has been observed in multiple human cancers and this gene has been proposed as a potential tumor suppressor. |
| NA | ENSG00000166106 | ADAMTS15 | ADAM metallopeptidase with thrombospondin type 1 motif 15 | 170689 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) protein family. ADAMTS family members share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. The protein encoded by this gene has a high sequence similarity to the proteins encoded by ADAMTS1 and ADAMTS8. |
| NA | ENSG00000120451 | SNX19 | sorting nexin 19 | 399979 | NA |
| NA | ENSG00000182667 | NTM | neurotrimin | 50863 | This gene encodes a member of the IgLON (LAMP, OBCAM, Ntm) family of immunoglobulin (Ig) domain-containing glycosylphosphatidylinositol (GPI)-anchored cell adhesion molecules. The encoded protein may promote neurite outgrowth and adhesion via a homophilic mechanism. This gene is closely linked to a related family member, opioid binding protein/cell adhesion molecule-like (OPCML), on chromosome 11. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183715 | OPCML | opioid binding protein/cell adhesion molecule-like | 4978 | This gene encodes a member of the IgLON subfamily in the immunoglobulin protein superfamily of proteins. The encoded preprotein is proteolytically processed to generate the mature protein. This protein is localized in the plasma membrane and may have an accessory role in opioid receptor function. This gene has an ortholog in rat and bovine. The opioid binding-cell adhesion molecule encoded by the rat gene binds opioid alkaloids in the presence of acidic lipids, exhibits selectivity for mu ligands and acts as a GPI-anchored protein. Since the encoded protein is highly conserved in species during evolution, it may have a fundamental role in mammalian systems. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000080854 | IGSF9B | immunoglobulin superfamily member 9B | 22997 | NA |
| NA | ENSG00000166086 | JAM3 | junctional adhesion molecule 3 | 83700 | Tight junctions represent one mode of cell-to-cell adhesion in epithelial or endothelial cell sheets, forming continuous seals around cells and serving as a physical barrier to prevent solutes and water from passing freely through the paracellular space. The protein encoded by this immunoglobulin superfamily gene member is localized in the tight junctions between high endothelial cells. Unlike other proteins in this family, the this protein is unable to adhere to leukocyte cell lines and only forms weak homotypic interactions. The encoded protein is a member of the junctional adhesion molecule protein family and acts as a receptor for another member of this family. A mutation in an intron of this gene is associated with hemorrhagic destruction of the brain, subependymal calcification, and congenital cataracts. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000151503 | NCAPD3 | non-SMC condensin II complex subunit D3 | 23310 | Condensin complexes I and II play essential roles in mitotic chromosome assembly and segregation. Both condensins contain 2 invariant structural maintenance of chromosome (SMC) subunits, SMC2 (MIM 605576) and SMC4 (MIM 605575), but they contain different sets of non-SMC subunits. NCAPD3 is 1 of 3 non-SMC subunits that define condensin II (Ono et al., 2003 [PubMed 14532007]). |
| NA | ENSG00000151502 | VPS26B | VPS26 retromer complex component B | 112936 | NA |
| NA | ENSG00000151500 | THYN1 | thymocyte nuclear protein 1 | 29087 | This gene encodes a protein that is highly conserved among vertebrates and plant species and may be involved in the induction of apoptosis. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000166105 | GLB1L3 | galactosidase beta 1 like 3 | 112937 | NA |
| NA | ENSG00000149328 | GLB1L2 | galactosidase beta 1 like 2 | 89944 | NA |
| NA | ENSG00000109956 | B3GAT1 | beta-1,3-glucuronyltransferase 1 | 27087 | The protein encoded by this gene is a member of the glucuronyltransferase gene family. These enzymes exhibit strict acceptor specificity, recognizing nonreducing terminal sugars and their anomeric linkages. This gene product functions as the key enzyme in a glucuronyl transfer reaction during the biosynthesis of the carbohydrate epitope HNK-1 (human natural killer-1, also known as CD57 and LEU7). Alternate transcriptional splice variants have been characterized. |
| NA | ENSG00000073614 | KDM5A | lysine demethylase 5A | 5927 | This gene encodes a member of the Jumonji, AT-rich interactive domain 1 (JARID1) histone demethylase protein family. The encoded protein plays a role in gene regulation through the histone code by specifically demethylating lysine 4 of histone H3. The encoded protein interacts with many other proteins, including retinoblastoma protein, and is implicated in the transcriptional regulation of Hox genes and cytokines. This gene may play a role in tumor progression. |
| NA | ENSG00000120647 | CCDC77 | coiled-coil domain containing 77 | 84318 | NA |
| NA | ENSG00000139044 | B4GALNT3 | beta-1,4-N-acetyl-galactosaminyltransferase 3 | 283358 | B4GALNT3 transfers N-acetylgalactosamine (GalNAc) onto glucosyl residues to form N,N-prime-diacetyllactosediamine (LacdiNAc, or LDN), a unique terminal structure of cell surface N-glycans (Ikehara et al., 2006 [PubMed 16728562]). |
| NA | ENSG00000002016 | RAD52 | RAD52 homolog, DNA repair protein | 5893 | The protein encoded by this gene shares similarity with Saccharomyces cerevisiae Rad52, a protein important for DNA double-strand break repair and homologous recombination. This gene product was shown to bind single-stranded DNA ends, and mediate the DNA-DNA interaction necessary for the annealing of complementary DNA strands. It was also found to interact with DNA recombination protein RAD51, which suggested its role in RAD51 related DNA recombination and repair. A pseudogene of this gene is present on chromosome 2. Alternative splicing results in multiple transcript variants. Additional alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000082805 | ERC1 | ELKS/RAB6-interacting/CAST family member 1 | 23085 | The protein encoded by this gene is a member of a family of RIM-binding proteins. RIMs are active zone proteins that regulate neurotransmitter release. This gene has been found fused to the receptor-type tyrosine kinase gene RET by gene rearrangement due to the translocation t(10;12)(q11;p13) in thyroid papillary carcinoma. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000006831 | ADIPOR2 | adiponectin receptor 2 | 79602 | The adiponectin receptors, ADIPOR1 (MIM 607945) and ADIPOR2, serve as receptors for globular and full-length adiponectin (MIM 605441) and mediate increased AMPK (see MIM 602739) and PPAR-alpha (PPARA; MIM 170998) ligand activities, as well as fatty acid oxidation and glucose uptake by adiponectin (Yamauchi et al., 2003 [PubMed 12802337]). |
| NA | ENSG00000151065 | DCP1B | decapping mRNA 1B | 196513 | This gene encodes a member of a family of proteins that function in removing the 5’ cap from mRNAs, which is a step in regulated mRNA decay. This protein localizes to cytoplasmic foci which are the site of mRNA breakdown and turnover. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000004478 | FKBP4 | FK506 binding protein 4 | 2288 | The protein encoded by this gene is a member of the immunophilin protein family, which play a role in immunoregulation and basic cellular processes involving protein folding and trafficking. This encoded protein is a cis-trans prolyl isomerase that binds to the immunosuppressants FK506 and rapamycin. It has high structural and functional similarity to FK506-binding protein 1A (FKBP1A), but unlike FKBP1A, this protein does not have immunosuppressant activity when complexed with FK506. It interacts with interferon regulatory factor-4 and plays an important role in immunoregulatory gene expression in B and T lymphocytes. This encoded protein is known to associate with phytanoyl-CoA alpha-hydroxylase. It can also associate with two heat shock proteins (hsp90 and hsp70) and thus may play a role in the intracellular trafficking of hetero-oligomeric forms of the steroid hormone receptors. This protein correlates strongly with adeno-associated virus type 2 vectors (AAV) resulting in a significant increase in AAV-mediated transgene expression in human cell lines. Thus this encoded protein is thought to have important implications for the optimal use of AAV vectors in human gene therapy. The human genome contains several non-transcribed pseudogenes similar to this gene. |
| NA | ENSG00000111203 | LOC100507424 | uncharacterized LOC100507424 | 100507424 | NA |
| NA | ENSG00000111203 | ITFG2 | integrin alpha FG-GAP repeat containing 2 | 55846 | NA |
| NA | ENSG00000111206 | FOXM1 | forkhead box M1 | 2305 | The protein encoded by this gene is a transcriptional activator involved in cell proliferation. The encoded protein is phosphorylated in M phase and regulates the expression of several cell cycle genes, such as cyclin B1 and cyclin D1. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000171792 | RHNO1 | RAD9-HUS1-RAD1 interacting nuclear orphan 1 | 83695 | NA |
| NA | ENSG00000078246 | TULP3 | tubby like protein 3 | 7289 | This gene encodes a member of the tubby gene family of bipartite transcription factors. Members of this family have been identified in plants, vertebrates, and invertebrates, and they share a conserved N-terminal transcription activation region and a conserved C-terminal DNA and phosphatidylinositol-phosphate binding region. The encoded protein binds to phosphoinositides in the plasma membrane via its C-terminal region and probably functions as a membrane-bound transcription regulator that translocates to the nucleus in response to phosphoinositide hydrolysis, for instance, induced by G-protein-coupled-receptor signaling. It plays an important role in neuronal development and function. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000197905 | TEAD4 | TEA domain transcription factor 4 | 7004 | This gene product is a member of the transcriptional enhancer factor (TEF) family of transcription factors, which contain the TEA/ATTS DNA-binding domain. It is preferentially expressed in the skeletal muscle, and binds to the M-CAT regulatory element found in promoters of muscle-specific genes to direct their gene expression. Alternatively spliced transcripts encoding distinct isoforms, some of which are translated through the use of a non-AUG (UUG) initiation codon, have been described for this gene. |
| NA | ENSG00000011105 | TSPAN9 | tetraspanin 9 | 10867 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. Alternatively spliced transcripts encoding the same protein have been identified. |
| NA | ENSG00000111224 | PARP11 | poly(ADP-ribose) polymerase family member 11 | 57097 | NA |
| NA | ENSG00000118971 | CCND2 | cyclin D2 | 894 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance through the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. This cyclin forms a complex with CDK4 or CDK6 and functions as a regulatory subunit of the complex, whose activity is required for cell cycle G1/S transition. This protein has been shown to interact with and be involved in the phosphorylation of tumor suppressor protein Rb. Knockout studies of the homologous gene in mouse suggest the essential roles of this gene in ovarian granulosa and germ cell proliferation. High level expression of this gene was observed in ovarian and testicular tumors. Mutations in this gene are associated with megalencephaly-polymicrogyria-polydactyly-hydrocephalus syndrome 3 (MPPH3). |
| NA | ENSG00000078237 | TIGAR | TP53 induced glycolysis regulatory phosphatase | 57103 | This gene is regulated as part of the p53 tumor suppressor pathway and encodes a protein with sequence similarity to the bisphosphate domain of the glycolytic enzyme that degrades fructose-2,6-bisphosphate. The protein functions by blocking glycolysis and directing the pathway into the pentose phosphate shunt. Expression of this protein also protects cells from DNA damaging reactive oxygen species and provides some protection from DNA damage-induced apoptosis. The 12p13.32 region that includes this gene is paralogous to the 11q13.3 region. |
| NA | ENSG00000047621 | C12orf4 | chromosome 12 open reading frame 4 | 57102 | NA |
| NA | ENSG00000111247 | RAD51AP1 | RAD51 associated protein 1 | 10635 | NA |
| NA | ENSG00000010219 | DYRK4 | dual specificity tyrosine phosphorylation regulated kinase 4 | 8798 | This gene encodes an enzyme that belongs to a conserved family of serine/threonine protein kinases. Members of this dual specificity kinase family are thought to function in the regulation of cell differentiation and proliferation, survival, and in development. Alternate splicing results in multiple transcript variants. Additional alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000139180 | NDUFA9 | NADH:ubiquinone oxidoreductase subunit A9 | 4704 | The encoded protein is a subunit of the hydrophobic protein fraction of the NADH:ubiquinone oxidoreductase (complex I), the first enzyme complex in the electron transport chain located in the inner mitochondrial membrane. A pseudogene has been identified on chromosome 12. |
| NA | ENSG00000185652 | NTF3 | neurotrophin 3 | 4908 | The protein encoded by this gene is a member of the neurotrophin family, that controls survival and differentiation of mammalian neurons. This protein is closely related to both nerve growth factor and brain-derived neurotrophic factor. It may be involved in the maintenance of the adult nervous system, and may affect development of neurons in the embryo when it is expressed in human placenta. NTF3-deficient mice generated by gene targeting display severe movement defects of the limbs. The mature peptide of this protein is identical in all mammals examined including human, pig, rat and mouse. |
| NA | ENSG00000008323 | PLEKHG6 | pleckstrin homology and RhoGEF domain containing G6 | 55200 | NA |
| NA | ENSG00000067182 | TNFRSF1A | tumor necrosis factor receptor superfamily member 1A | 7132 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This protein is one of the major receptors for the tumor necrosis factor-alpha. This receptor can activate NF-kappaB, mediate apoptosis, and function as a regulator of inflammation. Antiapoptotic protein BCL2-associated athanogene 4 (BAG4/SODD) and adaptor proteins TRADD and TRAF2 have been shown to interact with this receptor, and thus play regulatory roles in the signal transduction mediated by the receptor. Germline mutations of the extracellular domains of this receptor were found to be associated with the autosomal dominant periodic fever syndrome. The impaired receptor clearance is thought to be a mechanism of the disease. |
| NA | ENSG00000111319 | SCNN1A | sodium channel epithelial 1 alpha subunit | 6337 | Nonvoltage-gated, amiloride-sensitive, sodium channels control fluid and electrolyte transport across epithelia in many organs. These channels are heteromeric complexes consisting of 3 subunits: alpha, beta, and gamma. This gene encodes the alpha subunit, and mutations in this gene have been associated with pseudohypoaldosteronism type 1 (PHA1), a rare salt wasting disease resulting from target organ unresponsiveness to mineralocorticoids. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000111321 | LTBR | lymphotoxin beta receptor | 4055 | This gene encodes a member of the tumor necrosis factor receptor superfamily. The major ligands of this receptor include lymphotoxin alpha/beta and tumor necrosis factor ligand superfamily member 14. The encoded protein plays a role in signalling during the development of lymphoid and other organs, lipid metabolism, immune response, and programmed cell death. Activity of this receptor has also been linked to carcinogenesis. Alternatively spliced transcript variants encoding multiple isoforms have been observed. |
| NA | ENSG00000139193 | CD27 | CD27 molecule | 939 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This receptor is required for generation and long-term maintenance of T cell immunity. It binds to ligand CD70, and plays a key role in regulating B-cell activation and immunoglobulin synthesis. This receptor transduces signals that lead to the activation of NF-kappaB and MAPK8/JNK. Adaptor proteins TRAF2 and TRAF5 have been shown to mediate the signaling process of this receptor. CD27-binding protein (SIVA), a proapoptotic protein, can bind to this receptor and is thought to play an important role in the apoptosis induced by this receptor. |
| NA | ENSG00000139190 | VAMP1 | vesicle associated membrane protein 1 | 6843 | Synapotobrevins, syntaxins, and the synaptosomal-associated protein SNAP25 are the main components of a protein complex involved in the docking and/or fusion of synaptic vesicles with the presynaptic membrane. The protein encoded by this gene is a member of the vesicle-associated membrane protein (VAMP)/synaptobrevin family. Mutations in this gene are associated with autosomal dominant spastic ataxia 1. Multiple alternative splice variants have been described, but the full-length nature of some variants has not been defined. |
| NA | ENSG00000111639 | MRPL51 | mitochondrial ribosomal protein L51 | 51258 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. Pseudogenes corresponding to this gene are found on chromosomes 4p and 21q. |
| NA | ENSG00000010292 | NCAPD2 | non-SMC condensin I complex subunit D2 | 9918 | NA |
| NA | ENSG00000111640 | GAPDH | glyceraldehyde-3-phosphate dehydrogenase | 2597 | This gene encodes a member of the glyceraldehyde-3-phosphate dehydrogenase protein family. The encoded protein has been identified as a moonlighting protein based on its ability to perform mechanistically distinct functions. The product of this gene catalyzes an important energy-yielding step in carbohydrate metabolism, the reversible oxidative phosphorylation of glyceraldehyde-3-phosphate in the presence of inorganic phosphate and nicotinamide adenine dinucleotide (NAD). The encoded protein has additionally been identified to have uracil DNA glycosylase activity in the nucleus. Also, this protein contains a peptide that has antimicrobial activity against E. coli, P. aeruginosa, and C. albicans. Studies of a similar protein in mouse have assigned a variety of additional functions including nitrosylation of nuclear proteins, the regulation of mRNA stability, and acting as a transferrin receptor on the cell surface of macrophage. Many pseudogenes similar to this locus are present in the human genome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000010295 | IFFO1 | intermediate filament family orphan 1 | 25900 | This gene is a member of the intermediate filament family. Intermediate filaments are proteins which are primordial components of the cytoskeleton and nuclear envelope. The proteins encoded by the members of this gene family are evolutionarily and structurally related but have limited sequence homology, with the exception of the central rod domain. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000111641 | NOP2 | NOP2 nucleolar protein | 4839 | NA |
| NA | ENSG00000111642 | CHD4 | chromodomain helicase DNA binding protein 4 | 1108 | The product of this gene belongs to the SNF2/RAD54 helicase family. It represents the main component of the nucleosome remodeling and deacetylase complex and plays an important role in epigenetic transcriptional repression. Patients with dermatomyositis develop antibodies against this protein. Somatic mutations in this gene are associated with serous endometrial tumors. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000111653 | ING4 | inhibitor of growth family member 4 | 51147 | This gene encodes a tumor suppressor protein that contains a PHD-finger, which is a common motif in proteins involved in chromatin remodeling. This protein can bind TP53 and EP300/p300, a component of the histone acetyl transferase complex, suggesting its involvement in the TP53-dependent regulatory pathway. Multiple alternatively spliced transcript variants have been observed that encode distinct proteins. |
| NA | ENSG00000126746 | ZNF384 | zinc finger protein 384 | 171017 | This gene encodes a C2H2-type zinc finger protein, which may function as a transcription factor. This gene also contains long CAG trinucleotide repeats that encode consecutive glutamine residues. The protein appears to bind and regulate the promoters of the extracellular matrix genes MMP1, MMP3, MMP7 and COL1A1. Studies in mouse suggest that nuclear matrix transcription factors (NP/NMP4) may be part of a general mechanical pathway that couples cell construction and function during extracellular matrix remodeling. Alternative splicing results in multiple transcript variants. Recurrent rearrangements of this gene with the Ewing’s sarcoma gene, EWSR1 on chromosome 22, or with the TAF15 gene on chromosome 17, or with the TCF3 (E2A) gene on chromosome 19, have been observed in acute leukemia. A related pseudogene has been identified on chromosome 7. |
| NA | ENSG00000139200 | PIANP | PILR alpha associated neural protein | 196500 | This gene encodes a ligand for the paired immunoglobin-like type 2 receptor alpha, and so may be involved in immune regulation. Alternate splicing results in multiple transcript variants encoding different proteins. |
| NA | ENSG00000111652 | COPS7A | COP9 signalosome subunit 7A | 50813 | This gene encodes a component of the COP9 signalosome, an evolutionarily conserved multi-subunit protease that regulates the activity of the ubiquitin conjugation pathway. Alternatively spliced transcript variants that encode the same protein have been described. |
| NA | ENSG00000159335 | PTMS | parathymosin | 5763 | NA |
| NA | ENSG00000089692 | LAG3 | lymphocyte activating 3 | 3902 | Lymphocyte-activation protein 3 belongs to Ig superfamily and contains 4 extracellular Ig-like domains. The LAG3 gene contains 8 exons. The sequence data, exon/intron organization, and chromosomal localization all indicate a close relationship of LAG3 to CD4. |
| NA | ENSG00000010610 | CD4 | CD4 molecule | 920 | This gene encodes a membrane glycoprotein of T lymphocytes that interacts with major histocompatibility complex class II antigenes and is also a receptor for the human immunodeficiency virus. This gene is expressed not only in T lymphocytes, but also in B cells, macrophages, and granulocytes. It is also expressed in specific regions of the brain. The protein functions to initiate or augment the early phase of T-cell activation, and may function as an important mediator of indirect neuronal damage in infectious and immune-mediated diseases of the central nervous system. Multiple alternatively spliced transcript variants encoding different isoforms have been identified in this gene. |
| NA | ENSG00000250510 | GPR162 | G protein-coupled receptor 162 | 27239 | This gene was identified upon genomic analysis of a gene-dense region at human chromosome 12p13. It appears to be mainly expressed in the brain; however, its function is not known. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000111664 | GNB3 | G protein subunit beta 3 | 2784 | Heterotrimeric guanine nucleotide-binding proteins (G proteins), which integrate signals between receptors and effector proteins, are composed of an alpha, a beta, and a gamma subunit. These subunits are encoded by families of related genes. This gene encodes a beta subunit which belongs to the WD repeat G protein beta family. Beta subunits are important regulators of alpha subunits, as well as of certain signal transduction receptors and effectors. A single-nucleotide polymorphism (C825T) in this gene is associated with essential hypertension and obesity. This polymorphism is also associated with the occurrence of the splice variant GNB3-s, which appears to have increased activity. GNB3-s is an example of alternative splicing caused by a nucleotide change outside of the splice donor and acceptor sites. Alternative splicing results in multiple transcript variants. Additional alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000111665 | CDCA3 | cell division cycle associated 3 | 83461 | NA |
| NA | ENSG00000111667 | USP5 | ubiquitin specific peptidase 5 (isopeptidase T) | 8078 | Ubiquitin (see MIM 191339)-dependent proteolysis is a complex pathway of protein metabolism implicated in such diverse cellular functions as maintenance of chromatin structure, receptor function, and degradation of abnormal proteins. A late step of the process involves disassembly of the polyubiquitin chains on degraded proteins into ubiquitin monomers. USP5 disassembles branched polyubiquitin chains by a sequential exo mechanism, starting at the proximal end of the chain (Wilkinson et al., 1995 [PubMed 7578059]). |
| NA | ENSG00000111669 | TPI1 | triosephosphate isomerase 1 | 7167 | This gene encodes an enzyme, consisting of two identical proteins, which catalyzes the isomerization of glyceraldehydes 3-phosphate (G3P) and dihydroxy-acetone phosphate (DHAP) in glycolysis and gluconeogenesis. Mutations in this gene are associated with triosephosphate isomerase deficiency. Pseudogenes have been identified on chromosomes 1, 4, 6 and 7. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000111671 | SPSB2 | splA/ryanodine receptor domain and SOCS box containing 2 | 84727 | This gene encodes a member of a subfamily of proteins containing a central SPRY (repeats in splA and RyR) domain and a C-terminal suppressor of cytokine signaling (SOCS) box. This protein plays a role in cell signaling. This gene is present in a gene-rich cluster on chromosome 12p13 in the vicinity of the CD4 antigen and triosephosphate isomerase genes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000010626 | LRRC23 | leucine rich repeat containing 23 | 10233 | NA |
| NA | ENSG00000111676 | ATN1 | atrophin 1 | 1822 | Dentatorubral pallidoluysian atrophy (DRPLA) is a rare neurodegenerative disorder characterized by cerebellar ataxia, myoclonic epilepsy, choreoathetosis, and dementia. The disorder is related to the expansion from 7-23 copies to 49-75 copies of a trinucleotide repeat (CAG/CAA) within this gene. The encoded protein includes a serine repeat and a region of alternating acidic and basic amino acids, as well as the variable glutamine repeat. Alternative splicing results in two transcripts variants that encode the same protein. |
| NA | ENSG00000111678 | C12orf57 | chromosome 12 open reading frame 57 | 113246 | This gene is ubiquitously expressed in human tissues. It is required for development of the human corpus callosum. Mutations in this gene are associated with Temtamy syndrome (TEMTYS). Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000111679 | PTPN6 | protein tyrosine phosphatase, non-receptor type 6 | 5777 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. N-terminal part of this PTP contains two tandem Src homolog (SH2) domains, which act as protein phospho-tyrosine binding domains, and mediate the interaction of this PTP with its substrates. This PTP is expressed primarily in hematopoietic cells, and functions as an important regulator of multiple signaling pathways in hematopoietic cells. This PTP has been shown to interact with, and dephosphorylate a wide spectrum of phospho-proteins involved in hematopoietic cell signaling. Multiple alternatively spliced variants of this gene, which encode distinct isoforms, have been reported. |
| NA | ENSG00000126749 | EMG1 | EMG1 N1-specific pseudouridine methyltransferase | 10436 | This gene encodes an essential, conserved eukaryotic protein that methylates pseudouridine in 18S rRNA. The related protein in yeast is a component of the small subunit processome and is essential for biogenesis of the ribosomal 40S subunit. A mutation in this gene has been associated with Bowen-Conradi syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000215021 | PHB2 | prohibitin 2 | 11331 | NA |
| NA | ENSG00000111684 | LPCAT3 | lysophosphatidylcholine acyltransferase 3 | 10162 | NA |
| NA | ENSG00000182326 | C1S | complement component 1, s subcomponent | 716 | This gene encodes a serine protease, which is a major constituent of the human complement subcomponent C1. C1s associates with two other complement components C1r and C1q in order to yield the first component of the serum complement system. Defects in this gene are the cause of selective C1s deficiency. |
| NA | ENSG00000159403 | C1R | complement C1r subcomponent | 715 | NA |
| NA | ENSG00000139178 | C1RL | complement C1r subcomponent like | 51279 | NA |
| NA | ENSG00000139182 | CLSTN3 | calsyntenin 3 | 9746 | NA |
| NA | ENSG00000139197 | PEX5 | peroxisomal biogenesis factor 5 | 5830 | The product of this gene binds to the C-terminal PTS1-type tripeptide peroxisomal targeting signal (SKL-type) and plays an essential role in peroxisomal protein import. Peroxins (PEXs) are proteins that are essential for the assembly of functional peroxisomes. The peroxisome biogenesis disorders (PBDs) are a group of genetically heterogeneous autosomal recessive, lethal diseases characterized by multiple defects in peroxisome function. The peroxisomal biogenesis disorders are a heterogeneous group with at least 14 complementation groups and with more than 1 phenotype being observed in cases falling into particular complementation groups. Although the clinical features of PBD patients vary, cells from all PBD patients exhibit a defect in the import of one or more classes of peroxisomal matrix proteins into the organelle. Defects in this gene are a cause of neonatal adrenoleukodystrophy (NALD), a cause of Zellweger syndrome (ZWS) as well as may be a cause of infantile Refsum disease (IRD). Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000184344 | GDF3 | growth differentiation factor 3 | 9573 | The protein encoded by this gene is a member of the bone morphogenetic protein (BMP) family and the TGF-beta superfamily. This group of proteins is characterized by a polybasic proteolytic processing site which is cleaved to produce a mature protein containing seven conserved cysteine residues. The members of this family are regulators of cell growth and differentiation in both embryonic and adult tissues. |
| NA | ENSG00000187569 | DPPA3 | developmental pluripotency associated 3 | 359787 | This gene encodes a protein that in mice may function as a maternal factor during the preimplantation stage of development. In mice, this gene may play a role in transcriptional repression, cell division, and maintenance of cell pluripotentiality. In humans, related intronless loci are located on chromosomes 14 and X. |
| NA | ENSG00000111704 | NANOG | Nanog homeobox | 79923 | The protein encoded by this gene is a DNA binding homeobox transcription factor involved in embryonic stem (ES) cell proliferation, renewal, and pluripotency. The encoded protein can block ES cell differentiation and can also autorepress its own expression in differentiating cells. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000173262 | SLC2A14 | solute carrier family 2 member 14 | 144195 | Members of the glucose transporter (GLUT) family, including SLC2A14, are highly conserved integral membrane proteins that transport hexoses such as glucose and fructose into all mammalian cells. GLUTs show tissue and cell-type specific expression (Wu and Freeze, 2002 [PubMed 12504846]). |
| NA | ENSG00000059804 | SLC2A3 | solute carrier family 2 member 3 | 6515 | NA |
| NA | ENSG00000065970 | FOXJ2 | forkhead box J2 | 55810 | NA |
| NA | ENSG00000089818 | NECAP1 | NECAP endocytosis associated 1 | 25977 | This gene encodes a protein containing two characteristic WXXF motifs. The encoded protein localizes to clathrin-coated vesicles, where it binds components of the adapter protein complexes and aids in endocytosis. Loss of function of this gene results in early infantile epileptic encephalopathy-21. There is a pseudogene for this gene on chromosome 7. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166532 | RIMKLB | ribosomal modification protein rimK-like family member B | 57494 | NA |
| NA | ENSG00000166535 | A2ML1 | alpha-2-macroglobulin like 1 | 144568 | This gene encodes a member of the alpha-macroglobulin superfamily. The encoded protein is thought to be an N-glycosylated monomeric protein that acts as an inhibitor of several proteases. It has been shown to form covalent interactions with proteases, and has been reported as the p170 antigen recognized by autoantibodies in the autoimmune disease paraneoplastic pemphigus (PNP; PMID:20805888). Mutations in these gene have also been associated with some cases of Noonan syndrome (NS; PMID:24939586) as well as some cases of otitis media (PMID:26121085). Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000111752 | PHC1 | polyhomeotic homolog 1 | 1911 | This gene is a homolog of the Drosophila polyhomeotic gene, which is a member of the Polycomb group of genes. The gene product is a component of a multimeric protein complex that contains EDR2 and the vertebrate Polycomb protein BMH1. The gene product, the EDR2 protein, and the Drosophila polyhomeotic protein share 2 highly conserved domains, named homology domains I and II. These domains are involved in protein-protein interactions and may mediate heterodimerization of the protein encoded by this gene and the EDR2 protein. |
| NA | ENSG00000003056 | M6PR | mannose-6-phosphate receptor, cation dependent | 4074 | This gene encodes a member of the P-type lectin family. P-type lectins play a critical role in lysosome function through the specific transport of mannose-6-phosphate-containing acid hydrolases from the Golgi complex to lysosomes. The encoded protein functions as a homodimer and requires divalent cations for ligand binding. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. A pseudogene of this gene is located on the long arm of chromosome X. |
| NA | ENSG00000139187 | KLRG1 | killer cell lectin like receptor G1 | 10219 | Natural killer (NK) cells are lymphocytes that can mediate lysis of certain tumor cells and virus-infected cells without previous activation. They can also regulate specific humoral and cell-mediated immunity. The protein encoded by this gene belongs to the killer cell lectin-like receptor (KLR) family, which is a group of transmembrane proteins preferentially expressed in NK cells. Studies in mice suggested that the expression of this gene may be regulated by MHC class I molecules. Alternatively spliced transcript variants have been reported, but their full-length natures have not yet been determined. |
| NA | ENSG00000069493 | CLEC2D | C-type lectin domain family 2 member D | 29121 | This gene encodes a member of the natural killer cell receptor C-type lectin family. The encoded protein inhibits osteoclast formation and contains a transmembrane domain near the N-terminus as well as the C-type lectin-like extracellular domain. Several alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000139112 | GABARAPL1 | GABA type A receptor associated protein like 1 | 23710 | NA |
| NA | ENSG00000060140 | STYK1 | serine/threonine/tyrosine kinase 1 | 55359 | Receptor protein tyrosine kinases, like STYK1, play important roles in diverse cellular and developmental processes, such as cell proliferation, differentiation, and survival (Liu et al., 2004 [PubMed 15150103]). |
| NA | ENSG00000060138 | YBX3 | Y-box binding protein 3 | 8531 | NA |
| NA | ENSG00000139083 | ETV6 | ETS variant 6 | 2120 | This gene encodes an ETS family transcription factor. The product of this gene contains two functional domains: a N-terminal pointed (PNT) domain that is involved in protein-protein interactions with itself and other proteins, and a C-terminal DNA-binding domain. Gene knockout studies in mice suggest that it is required for hematopoiesis and maintenance of the developing vascular network. This gene is known to be involved in a large number of chromosomal rearrangements associated with leukemia and congenital fibrosarcoma. |
| NA | ENSG00000121380 | BCL2L14 | BCL2 like 14 | 79370 | The protein encoded by this gene belongs to the BCL2 protein family. BCL2 family members form hetero- or homodimers and act as anti- or pro-apoptotic regulators that are involved in a wide variety of cellular activities. Overexpression of this gene has been shown to induce apoptosis in cells. Three alternatively spliced transcript variants encoding two distinct isoforms have been reported for this gene. |
| NA | ENSG00000070018 | LRP6 | LDL receptor related protein 6 | 4040 | This gene encodes a member of the low density lipoprotein (LDL) receptor gene family. LDL receptors are transmembrane cell surface proteins involved in receptor-mediated endocytosis of lipoprotein and protein ligands. The protein encoded by this gene functions as a receptor or, with Frizzled, a co-receptor for Wnt and thereby transmits the canonical Wnt/beta-catenin signaling cascade. Through its interaction with the Wnt/beta-catenin signaling cascade this gene plays a role in the regulation of cell differentiation, proliferation, and migration and the development of many cancer types. This protein undergoes gamma-secretase dependent RIP- (regulated intramembrane proteolysis) processing but the precise locations of the cleavage sites have not been determined. |
| NA | ENSG00000111261 | MANSC1 | MANSC domain containing 1 | 54682 | NA |
| NA | ENSG00000165714 | BORCS5 | BLOC-1 related complex subunit 5 | 118426 | NA |
| NA | ENSG00000111266 | DUSP16 | dual specificity phosphatase 16 | 80824 | This gene encodes a mitogen-activated protein kinase phosphatase that is a member of the dual specificity protein phosphatase subfamily. These phosphatases inactivate their target kinases by dephosphorylating both the phosphoserine/threonine and phosphotyrosine residues. The encoded protein specifically regulates the c-Jun amino-terminal kinase (JNK) and extracellular signal-regulated kinase (ERK) pathways. |
| NA | ENSG00000111269 | CREBL2 | cAMP responsive element binding protein like 2 | 1389 | cAMP response element (CRE)-binding protein-like-2 (CREBL2) was identified in a search to find genes in a commonly deleted region on chromosome 12p13 flanked by ETV6 and CDKN1B genes, frequently associated with hematopoietic malignancies, as well as breast, non-small-cell lung and ovarian cancers. CREBL2 shares a 41% identity with CRE-binding protein (CREB) over a 48-base long region which encodes the bZip domain of CREB. The bZip domain consists of about 30 amino acids rich in basic residues involved in DNA binding, followed by a leucine zipper motif involved in protein dimerization. This suggests that CREBL2 encodes a protein with DNA binding capabilities. The occurance of CREBL2 deletion in malignancy suggests that CREBL2 may act as a tumor suppressor gene. |
| NA | ENSG00000183150 | GPR19 | G protein-coupled receptor 19 | 2842 | NA |
| NA | ENSG00000111276 | CDKN1B | cyclin-dependent kinase inhibitor 1B | 1027 | This gene encodes a cyclin-dependent kinase inhibitor, which shares a limited similarity with CDK inhibitor CDKN1A/p21. The encoded protein binds to and prevents the activation of cyclin E-CDK2 or cyclin D-CDK4 complexes, and thus controls the cell cycle progression at G1. The degradation of this protein, which is triggered by its CDK dependent phosphorylation and subsequent ubiquitination by SCF complexes, is required for the cellular transition from quiescence to the proliferative state. Mutations in this gene are associated with multiple endocrine neoplasia type IV (MEN4). |
| NA | ENSG00000084444 | FAM234B | family with sequence similarity 234 member B | 57613 | NA |
| NA | ENSG00000273079 | GRIN2B | glutamate ionotropic receptor NMDA type subunit 2B | 2904 | N-methyl-D-aspartate (NMDA) receptors are a class of ionotropic glutamate receptors. NMDA receptor channel has been shown to be involved in long-term potentiation, an activity-dependent increase in the efficiency of synaptic transmission thought to underlie certain kinds of memory and learning. NMDA receptor channels are heteromers composed of three different subunits: NR1 (GRIN1), NR2 (GRIN2A, GRIN2B, GRIN2C, or GRIN2D) and NR3 (GRIN3A or GRIN3B). The NR2 subunit acts as the agonist binding site for glutamate. This receptor is the predominant excitatory neurotransmitter receptor in the mammalian brain. |
| NA | ENSG00000121316 | PLBD1 | phospholipase B domain containing 1 | 79887 | NA |
| NA | ENSG00000070019 | GUCY2C | guanylate cyclase 2C | 2984 | NA |
| NA | ENSG00000197837 | HIST4H4 | histone cluster 4, H4 | 121504 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H4 family. Transcripts from this gene lack polyA tails; instead, they contain a palindromic termination element. |
| NA | ENSG00000246705 | H2AFJ | H2A histone family member J | 55766 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene is located on chromosome 12 and encodes a replication-independent histone that is a variant H2A histone. The protein is divergent at the C-terminus compared to the consensus H2A histone family member. This gene also encodes an antimicrobial peptide with antibacterial and antifungal activity. |
| NA | ENSG00000084463 | WBP11 | WW domain binding protein 11 | 51729 | This gene encodes a nuclear protein, which colocalizes with mRNA splicing factors and intermediate filament-containing perinuclear networks. This protein has 95% amino acid sequence identity to the mouse Wbp11 protein. It contains two proline-rich regions that bind to the WW domain of Npw38, a nuclear protein, and thus this protein is also called Npw38-binding protein NpwBP. The Npw38-NpwBP complex may function as a component of an mRNA factory in the nucleus. |
| NA | ENSG00000182993 | C12orf60 | chromosome 12 open reading frame 60 | 144608 | NA |
| NA | ENSG00000151490 | PTPRO | protein tyrosine phosphatase, receptor type O | 5800 | This gene encodes a member of the R3 subtype family of receptor-type protein tyrosine phosphatases. These proteins are localized to the apical surface of polarized cells and may have tissue-specific functions through activation of Src family kinases. This gene contains two distinct promoters, and alternatively spliced transcript variants encoding multiple isoforms have been observed. The encoded proteins may have multiple isoform-specific and tissue-specific functions, including the regulation of osteoclast production and activity, inhibition of cell proliferation and facilitation of apoptosis. This gene is a candidate tumor suppressor, and decreased expression of this gene has been observed in several types of cancer. |
| NA | ENSG00000151491 | EPS8 | epidermal growth factor receptor pathway substrate 8 | 2059 | This gene encodes a member of the EPS8 family. This protein contains one PH domain and one SH3 domain. It functions as part of the EGFR pathway, though its exact role has not been determined. Highly similar proteins in other organisms are involved in the transduction of signals from Ras to Rac and growth factor-mediated actin remodeling. Alternate transcriptional splice variants of this gene have been observed but have not been thoroughly characterized. |
| NA | ENSG00000023734 | STRAP | serine/threonine kinase receptor associated protein | 11171 | NA |
| NA | ENSG00000008394 | MGST1 | microsomal glutathione S-transferase 1 | 4257 | The MAPEG (Membrane Associated Proteins in Eicosanoid and Glutathione metabolism) family consists of six human proteins, two of which are involved in the production of leukotrienes and prostaglandin E, important mediators of inflammation. Other family members, demonstrating glutathione S-transferase and peroxidase activities, are involved in cellular defense against toxic, carcinogenic, and pharmacologically active electrophilic compounds. This gene encodes a protein that catalyzes the conjugation of glutathione to electrophiles and the reduction of lipid hydroperoxides. This protein is localized to the endoplasmic reticulum and outer mitochondrial membrane where it is thought to protect these membranes from oxidative stress. Several transcript variants, some non-protein coding and some protein coding, have been found for this gene. |
| NA | ENSG00000052126 | PLEKHA5 | pleckstrin homology domain containing A5 | 54477 | NA |
| NA | ENSG00000139154 | AEBP2 | AE binding protein 2 | 121536 | NA |
| NA | ENSG00000172572 | PDE3A | phosphodiesterase 3A | 5139 | This gene encodes a member of the cGMP-inhibited cyclic nucleotide phosphodiesterase (cGI-PDE) family. cGI-PDE enzymes hydrolyze both cAMP and cGMP, and play critical roles in many cellular processes by regulating the amplitude and duration of intracellular cyclic nucleotide signals. The encoded protein mediates platelet aggregation and also plays important roles in cardiovascular function by regulating vascular smooth muscle contraction and relaxation. Inhibitors of the encoded protein may be effective in treating congestive heart failure. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000084453 | SLCO1A2 | solute carrier organic anion transporter family member 1A2 | 6579 | This gene encodes a sodium-independent transporter which mediates cellular uptake of organic ions in the liver. Its substrates include bile acids, bromosulphophthalein, and some steroidal compounds. The protein is a member of the SLC21A family of solute carriers. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000121350 | PYROXD1 | pyridine nucleotide-disulphide oxidoreductase domain 1 | 79912 | NA |
| NA | ENSG00000004700 | RECQL | RecQ like helicase | 5965 | The protein encoded by this gene is a member of the RecQ DNA helicase family. DNA helicases are enzymes involved in various types of DNA repair, including mismatch repair, nucleotide excision repair and direct repair. Some members of this family are associated with genetic disorders with predisposition to malignancy and chromosomal instability. The biological function of this helicase has not yet been determined. Two alternatively spliced transcripts, which encode the same isoform but differ in their 5’ and 3’ UTRs, have been described. |
| NA | ENSG00000111711 | GOLT1B | golgi transport 1B | 51026 | NA |
| NA | ENSG00000111716 | LDHB | lactate dehydrogenase B | 3945 | This gene encodes the B subunit of lactate dehydrogenase enzyme, which catalyzes the interconversion of pyruvate and lactate with concomitant interconversion of NADH and NAD+ in a post-glycolysis process. Alternatively spliced transcript variants have been found for this gene. Recent studies have shown that a C-terminally extended isoform is produced by use of an alternative in-frame translation termination codon via a stop codon readthrough mechanism, and that this isoform is localized in the peroxisomes. Mutations in this gene are associated with lactate dehydrogenase B deficiency. Pseudogenes have been identified on chromosomes X, 5 and 13. |
| NA | ENSG00000111728 | ST8SIA1 | ST8 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase 1 | 6489 | Gangliosides are membrane-bound glycosphingolipids containing sialic acid. Ganglioside GD3 is known to be important for cell adhesion and growth of cultured malignant cells. The protein encoded by this gene is a type II membrane protein that catalyzes the transfer of sialic acid from CMP-sialic acid to GM3 to produce gangliosides GD3 and GT3. The encoded protein may be found in the Golgi apparatus and is a member of glycosyltransferase family 29. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000111731 | C2CD5 | C2 calcium-dependent domain containing 5 | 9847 | NA |
| NA | ENSG00000060982 | BCAT1 | branched chain amino acid transaminase 1 | 586 | This gene encodes the cytosolic form of the enzyme branched-chain amino acid transaminase. This enzyme catalyzes the reversible transamination of branched-chain alpha-keto acids to branched-chain L-amino acids essential for cell growth. Two different clinical disorders have been attributed to a defect of branched-chain amino acid transamination: hypervalinemia and hyperleucine-isoleucinemia. As there is also a gene encoding a mitochondrial form of this enzyme, mutations in either gene may contribute to these disorders. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000205707 | LYRM5 | LYR motif containing 5 | 144363 | NA |
| NA | ENSG00000133703 | KRAS | Kirsten rat sarcoma viral oncogene homolog | 3845 | This gene, a Kirsten ras oncogene homolog from the mammalian ras gene family, encodes a protein that is a member of the small GTPase superfamily. A single amino acid substitution is responsible for an activating mutation. The transforming protein that results is implicated in various malignancies, including lung adenocarcinoma, mucinous adenoma, ductal carcinoma of the pancreas and colorectal carcinoma. Alternative splicing leads to variants encoding two isoforms that differ in the C-terminal region. |
| NA | ENSG00000152936 | LMNTD1 | lamin tail domain containing 1 | 160492 | NA |
| NA | ENSG00000123094 | RASSF8 | Ras association domain family member 8 | 11228 | This gene encodes a member of the Ras-assocation domain family (RASSF) of tumor suppressor proteins. This gene is essential for maintaining adherens junction function in epithelial cells and has a role in epithelial cell migration. It is a lung tumor suppressor gene candidate. A chromosomal translocation t(12;22)(p11.2;q13.3) leading to the fusion of this gene and the FBLN1 gene is found in a complex type of synpolydactyly. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000123104 | ITPR2 | inositol 1,4,5-trisphosphate receptor type 2 | 3709 | The protein encoded by this gene belongs to the inositol 1,4,5-triphosphate receptor family, whose members are second messenger intracellular calcium release channels. These proteins mediate a rise in cytoplasmic calcium in response to receptor activated production of inositol triphosphate. Inositol triphosphate receptor-mediated signaling is involved in many processes including cell migration, cell division, smooth muscle contraction, and neuronal signaling. This protein is a type 2 receptor that consists of a cytoplasmic amino-terminus that binds inositol triphosphate, six membrane-spanning helices that contribute to the ion pore, and a short cytoplasmic carboxy-terminus. A mutation in this gene has been associated with anhidrosis, suggesting that intracellular calcium release mediated by this protein is required for eccrine sweat production. |
| NA | ENSG00000064102 | ASUN | asunder, spermatogenesis regulator | 55726 | NA |
| NA | ENSG00000211455 | STK38L | serine/threonine kinase 38 like | 23012 | NA |
| NA | ENSG00000029153 | ARNTL2 | aryl hydrocarbon receptor nuclear translocator like 2 | 56938 | This gene encodes a basic helix-loop-helix transcription factor belonging to the PAS (PER, ARNT, SIM) superfamily. The PAS proteins play important roles in adaptation to low atmospheric and cellular oxygen levels, exposure to certain environmental pollutants, and diurnal oscillations in light and temperature. This protein forms a transcriptionally active heterodimer with the circadian CLOCK protein, the structurally related MOP4, and hypoxia-inducible factors, such as HIF1alpha. Consistent with its role as a biologically relevant partner of circadian and hypoxia factors, this protein is coexpressed in regions of the brain such as the thalamus, hypothalamus, and amygdala. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000087448 | KLHL42 | kelch like family member 42 | 57542 | NA |
| NA | ENSG00000123106 | CCDC91 | coiled-coil domain containing 91 | 55297 | NA |
| NA | ENSG00000064763 | FAR2 | fatty acyl-CoA reductase 2 | 55711 | This gene belongs to the short chain dehydrogenase/reductase superfamily. It encodes a reductase enzyme involved in the first step of wax biosynthesis wherein fatty acids are converted to fatty alcohols. The encoded peroxisomal protein utilizes saturated fatty acids of 16 or 18 carbons as preferred substrates. Alternatively spliced transcript variants have been observed for this gene. Related pseudogenes have been identified on chromosomes 2, 14 and 22. |
| NA | ENSG00000087502 | ERGIC2 | ERGIC and golgi 2 | 51290 | ERGIC2, or PTX1, is a ubiquitously expressed nuclear protein that is downregulated in prostate carcinoma (Kwok et al., 2001 [PubMed 11445006]). |
| NA | ENSG00000133687 | TMTC1 | transmembrane and tetratricopeptide repeat containing 1 | 83857 | NA |
| NA | ENSG00000133704 | IPO8 | importin 8 | 10526 | The importin-alpha/beta complex and the GTPase Ran mediate nuclear import of proteins with a classical nuclear localization signal. The protein encoded by this gene is a member of a class of approximately 20 potential Ran targets that share a sequence motif related to the Ran-binding site of importin-beta. This protein binds to the nuclear pore complex and, along with RanGTP and RANBP1, inhibits the GAP stimulation of the Ran GTPase. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000110888 | CAPRIN2 | caprin family member 2 | 65981 | The protein encoded by this gene may regulate the transport of mRNA. It may play a role in the differentiation of erythroblasts. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000110900 | TSPAN11 | tetraspanin 11 | 441631 | NA |
| NA | ENSG00000013573 | DDX11 | DEAD/H-box helicase 11 | 1663 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which is an enzyme that possesses both ATPase and DNA helicase activities. This gene is a homolog of the yeast CHL1 gene, and may function to maintain chromosome transmission fidelity and genome stability. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000139146 | FAM60A | family with sequence similarity 60 member A | 58516 | NA |
| NA | ENSG00000170456 | DENND5B | DENN domain containing 5B | 160518 | NA |
| NA | ENSG00000139160 | ETFBKMT | electron transfer flavoprotein beta subunit lysine methyltransferase | 254013 | NA |
| NA | ENSG00000151743 | AMN1 | antagonist of mitotic exit network 1 homolog | 196394 | NA |
| NA | ENSG00000188375 | H3F3C | H3 histone, family 3C | 440093 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene contains introns and its mRNA is polyadenylated, unlike most histone genes. The protein encoded by this gene is a replication-independent histone that is a member of the histone H3 family. |
| NA | ENSG00000174718 | KIAA1551 | KIAA1551 | 55196 | NA |
| NA | ENSG00000151746 | BICD1 | bicaudal D homolog 1 (Drosophila) | 636 | This gene is one of two human homologs of Drosophila bicaudal-D. It has been implicated in COPI-independent membrane transport from the Golgi apparatus to the endoplasmic reticulum. Two alternative splice variants have been described. Other alternative splice variants that encode different protein isoforms have been described but their full-length nature has not been determined. |
| NA | ENSG00000139132 | FGD4 | FYVE, RhoGEF and PH domain containing 4 | 121512 | This gene encodes a protein that is involved in the regulation of the actin cytoskeleton and cell shape. This protein contains an actin filament-binding domain, which together with its Dbl homology domain and one of its pleckstrin homology domains, can form microspikes. This protein can activate MAPK8 independently of the actin filament-binding domain, and it is also involved in the activation of CDC42 via the exchange of bound GDP for free GTP. The activation of CDC42 also enables this protein to play a role in mediating the cellular invasion of Cryptosporidium parvum, an intracellular parasite that infects the gastrointestinal tract. Mutations in this gene can cause Charcot-Marie-Tooth disease type 4H (CMT4H), a disorder of the peripheral nervous system. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000087470 | DNM1L | dynamin 1-like | 10059 | This gene encodes a member of the dynamin superfamily of GTPases. The encoded protein mediates mitochondrial and peroxisomal division, and is involved in developmentally regulated apoptosis and programmed necrosis. Dysfunction of this gene is implicated in several neurological disorders, including Alzheimer’s disease. Mutations in this gene are associated with the autosomal dominant disorder, encephalopathy, lethal, due to defective mitochondrial and peroxisomal fission (EMPF). Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000139131 | YARS2 | tyrosyl-tRNA synthetase 2 | 51067 | This gene encodes a mitochondrial protein that catalyzes the attachment of tyrosine to tRNA(Tyr). Mutations in this gene are associated with myopathy with lactic acidosis and sideroblastic anemia type 2 (MLASA2). |
| NA | ENSG00000057294 | PKP2 | plakophilin 2 | 5318 | This gene encodes a member of the arm-repeat (armadillo) and plakophilin gene families. Plakophilin proteins contain numerous armadillo repeats, localize to cell desmosomes and nuclei, and participate in linking cadherins to intermediate filaments in the cytoskeleton. This gene product may regulate the signaling activity of beta-catenin. Two alternately spliced transcripts encoding two protein isoforms have been identified. A processed pseudogene with high similarity to this locus has been mapped to chromosome 12p13. |
| NA | ENSG00000110975 | SYT10 | synaptotagmin 10 | 341359 | NA |
| NA | ENSG00000139133 | ALG10 | ALG10, alpha-1,2-glucosyltransferase | 84920 | This gene encodes a membrane-associated protein that adds the third glucose residue to the lipid-linked oligosaccharide precursor for N-linked glycosylation. That is, it transfers the terminal glucose from dolichyl phosphate glucose (Dol-P-Glc) onto the lipid-linked oligosaccharide Glc2Man9GlcNAc(2)-PP-Dol. The rat protein homolog was shown to specifically modulate the gating function of the rat neuronal ether-a-go-go (EAG) potassium ion channel. |
| NA | ENSG00000139117 | CPNE8 | copine 8 | 144402 | Calcium-dependent membrane-binding proteins may regulate molecular events at the interface of the cell membrane and cytoplasm. This gene is one of several genes that encode a calcium-dependent protein containing two N-terminal type II C2 domains and an integrin A domain-like sequence in the C-terminus. |
| NA | ENSG00000151229 | SLC2A13 | solute carrier family 2 member 13 | 114134 | NA |
| NA | ENSG00000018236 | CNTN1 | contactin 1 | 1272 | The protein encoded by this gene is a member of the immunoglobulin superfamily. It is a glycosylphosphatidylinositol (GPI)-anchored neuronal membrane protein that functions as a cell adhesion molecule. It may play a role in the formation of axon connections in the developing nervous system. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000151233 | GXYLT1 | glucoside xylosyltransferase 1 | 283464 | GXYLT1 is a xylosyltransferase (EC 2.4.2.-) that adds the first xylose to O-glucose-modified residues in the epidermal growth factor (EGF; MIM 131530) repeats of proteins such as NOTCH1 (MIM 190198) (Sethi et al., 2010 [PubMed 19940119]). |
| NA | ENSG00000015153 | YAF2 | YY1 associated factor 2 | 10138 | This gene encodes a zinc finger containing protein that functions in the regulation of transcription. This protein was identified as an interacting partner of transcriptional repressor protein Yy1, and also interacts with other transcriptional regulators, including Myc and Polycomb. This protein can promote proteolysis of Yy1. Multiple alternatively spliced transcript variants have been found. |
| NA | ENSG00000134283 | PPHLN1 | periphilin 1 | 51535 | The protein encoded by this gene is one of the several proteins that become sequentially incorporated into the cornified cell envelope during the terminal differentiation of keratinocyte at the outer layers of epidermis. This protein interacts with periplakin, which is known as a precursor of the cornified cell envelope. The cellular localization pattern and insolubility of this protein suggest that it may play a role in epithelial differentiation and contribute to epidermal integrity and barrier formation. Multiple alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000139168 | ZCRB1 | zinc finger CCHC-type and RNA binding motif containing 1 | 85437 | Pre-mRNA splicing is catalyzed by the spliceosome. U12-type spliceosome binds U12-type pre-mRNAs and recognizes the 5’ splice site and branch-point sequence. U11 and U12 snRNPs are components of U12-type spliceosome and function as a molecular bridge connecting both ends of the intron. The protein encoded by this gene contains a RNA recognition motif. It was identified as one of the protein components of U11/U12 snRNPs. This protein and many other U11/U12 snRNP proteins are highly conserved in organisms known to contain U12-type introns. These proteins have been shown to be essential for cell viability, suggesting the key roles in U12-type splicing. |
| NA | ENSG00000139174 | PRICKLE1 | prickle planar cell polarity protein 1 | 144165 | This gene encodes a nuclear receptor that may be a negative regulator of the Wnt/beta-catenin signaling pathway. The encoded protein localizes to the nuclear membrane and has been implicated in the nuclear trafficking of the transcription repressors REST/NRSF and REST4. Mutations in this gene have been linked to progressive myoclonus epilepsy. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 3. |
| NA | ENSG00000198001 | IRAK4 | interleukin 1 receptor associated kinase 4 | 51135 | This gene encodes a kinase that activates NF-kappaB in both the Toll-like receptor (TLR) and T-cell receptor (TCR) signaling pathways. The protein is essential for most innate immune responses. Mutations in this gene result in IRAK4 deficiency and recurrent invasive pneumococcal disease. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000151239 | TWF1 | twinfilin actin binding protein 1 | 5756 | This gene encodes twinfilin, an actin monomer-binding protein conserved from yeast to mammals. Studies of the mouse counterpart suggest that this protein may be an actin monomer-binding protein, and its localization to cortical G-actin-rich structures may be regulated by the small GTPase RAC1. |
| NA | ENSG00000177119 | ANO6 | anoctamin 6 | 196527 | This gene encodes a multi-pass transmembrane protein that belongs to the anoctamin family. This protein is an essential component for the calcium-dependent exposure of phosphatidylserine on the cell surface. The scrambling of phospholipid occurs in various biological systems, such as when blood platelets are activated, they expose phosphatidylserine to trigger the clotting system. Mutations in this gene are associated with Scott syndrome. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139218 | SCAF11 | SR-related CTD associated factor 11 | 9169 | NA |
| NA | ENSG00000111371 | SLC38A1 | solute carrier family 38 member 1 | 81539 | Amino acid transporters play essential roles in the uptake of nutrients, production of energy, chemical metabolism, detoxification, and neurotransmitter cycling. SLC38A1 is an important transporter of glutamine, an intermediate in the detoxification of ammonia and the production of urea. Glutamine serves as a precursor for the synaptic transmitter, glutamate (Gu et al., 2001 [PubMed 11325958]). |
| NA | ENSG00000134294 | SLC38A2 | solute carrier family 38 member 2 | 54407 | NA |
| NA | ENSG00000139209 | SLC38A4 | solute carrier family 38 member 4 | 55089 | SLC38A4 is found predominantly in liver and transports both cationic and neutral amino acids. The transport of cationic amino acids by SLC38A4 is Na(+) and pH independent, while the transport of neutral amino acids is Na(+) and pH dependent (Hatanaka et al., 2001 [PubMed 11342143]). |
| NA | ENSG00000139211 | AMIGO2 | adhesion molecule with Ig-like domain 2 | 347902 | NA |
| NA | ENSG00000179715 | PCED1B | PC-esterase domain containing 1B | 91523 | This gene encodes a protein that belongs to the GDSL/SGNH-like acyl-esterase family. Members of this family are hydrolases thought to function in modification of biopolymers on the cell surface. Alternate splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000005175 | RPAP3 | RNA polymerase II associated protein 3 | 79657 | This gene encodes an RNA polymerase II-associated protein. The encoded protein may function in transcriptional regulation and may also regulate apoptosis. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000079337 | RAPGEF3 | Rap guanine nucleotide exchange factor 3 | 10411 | NA |
| NA | ENSG00000211584 | SLC48A1 | solute carrier family 48 member 1 | 55652 | NA |
| NA | ENSG00000061273 | HDAC7 | histone deacetylase 7 | 51564 | Histones play a critical role in transcriptional regulation, cell cycle progression, and developmental events. Histone acetylation/deacetylation alters chromosome structure and affects transcription factor access to DNA. The protein encoded by this gene has sequence homology to members of the histone deacetylase family. This gene is orthologous to mouse HDAC7 gene whose protein promotes repression mediated via the transcriptional corepressor SMRT. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139219 | COL2A1 | collagen type II alpha 1 | 1280 | This gene encodes the alpha-1 chain of type II collagen, a fibrillar collagen found in cartilage and the vitreous humor of the eye. Mutations in this gene are associated with achondrogenesis, chondrodysplasia, early onset familial osteoarthritis, SED congenita, Langer-Saldino achondrogenesis, Kniest dysplasia, Stickler syndrome type I, and spondyloepimetaphyseal dysplasia Strudwick type. In addition, defects in processing chondrocalcin, a calcium binding protein that is the C-propeptide of this collagen molecule, are also associated with chondrodysplasia. There are two transcripts identified for this gene. |
| NA | ENSG00000079387 | SENP1 | SUMO1/sentrin specific peptidase 1 | 29843 | This gene encodes a cysteine protease that specifically targets members of the small ubiquitin-like modifier (SUMO) protein family. This protease regulates SUMO pathways by deconjugating sumoylated proteins. This protease also functions to process the precursor SUMO proteins into their mature form. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000152556 | PFKM | phosphofructokinase, muscle | 5213 | Three phosphofructokinase isozymes exist in humans: muscle, liver and platelet. These isozymes function as subunits of the mammalian tetramer phosphofructokinase, which catalyzes the phosphorylation of fructose-6-phosphate to fructose-1,6-bisphosphate. Tetramer composition varies depending on tissue type. This gene encodes the muscle-type isozyme. Mutations in this gene have been associated with glycogen storage disease type VII, also known as Tarui disease. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000177981 | ASB8 | ankyrin repeat and SOCS box containing 8 | 140461 | NA |
| NA | ENSG00000167528 | ZNF641 | zinc finger protein 641 | 121274 | NA |
| NA | ENSG00000139620 | KANSL2 | KAT8 regulatory NSL complex subunit 2 | 54934 | NA |
| NA | ENSG00000174233 | ADCY6 | adenylate cyclase 6 | 112 | This gene encodes a member of the adenylyl cyclase family of proteins, which are required for the synthesis of cyclic AMP. All members of this family have an intracellular N-terminus, a tandem repeat of six transmembrane domains separated by a cytoplasmic loop, and a C-terminal cytoplasmic domain. The two cytoplasmic regions bind ATP and form the catalytic core of the protein. Adenylyl cyclases are important effectors of transmembrane signaling pathways and are regulated by the activity of G protein coupled receptor signaling. This protein belongs to a small subclass of adenylyl cyclase proteins that are functionally related and are inhibited by protein kinase A, calcium ions and nitric oxide. A mutation in this gene is associated with arthrogryposis multiplex congenita. |
| NA | ENSG00000167535 | CACNB3 | calcium voltage-gated channel auxiliary subunit beta 3 | 784 | This gene encodes a regulatory beta subunit of the voltage-dependent calcium channel. Beta subunits are composed of five domains, which contribute to the regulation of surface expression and gating of calcium channels and may also play a role in the regulation of transcription factors and calcium transport. |
| NA | ENSG00000174243 | DDX23 | DEAD-box helicase 23 | 9416 | This gene encodes a member of the DEAD box protein family. DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. The protein encoded by this gene is a component of the U5 snRNP complex; it may facilitate conformational changes in the spliceosome during nuclear pre-mRNA splicing. An alternatively spliced transcript variant has been found for this gene, but its biological validity has not been determined. |
| NA | ENSG00000172602 | RND1 | Rho family GTPase 1 | 27289 | This gene encodes a protein that belongs to the Rho GTPase family. Members of this family regulate the organization of the actin cytoskeleton in response to extracellular growth factors. A similar protein in rat interacts with a microtubule regulator to control axon extension. |
| NA | ENSG00000272822 | RP11-302B13.5 | NA | ENSG00000272822 | NA |
| NA | ENSG00000134285 | FKBP11 | FK506 binding protein 11 | 51303 | FKBP11 belongs to the FKBP family of peptidyl-prolyl cis/trans isomerases, which catalyze the folding of proline-containing polypeptides. The peptidyl-prolyl isomerase activity of FKBP proteins is inhibited by the immunosuppressant compounds FK506 and rapamycin (Rulten et al., 2006 [PubMed 16596453]). |
| NA | ENSG00000134287 | ARF3 | ADP ribosylation factor 3 | 377 | ADP-ribosylation factor 3 (ARF3) is a member of the human ARF gene family. These genes encode small guanine nucleotide-binding proteins that stimulate the ADP-ribosyltransferase activity of cholera toxin and play a role in vesicular trafficking and as activators of phospholipase D. The gene products include 6 ARF proteins and 11 ARF-like proteins and constitute 1 family of the RAS superfamily. The ARF proteins are categorized as class I (ARF1, ARF2,and ARF3), class II (ARF4 and ARF5) and class III (ARF6) and members of each class share a common gene organization. The ARF3 gene contains five exons and four introns. |
| NA | ENSG00000181929 | PRKAG1 | protein kinase AMP-activated non-catalytic subunit gamma 1 | 5571 | The protein encoded by this gene is a regulatory subunit of the AMP-activated protein kinase (AMPK). AMPK is a heterotrimer consisting of an alpha catalytic subunit, and non-catalytic beta and gamma subunits. AMPK is an important energy-sensing enzyme that monitors cellular energy status. In response to cellular metabolic stresses, AMPK is activated, and thus phosphorylates and inactivates acetyl-CoA carboxylase (ACC) and beta-hydroxy beta-methylglutaryl-CoA reductase (HMGCR), key enzymes involved in regulating de novo biosynthesis of fatty acid and cholesterol. This subunit is one of the gamma regulatory subunits of AMPK. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000167548 | KMT2D | lysine methyltransferase 2D | 8085 | The protein encoded by this gene is a histone methyltransferase that methylates the Lys-4 position of histone H3. The encoded protein is part of a large protein complex called ASCOM, which has been shown to be a transcriptional regulator of the beta-globin and estrogen receptor genes. Mutations in this gene have been shown to be a cause of Kabuki syndrome. |
| NA | ENSG00000167550 | RHEBL1 | Ras homolog enriched in brain like 1 | 121268 | NA |
| NA | ENSG00000139636 | LMBR1L | limb development membrane protein 1 like | 55716 | NA |
| NA | ENSG00000123416 | TUBA1B | tubulin alpha 1b | 10376 | NA |
| NA | ENSG00000167552 | TUBA1A | tubulin alpha 1a | 7846 | Microtubules of the eukaryotic cytoskeleton perform essential and diverse functions and are composed of a heterodimer of alpha and beta tubulins. The genes encoding these microtubule constituents belong to the tubulin superfamily, which is composed of six distinct families. Genes from the alpha, beta and gamma tubulin families are found in all eukaryotes. The alpha and beta tubulins represent the major components of microtubules, while gamma tubulin plays a critical role in the nucleation of microtubule assembly. There are multiple alpha and beta tubulin genes, which are highly conserved among species. This gene encodes alpha tubulin and is highly similar to the mouse and rat Tuba1 genes. Northern blotting studies have shown that the gene expression is predominantly found in morphologically differentiated neurologic cells. This gene is one of three alpha-tubulin genes in a cluster on chromosome 12q. Mutations in this gene cause lissencephaly type 3 (LIS3) - a neurological condition characterized by microcephaly, mental retardation, and early-onset epilepsy and caused by defective neuronal migration. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000167553 | TUBA1C | tubulin alpha 1c | 84790 | NA |
| NA | ENSG00000135451 | TROAP | trophinin associated protein | 10024 | NA |
| NA | ENSG00000187778 | MCRS1 | microspherule protein 1 | 10445 | NA |
| NA | ENSG00000110844 | PRPF40B | pre-mRNA processing factor 40 homolog B | 25766 | This gene encodes a WW-domain containing protein similar to yeast splicing factor PRP40. This protein has been shown to interact with Huntingtin and methyl CpG binding protein 2 (MeCP2). Alternative splicing results in different transcript variants. |
| NA | ENSG00000161791 | FMNL3 | formin like 3 | 91010 | The protein encoded by this gene contains a formin homology 2 domain and has high sequence identity to the mouse Wbp3 protein. Two alternative transcripts encoding different isoforms have been described. |
| NA | ENSG00000139644 | TMBIM6 | transmembrane BAX inhibitor motif containing 6 | 7009 | NA |
| NA | ENSG00000167566 | NCKAP5L | NCK associated protein 5 like | 57701 | NA |
| NA | ENSG00000161800 | RACGAP1 | Rac GTPase activating protein 1 | 29127 | This gene encodes a GTPase-activating protein (GAP) that is a compoment of the centralspindlin complex. This protein binds activated forms of Rho GTPases and stimulates GTP hydrolysis, which results in negative regulation of Rho-mediated signals. This protein plays a regulatory role in cytokinesis, cell growth, and differentiation. Alternatively spliced transcript variants have been found for this gene. There is a pseudogene for this gene on chromosome 12. |
| NA | ENSG00000066117 | SMARCD1 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 1 | 6602 | The protein encoded by this gene is a member of the SWI/SNF family of proteins, whose members display helicase and ATPase activities and which are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The encoded protein is part of the large ATP-dependent chromatin remodeling complex SNF/SWI and has sequence similarity to the yeast Swp73 protein. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000178449 | COX14 | COX14 cytochrome c oxidase assembly factor | 84987 | This gene encodes a small single-pass transmembrane protein that localizes to mitochondria. This protein may play a role in coordinating the early steps of cytochrome c oxidase (COX; also known as complex IV) subunit assembly and, in particular, the synthesis and assembly of the COX I subunit of the holoenzyme. Mutations in this gene have been associated with mitochondrial complex IV deficiency. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000139624 | CERS5 | ceramide synthase 5 | 91012 | This gene encodes a protein that belongs to the TLC (TRAM, LAG1 and CLN8 homology domains) family of proteins. The encoded protein functions in the synthesis of ceramide, a lipid molecule that is involved in a several cellular signaling pathways. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000050405 | LIMA1 | LIM domain and actin binding 1 | 51474 | This gene encodes a cytoskeleton-associated protein that inhibits actin filament depolymerization and cross-links filaments in bundles. It is downregulated in some cancer cell lines. Alternatively spliced transcript variants encoding different isoforms have been described for this gene, and expression of some of the variants maybe independently regulated. |
| NA | ENSG00000161813 | LARP4 | La ribonucleoprotein domain family member 4 | 113251 | NA |
| NA | ENSG00000066084 | DIP2B | disco interacting protein 2 homolog B | 57609 | This gene encodes a member of the disco-interacting protein homolog 2 protein family. The encoded protein contains a binding site for the transcriptional regulator DNA methyltransferase 1 associated protein 1 as well as AMP-binding sites. The presence of these sites suggests that the encoded protein may participate in DNA methylation. This gene is located near a folate-sensitive fragile site, and CGG-repeat expansion in the promoter of this gene which affects transcription has been detected in individuals containing this fragile site on chromosome 12. |
| NA | ENSG00000185432 | METTL7A | methyltransferase like 7A | 25840 | NA |
| NA | ENSG00000110911 | SLC11A2 | solute carrier family 11 member 2 | 4891 | This gene encodes a member of the solute carrier family 11 protein family. The product of this gene transports divalent metals and is involved in iron absorption. Mutations in this gene are associated with hypochromic microcytic anemia with iron overload. A related solute carrier family 11 protein gene is located on chromosome 2. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000050426 | LETMD1 | LETM1 domain containing 1 | 25875 | This gene encodes a mitochondrial outer membrane protein. It has a potential role in tumorigenesis, which may result from negative regulation of the p53 tumor suppressor gene. Alternatively spliced transcript variants have been noted for this gene. |
| NA | ENSG00000110925 | CSRNP2 | cysteine and serine rich nuclear protein 2 | 81566 | The protein encoded by this gene belongs to the CSRNP family of nuclear proteins that share conserved regions, including cysteine- and serine- rich regions, a basic domain, a transcriptional activation domain, and bind the sequence ‘AGAGTG’, thus have the hallmark of transcription factors. Studies in mice suggest that these genes may have redundant functions. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000135457 | TFCP2 | transcription factor CP2 | 7024 | This gene encodes a transcription factor that binds the alpha-globin promoter and activates transcription of the alpha-globin gene. The encoded protein regulates erythroid gene expression, plays a role in the transcriptional switch of globin gene promoters, and it activates many other cellular and viral gene promoters. The gene product interacts with certain inflammatory response factors, and polymorphisms of this gene may be involved in the pathogenesis of Alzheimer’s disease. |
| NA | ENSG00000183283 | DAZAP2 | DAZ associated protein 2 | 9802 | This gene encodes a proline-rich protein which interacts with the deleted in azoospermia (DAZ) and the deleted in azoospermia-like gene through the DAZ-like repeats. This protein also interacts with the transforming growth factor-beta signaling molecule SARA (Smad anchor for receptor activation), eukaryotic initiation factor 4G, and an E3 ubiquitinase that regulates its stability in splicing factor containing nuclear speckles. The encoded protein may function in various biological and pathological processes including spermatogenesis, cell signaling and transcription regulation, formation of stress granules during translation arrest, RNA splicing, and pathogenesis of multiple myeloma. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000170545 | SMAGP | small cell adhesion glycoprotein | 57228 | NA |
| NA | ENSG00000139629 | GALNT6 | polypeptide N-acetylgalactosaminyltransferase 6 | 11226 | This gene encodes a member of the UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase (GalNAc-T) family of enzymes. GalNAc-Ts initiate mucin-type O-linked glycosylation in the Golgi apparatus by catalyzing the transfer of GalNAc to serine and threonine residues on target proteins. They are characterized by an N-terminal transmembrane domain, a stem region, a lumenal catalytic domain containing a GT1 motif and Gal/GalNAc transferase motif, and a C-terminal ricin/lectin-like domain. GalNAc-Ts have different, but overlapping, substrate specificities and patterns of expression. The encoded protein is capable of glycosylating fibronectin peptide in vitro and is expressed in a fibroblast cell line, indicating that it may be involved in the synthesis of oncofetal fibronectin. |
| NA | ENSG00000050438 | SLC4A8 | solute carrier family 4 member 8 | 9498 | The protein encoded by this gene is a membrane protein that functions to transport sodium and bicarbonate ions across the cell membrane. The encoded protein is important for pH regulation in neurons. The activity of this protein can be inhibited by 4,4’-Di-isothiocyanatostilbene-2,2’-disulfonic acid (DIDS). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000196876 | SCN8A | sodium voltage-gated channel alpha subunit 8 | 6334 | This gene encodes a member of the sodium channel alpha subunit gene family. The encoded protein forms the ion pore region of the voltage-gated sodium channel. This protein is essential for the rapid membrane depolarization that occurs during the formation of the action potential in excitable neurons. Mutations in this gene are associated with mental retardation, pancerebellar atrophy and ataxia. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000135503 | ACVR1B | activin A receptor type 1B | 91 | This gene encodes an activin A type IB receptor. Activins are dimeric growth and differentiation factors which belong to the transforming growth factor-beta (TGF-beta) superfamily of structurally related signaling proteins. Activins signal through a heteromeric complex of receptor serine kinases which include at least two type I and two type II receptors. This protein is a type I receptor which is essential for signaling. Mutations in this gene are associated with pituitary tumors. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000123358 | NR4A1 | nuclear receptor subfamily 4 group A member 1 | 3164 | This gene encodes a member of the steroid-thyroid hormone-retinoid receptor superfamily. Expression is induced by phytohemagglutinin in human lymphocytes and by serum stimulation of arrested fibroblasts. The encoded protein acts as a nuclear transcription factor. Translocation of the protein from the nucleus to mitochondria induces apoptosis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000123395 | ATG101 | autophagy related 101 | 60673 | NA |
| NA | ENSG00000135480 | KRT7 | keratin 7 | 3855 | The protein encoded by this gene is a member of the keratin gene family. The type II cytokeratins consist of basic or neutral proteins which are arranged in pairs of heterotypic keratin chains coexpressed during differentiation of simple and stratified epithelial tissues. This type II cytokeratin is specifically expressed in the simple epithelia lining the cavities of the internal organs and in the gland ducts and blood vessels. The genes encoding the type II cytokeratins are clustered in a region of chromosome 12q12-q13. Alternative splicing may result in several transcript variants; however, not all variants have been fully described. |
| NA | ENSG00000170421 | KRT8 | keratin 8 | 3856 | This gene is a member of the type II keratin family clustered on the long arm of chromosome 12. Type I and type II keratins heteropolymerize to form intermediate-sized filaments in the cytoplasm of epithelial cells. The product of this gene typically dimerizes with keratin 18 to form an intermediate filament in simple single-layered epithelial cells. This protein plays a role in maintaining cellular structural integrity and also functions in signal transduction and cellular differentiation. Mutations in this gene cause cryptogenic cirrhosis. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000111057 | KRT18 | keratin 18 | 3875 | KRT18 encodes the type I intermediate filament chain keratin 18. Keratin 18, together with its filament partner keratin 8, are perhaps the most commonly found members of the intermediate filament gene family. They are expressed in single layer epithelial tissues of the body. Mutations in this gene have been linked to cryptogenic cirrhosis. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000063046 | EIF4B | eukaryotic translation initiation factor 4B | 1975 | NA |
| NA | ENSG00000111077 | TNS2 | tensin 2 | 23371 | The protein encoded by this gene belongs to the tensin family. Tensin is a focal adhesion molecule that binds to actin filaments and participates in signaling pathways. This protein plays a role in regulating cell migration. Alternative splicing occurs at this locus and three transcript variants encoding three distinct isoforms have been identified. |
| NA | ENSG00000167778 | SPRYD3 | SPRY domain containing 3 | 84926 | NA |
| NA | ENSG00000167779 | IGFBP6 | insulin like growth factor binding protein 6 | 3489 | NA |
| NA | ENSG00000139631 | CSAD | cysteine sulfinic acid decarboxylase | 51380 | This gene encodes a member of the group 2 decarboxylase family. A similar protein in rodents plays a role in multiple biological processes as the rate-limiting enzyme in taurine biosynthesis, catalyzing the decarboxylation of cysteinesulfinate to hypotaurine. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000139651 | ZNF740 | zinc finger protein 740 | 283337 | NA |
| NA | ENSG00000172819 | RARG | retinoic acid receptor gamma | 5916 | This gene encodes a retinoic acid receptor that belongs to the nuclear hormone receptor family. Retinoic acid receptors (RARs) act as ligand-dependent transcriptional regulators. When bound to ligands, RARs activate transcription by binding as heterodimers to the retinoic acid response elements (RARE) found in the promoter regions of the target genes. In their unbound form, RARs repress transcription of their target genes. RARs are involved in various biological processes, including limb bud development, skeletal growth, and matrix homeostasis. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000182544 | MFSD5 | major facilitator superfamily domain containing 5 | 84975 | NA |
| NA | ENSG00000135476 | ESPL1 | extra spindle pole bodies like 1, separase | 9700 | Stable cohesion between sister chromatids before anaphase and their timely separation during anaphase are critical for chromosome inheritance. In vertebrates, sister chromatid cohesion is released in 2 steps via distinct mechanisms. The first step involves phosphorylation of STAG1 (MIM 604358) or STAG2 (MIM 300826) in the cohesin complex. The second step involves cleavage of the cohesin subunit SCC1 (RAD21; MIM 606462) by ESPL1, or separase, which initiates the final separation of sister chromatids (Sun et al., 2009 [PubMed 19345191]). |
| NA | ENSG00000123349 | PFDN5 | prefoldin subunit 5 | 5204 | This gene encodes a member of the prefoldin alpha subunit family. The encoded protein is one of six subunits of prefoldin, a molecular chaperone complex that binds and stabilizes newly synthesized polypeptides, thereby allowing them to fold correctly. The complex, consisting of two alpha and four beta subunits, forms a double beta barrel assembly with six protruding coiled-coils. The encoded protein may also repress the transcriptional activity of the proto-oncogene c-Myc. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000139637 | C12orf10 | chromosome 12 open reading frame 10 | 60314 | NA |
| NA | ENSG00000185591 | SP1 | Sp1 transcription factor | 6667 | The protein encoded by this gene is a zinc finger transcription factor that binds to GC-rich motifs of many promoters. The encoded protein is involved in many cellular processes, including cell differentiation, cell growth, apoptosis, immune responses, response to DNA damage, and chromatin remodeling. Post-translational modifications such as phosphorylation, acetylation, glycosylation, and proteolytic processing significantly affect the activity of this protein, which can be an activator or a repressor. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000205352 | PRR13 | proline rich 13 | 54458 | NA |
| NA | ENSG00000197111 | PCBP2 | poly(rC) binding protein 2 | 5094 | The protein encoded by this gene appears to be multifunctional. Along with PCBP-1 and hnRNPK, it is one of the major cellular poly(rC)-binding proteins. The encoded protein contains three K-homologous (KH) domains which may be involved in RNA binding. Together with PCBP-1, this protein also functions as a translational coactivator of poliovirus RNA via a sequence-specific interaction with stem-loop IV of the IRES, promoting poliovirus RNA replication by binding to its 5’-terminal cloverleaf structure. It has also been implicated in translational control of the 15-lipoxygenase mRNA, human papillomavirus type 16 L2 mRNA, and hepatitis A virus RNA. The encoded protein is also suggested to play a part in formation of a sequence-specific alpha-globin mRNP complex which is associated with alpha-globin mRNA stability. This multiexon structural mRNA is thought to be retrotransposed to generate PCBP-1, an intronless gene with functions similar to that of PCBP2. This gene and PCBP-1 have paralogous genes (PCBP3 and PCBP4) which are thought to have arisen as a result of duplication events of entire genes. Thsi gene also has two processed pseudogenes (PCBP2P1 and PCBP2P2). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139625 | MAP3K12 | mitogen-activated protein kinase kinase kinase 12 | 7786 | This gene encodes a member of the serine/threonine protein kinase family. This kinase contains a leucine-zipper domain and is predominately expressed in neuronal cells. The phosphorylation state of this kinase in synaptic terminals was shown to be regulated by membrane depolarization via calcineurin. This kinase forms heterodimers with leucine zipper containing transcription factors, such as cAMP responsive element binding protein (CREB) and MYC, and thus may play a regulatory role in PKA or retinoic acid induced neuronal differentiation. Alternatively spliced transcript variants encoding different proteins have been described. |
| NA | ENSG00000139546 | TARBP2 | TAR (HIV-1) RNA binding protein 2 | 6895 | HIV-1, the causative agent of acquired immunodeficiency syndrome (AIDS), contains an RNA genome that produces a chromosomally integrated DNA during the replicative cycle. Activation of HIV-1 gene expression by the transactivator Tat is dependent on an RNA regulatory element (TAR) located downstream of the transcription initiation site. The protein encoded by this gene binds between the bulge and the loop of the HIV-1 TAR RNA regulatory element and activates HIV-1 gene expression in synergy with the viral Tat protein. Alternative splicing results in multiple transcript variants encoding different isoforms. This gene also has a pseudogene. |
| NA | ENSG00000135390 | ATP5G2 | ATP synthase, H+ transporting, mitochondrial Fo complex subunit C2 (subunit 9) | 517 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. The catalytic portion of mitochondrial ATP synthase consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and single representatives of the gamma, delta, and epsilon subunits. The proton channel likely has nine subunits (a, b, c, d, e, f, g, F6 and 8). There are three separate genes which encode subunit c of the proton channel and they specify precursors with different import sequences but identical mature proteins. The protein encoded by this gene is one of three precursors of subunit c. Alternatively spliced transcript variants encoding different isoforms have been identified. This gene has multiple pseudogenes. |
| NA | ENSG00000012822 | CALCOCO1 | calcium binding and coiled-coil domain 1 | 57658 | NA |
| NA | ENSG00000123415 | SMUG1 | single-strand-selective monofunctional uracil-DNA glycosylase 1 | 23583 | This gene encodes a protein that participates in base excision repair by removing uracil from single- and double-stranded DNA. Many alternatively spliced transcript variants exist for this gene; the full-length nature is known for some but not all of the variants. |
| NA | ENSG00000135486 | HNRNPA1 | heterogeneous nuclear ribonucleoprotein A1 | 3178 | This gene encodes a member of a family of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs), which are RNA-binding proteins that associate with pre-mRNAs in the nucleus and influence pre-mRNA processing, as well as other aspects of mRNA metabolism and transport. The protein encoded by this gene is one of the most abundant core proteins of hnRNP complexes and plays a key role in the regulation of alternative splicing. Mutations in this gene have been observed in individuals with amyotrophic lateral sclerosis 20. Multiple alternatively spliced transcript variants have been found. There are numerous pseudogenes of this gene distributed throughout the genome. |
| NA | ENSG00000111481 | COPZ1 | coatomer protein complex subunit zeta 1 | 22818 | This gene encodes a subunit of the cytoplasmic coatamer protein complex, which is involved in autophagy and intracellular protein trafficking. The coatomer protein complex is comprised of seven subunits and functions as the coat protein of coat protein complex (COP)I-vesicles. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000161642 | ZNF385A | zinc finger protein 385A | 25946 | Zinc finger proteins, such as ZNF385A, are regulatory proteins that act as transcription factors, bind single- or double-stranded RNA, or interact with other proteins (Sharma et al., 2004 [PubMed 15527981]). |
| NA | ENSG00000161638 | ITGA5 | integrin subunit alpha 5 | 3678 | The product of this gene belongs to the integrin alpha chain family. Integrins are heterodimeric integral membrane proteins composed of an alpha subunit and a beta subunit that function in cell surface adhesion and signaling. The encoded preproprotein is proteolytically processed to generate light and heavy chains that comprise the alpha 5 subunit. This subunit associates with the beta 1 subunit to form a fibronectin receptor. This integrin may promote tumor invasion, and higher expression of this gene may be correlated with shorter survival time in lung cancer patients. Note that the integrin alpha 5 and integrin alpha V subunits are encoded by distinct genes. |
| NA | ENSG00000170627 | GTSF1 | gametocyte specific factor 1 | 121355 | NA |
| NA | ENSG00000135447 | PPP1R1A | protein phosphatase 1 regulatory inhibitor subunit 1A | 5502 | NA |
| NA | ENSG00000170439 | METTL7B | methyltransferase like 7B | 196410 | NA |
| NA | ENSG00000135424 | ITGA7 | integrin subunit alpha 7 | 3679 | The protein encoded by this gene belongs to the integrin alpha chain family. Integrins are heterodimeric integral membrane proteins composed of an alpha chain and a beta chain. They mediate a wide spectrum of cell-cell and cell-matrix interactions, and thus play a role in cell migration, morphologic development, differentiation, and metastasis. This protein functions as a receptor for the basement membrane protein laminin-1. It is mainly expressed in skeletal and cardiac muscles and may be involved in differentiation and migration processes during myogenesis. Defects in this gene are associated with congenital myopathy. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000135441 | BLOC1S1 | biogenesis of lysosomal organelles complex 1 subunit 1 | 2647 | BLOC1S1 is a component of the ubiquitously expressed BLOC1 multisubunit protein complex. BLOC1 is required for normal biogenesis of specialized organelles of the endosomal-lysosomal system, such as melanosomes and platelet dense granules (Starcevic and Dell’Angelica, 2004 [PubMed 15102850]). |
| NA | ENSG00000135404 | CD63 | CD63 molecule | 967 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. The encoded protein is a cell surface glycoprotein that is known to complex with integrins. It may function as a blood platelet activation marker. Deficiency of this protein is associated with Hermansky-Pudlak syndrome. Also this gene has been associated with tumor progression. Alternative splicing results in multiple transcript variants encoding different protein isoforms. |
| NA | ENSG00000135414 | GDF11 | growth differentiation factor 11 | 10220 | The protein encoded by this gene is a member of the bone morphogenetic protein (BMP) family and the TGF-beta superfamily. This group of proteins is characterized by a polybasic proteolytic processing site which is cleaved to produce a mature protein containing seven conserved cysteine residues. The members of this family are regulators of cell growth and differentiation in both embryonic and adult tissues. Studies in mice and Xenopus suggest that this protein is involved in mesodermal formation and neurogenesis during embryonic development. |
| NA | ENSG00000123353 | ORMDL2 | ORMDL sphingolipid biosynthesis regulator 2 | 29095 | NA |
| NA | ENSG00000135392 | DNAJC14 | DnaJ heat shock protein family (Hsp40) member C14 | 85406 | NA |
| NA | ENSG00000170473 | PYM1 | PYM homolog 1, exon junction complex associated factor | 84305 | NA |
| NA | ENSG00000065357 | DGKA | diacylglycerol kinase alpha | 1606 | The protein encoded by this gene belongs to the eukaryotic diacylglycerol kinase family. It acts as a modulator that competes with protein kinase C for the second messenger diacylglycerol in intracellular signaling pathways. It also plays an important role in the resynthesis of phosphatidylinositols and phosphorylating diacylglycerol to phosphatidic acid. Alternative splicing occurs at this locus and four transcript variants encoding the same protein have been identified. |
| NA | ENSG00000185664 | PMEL | premelanosome protein | 6490 | This gene encodes a melanocyte-specific type I transmembrane glycoprotein. The encoded protein is enriched in melanosomes, which are the melanin-producing organelles in melanocytes, and plays an essential role in the structural organization of premelanosomes. This protein is involved in generating internal matrix fibers that define the transition from Stage I to Stage II melanosomes. This protein undergoes a complex pattern of prosttranslational processing and modification that is essential to the proper functioning of the protein. A secreted form of this protein that is released by proteolytic ectodomain shedding may be used as a melanoma-specific serum marker. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000123374 | CDK2 | cyclin-dependent kinase 2 | 1017 | This gene encodes a member of a family of serine/threonine protein kinases that participate in cell cycle regulation. The encoded protein is the catalytic subunit of the cyclin-dependent protein kinase complex, which regulates progression through the cell cycle. Activity of this protein is especially critical during the G1 to S phase transition. This protein associates with and regulated by other subunits of the complex including cyclin A or E, CDK inhibitor p21Cip1 (CDKN1A), and p27Kip1 (CDKN1B). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000111540 | RAB5B | RAB5B, member RAS oncogene family | 5869 | NA |
| NA | ENSG00000139531 | SUOX | sulfite oxidase | 6821 | Sulfite oxidase is a homodimeric protein localized to the intermembrane space of mitochondria. Each subunit contains a heme domain and a molybdopterin-binding domain. The enzyme catalyzes the oxidation of sulfite to sulfate, the final reaction in the oxidative degradation of the sulfur amino acids cysteine and methionine. Sulfite oxidase deficiency results in neurological abnormalities which are often fatal at an early age. Alternative splicing results in multiple transcript variants encoding identical proteins. |
| NA | ENSG00000123411 | IKZF4 | IKAROS family zinc finger 4 | 64375 | Members of the Ikaros (ZNFN1A1; MIM 603023) family of transcription factors, which includes Eos, are expressed in lymphocytes and are implicated in the control of lymphoid development. |
| NA | ENSG00000197728 | RPS26 | ribosomal protein S26 | 6231 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S26E family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000197728 | LOC101929876 | 40S ribosomal protein S26 | 101929876 | NA |
| NA | ENSG00000065361 | ERBB3 | erb-b2 receptor tyrosine kinase 3 | 2065 | This gene encodes a member of the epidermal growth factor receptor (EGFR) family of receptor tyrosine kinases. This membrane-bound protein has a neuregulin binding domain but not an active kinase domain. It therefore can bind this ligand but not convey the signal into the cell through protein phosphorylation. However, it does form heterodimers with other EGF receptor family members which do have kinase activity. Heterodimerization leads to the activation of pathways which lead to cell proliferation or differentiation. Amplification of this gene and/or overexpression of its protein have been reported in numerous cancers, including prostate, bladder, and breast tumors. Alternate transcriptional splice variants encoding different isoforms have been characterized. One isoform lacks the intermembrane region and is secreted outside the cell. This form acts to modulate the activity of the membrane-bound form. Additional splice variants have also been reported, but they have not been thoroughly characterized. |
| NA | ENSG00000170515 | PA2G4 | proliferation-associated 2G4 | 5036 | This gene encodes an RNA-binding protein that is involved in growth regulation. This protein is present in pre-ribosomal ribonucleoprotein complexes and may be involved in ribosome assembly and the regulation of intermediate and late steps of rRNA processing. This protein can interact with the cytoplasmic domain of the ErbB3 receptor and may contribute to transducing growth regulatory signals. This protein is also a transcriptional co-repressor of androgen receptor-regulated genes and other cell cycle regulatory genes through its interactions with histone deacetylases. This protein has been implicated in growth inhibition and the induction of differentiation of human cancer cells. Six pseudogenes, located on chromosomes 3, 6, 9, 18, 20 and X, have been identified. |
| NA | ENSG00000229117 | RPL41 | ribosomal protein L41 | 6171 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein, which shares sequence similarity with the yeast ribosomal protein YL41, belongs to the L41E family of ribosomal proteins. It is located in the cytoplasm. The protein can interact with the beta subunit of protein kinase CKII and can stimulate the phosphorylation of DNA topoisomerase II-alpha by CKII. Two alternative splice variants have been identified, both encoding the same protein. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000135482 | ZC3H10 | zinc finger CCCH-type containing 10 | 84872 | NA |
| NA | ENSG00000139641 | ESYT1 | extended synaptotagmin protein 1 | 23344 | NA |
| NA | ENSG00000092841 | MYL6 | myosin light chain 6 | 4637 | Myosin is a hexameric ATPase cellular motor protein. It is composed of two heavy chains, two nonphosphorylatable alkali light chains, and two phosphorylatable regulatory light chains. This gene encodes a myosin alkali light chain that is expressed in smooth muscle and non-muscle tissues. Genomic sequences representing several pseudogenes have been described and two transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000139613 | SMARCC2 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 2 | 6601 | The protein encoded by this gene is a member of the SWI/SNF family of proteins, whose members display helicase and ATPase activities and which are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The encoded protein is part of the large ATP-dependent chromatin remodeling complex SNF/SWI and contains a predicted leucine zipper motif typical of many transcription factors. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000181852 | RNF41 | ring finger protein 41 | 10193 | This gene encodes an E3 ubiquitin ligase. The encoded protein plays a role in type 1 cytokine receptor signaling by controlling the balance between JAK2-associated cytokine receptor degradation and ectodomain shedding. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000139645 | ANKRD52 | ankyrin repeat domain 52 | 283373 | NA |
| NA | ENSG00000135469 | COQ10A | coenzyme Q10A | 93058 | NA |
| NA | ENSG00000062485 | CS | citrate synthase | 1431 | The protein encoded by this gene is a Krebs tricarboxylic acid cycle enzyme that catalyzes the synthesis of citrate from oxaloacetate and acetyl coenzyme A. The enzyme is found in nearly all cells capable of oxidative metablism. This protein is nuclear encoded and transported into the mitochondrial matrix, where the mature form is found. |
| NA | ENSG00000257727 | CNPY2 | canopy FGF signaling regulator 2 | 10330 | NA |
| NA | ENSG00000135473 | PAN2 | PAN2 poly(A) specific ribonuclease subunit | 9924 | This gene encodes a deadenylase that functions as the catalytic subunit of the polyadenylate binding protein dependent poly(A) nuclease complex. The encoded protein is a magnesium dependent 3’ to 5’ exoribonuclease that is involved in the degradation of cytoplasmic mRNAs. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000170581 | STAT2 | signal transducer and activator of transcription 2 | 6773 | The protein encoded by this gene is a member of the STAT protein family. In response to cytokines and growth factors, STAT family members are phosphorylated by the receptor associated kinases, and then form homo- or heterodimers that translocate to the cell nucleus where they act as transcription activators. In response to interferon (IFN), this protein forms a complex with STAT1 and IFN regulatory factor family protein p48 (ISGF3G), in which this protein acts as a transactivator, but lacks the ability to bind DNA directly. Transcription adaptor P300/CBP (EP300/CREBBP) has been shown to interact specifically with this protein, which is thought to be involved in the process of blocking IFN-alpha response by adenovirus. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000111602 | TIMELESS | timeless circadian clock | 8914 | The protein encoded by this gene is highly conserved and is involved in cell survival after damage or stress, increase in DNA polymerase epsilon activity, maintenance of telomere length, and epithelial cell morphogenesis. The encoded protein also plays a role in the circadian rhythm autoregulatory loop, interacting with the PERIOD genes (PER1, PER2, and PER3) and others to downregulate activation of PER1 by CLOCK/ARNTL. Changes in this gene or its expression may promote prostate cancer, lung cancer, breast cancer, and mental disorders. |
| NA | ENSG00000135423 | GLS2 | glutaminase 2 | 27165 | The protein encoded by this gene is a mitochondrial phosphate-activated glutaminase that catalyzes the hydrolysis of glutamine to stoichiometric amounts of glutamate and ammonia. Originally thought to be liver-specific, this protein has been found in other tissues as well. Alternative splicing results in multiple transcript variants that encode different isoforms. |
| NA | ENSG00000076067 | RBMS2 | RNA binding motif, single stranded interacting protein 2 | 5939 | The protein encoded by this gene is a member of a small family of proteins which bind single stranded DNA/RNA. These proteins are characterized by the presence of two sets of ribonucleoprotein consensus sequence (RNP-CS) that contain conserved motifs, RNP1 and RNP2, originally described in RNA binding proteins, and required for DNA binding. The RBMS proteins have been implicated in such diverse functions as DNA replication, gene transcription, cell cycle progression and apoptosis. This protein was isolated by phenotypic complementation of cdc2 and cdc13 mutants of yeast and is thought to suppress cdc2 and cdc13 mutants through the induction of translation of cdc2. |
| NA | ENSG00000076108 | BAZ2A | bromodomain adjacent to zinc finger domain 2A | 11176 | NA |
| NA | ENSG00000110955 | ATP5B | ATP synthase, H+ transporting, mitochondrial F1 complex, beta polypeptide | 506 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. The catalytic portion of mitochondrial ATP synthase consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and a single representative of the other 3. The proton channel consists of three main subunits (a, b, c). This gene encodes the beta subunit of the catalytic core. |
| NA | ENSG00000110958 | PTGES3 | prostaglandin E synthase 3 | 10728 | This gene encodes an enzyme that converts prostaglandin endoperoxide H2 (PGH2) to prostaglandin E2 (PGE2). This protein functions as a co-chaperone with heat shock protein 90 (HSP90), localizing to response elements in DNA and disrupting transcriptional activation complexes. Alternative splicing results in multiple transcript variants. There are multiple pseudogenes of this gene on several different chromosomes. |
| NA | ENSG00000196531 | NACA | nascent polypeptide-associated complex alpha subunit | 4666 | This gene encodes a protein that associates with basic transcription factor 3 (BTF3) to form the nascent polypeptide-associated complex (NAC). This complex binds to nascent proteins that lack a signal peptide motif as they emerge from the ribosome, blocking interaction with the signal recognition particle (SRP) and preventing mistranslocation to the endoplasmic reticulum. This protein is an IgE autoantigen in atopic dermatitis patients. Alternative splicing results in multiple transcript variants, but the full length nature of some of these variants, including those encoding very large proteins, has not been determined. There are multiple pseudogenes of this gene on different chromosomes. |
| NA | ENSG00000198056 | PRIM1 | primase (DNA) subunit 1 | 5557 | The replication of DNA in eukaryotic cells is carried out by a complex chromosomal replication apparatus, in which DNA polymerase alpha and primase are two key enzymatic components. Primase, which is a heterodimer of a small subunit and a large subunit, synthesizes small RNA primers for the Okazaki fragments made during discontinuous DNA replication. The protein encoded by this gene is the small, 49 kDa primase subunit. |
| NA | ENSG00000025423 | HSD17B6 | hydroxysteroid (17-beta) dehydrogenase 6 | 8630 | The protein encoded by this gene has both oxidoreductase and epimerase activities and is involved in androgen catabolism. The oxidoreductase activity can convert 3 alpha-adiol to dihydrotestosterone, while the epimerase activity can convert androsterone to epi-androsterone. Both reactions use NAD+ as the preferred cofactor. This gene is a member of the retinol dehydrogenase family. |
| NA | ENSG00000166860 | ZBTB39 | zinc finger and BTB domain containing 39 | 9880 | NA |
| NA | ENSG00000166863 | TAC3 | tachykinin 3 | 6866 | This gene encodes a member of the tachykinin family of secreted neuropeptides. The encoded preproprotein is proteolytically processed to generate the mature peptide, which is primarily expressed in the central and peripheral nervous systems and functions as a neurotransmitter. This peptide is the ligand for the neurokinin-3 receptor. This protein is also expressed in the outer syncytiotrophoblast of the placenta and may be associated with pregnancy-induced hypertension and pre-eclampsia. Mutations in this gene are associated with normosmic hypogonadotropic hypogonadism. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000166881 | NEMP1 | nuclear envelope integral membrane protein 1 | 23306 | NA |
| NA | ENSG00000166886 | NAB2 | NGFI-A binding protein 2 | 4665 | This gene encodes a member of the family of NGFI-A binding (NAB) proteins, which function in the nucleus to repress transcription induced by some members of the EGR (early growth response) family of transactivators. NAB proteins can homo- or hetero-multimerize with other EGR or NAB proteins through a conserved N-terminal domain, and repress transcription through two partially redundant C-terminal domains. Transcriptional repression by the encoded protein is mediated in part by interactions with the nucleosome remodeling and deactylase (NuRD) complex. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000166888 | STAT6 | signal transducer and activator of transcription 6 | 6778 | The protein encoded by this gene is a member of the STAT family of transcription factors. In response to cytokines and growth factors, STAT family members are phosphorylated by the receptor associated kinases, and then form homo- or heterodimers that translocate to the cell nucleus where they act as transcription activators. This protein plays a central role in exerting IL4 mediated biological responses. It is found to induce the expression of BCL2L1/BCL-X(L), which is responsible for the anti-apoptotic activity of IL4. Knockout studies in mice suggested the roles of this gene in differentiation of T helper 2 (Th2) cells, expression of cell surface markers, and class switch of immunoglobulins. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000123384 | LRP1 | LDL receptor related protein 1 | 4035 | This gene encodes a member of the low-density lipoprotein receptor family of proteins. The encoded preproprotein is proteolytically processed by furin to generate 515 kDa and 85 kDa subunits that form the mature receptor (PMID: 8546712). This receptor is involved in several cellular processes, including intracellular signaling, lipid homeostasis, and clearance of apoptotic cells. In addition, the encoded protein is necessary for the alpha 2-macroglobulin-mediated clearance of secreted amyloid precursor protein and beta-amyloid, the main component of amyloid plaques found in Alzheimer patients. Expression of this gene decreases with age and has been found to be lower than controls in brain tissue from Alzheimer’s disease patients. |
| NA | ENSG00000182199 | SHMT2 | serine hydroxymethyltransferase 2 | 6472 | This gene encodes the mitochondrial form of a pyridoxal phosphate-dependent enzyme that catalyzes the reversible reaction of serine and tetrahydrofolate to glycine and 5,10-methylene tetrahydrofolate. The encoded product is primarily responsible for glycine synthesis. The activity of the encoded protein has been suggested to be the primary source of intracellular glycine. The gene which encodes the cytosolic form of this enzyme is located on chromosome 17. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000179912 | R3HDM2 | R3H domain containing 2 | 22864 | NA |
| NA | ENSG00000139269 | INHBE | inhibin beta E | 83729 | INHBE is a member of the activin beta family (see INHBA; MIM 147290) that plays a role in pancreatic exocrine cell growth and proliferation (Hashimoto et al., 2006 [PubMed 16426570]). |
| NA | ENSG00000111087 | GLI1 | GLI family zinc finger 1 | 2735 | This gene encodes a member of the Kruppel family of zinc finger proteins. The encoded transcription factor is activated by the sonic hedgehog signal transduction cascade and regulates stem cell proliferation. The activity and nuclear localization of this protein is negatively regulated by p53 in an inhibitory loop. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000166986 | MARS | methionyl-tRNA synthetase | 4141 | This gene encodes a member of the class I family of aminoacyl-tRNA synthetases. These enzymes play a critical role in protein biosynthesis by charging tRNAs with their cognate amino acids. The encoded protein is a component of the multi-tRNA synthetase complex and catalyzes the ligation of methionine to tRNA molecules. |
| NA | ENSG00000166987 | MBD6 | methyl-CpG binding domain protein 6 | 114785 | NA |
| NA | ENSG00000175203 | DCTN2 | dynactin subunit 2 | 10540 | This gene encodes a 50-kD subunit of dynactin, a macromolecular complex consisting of 10-11 subunits ranging in size from 22 to 150 kD. Dynactin binds to both microtubules and cytoplasmic dynein. It is involved in a diverse array of cellular functions, including ER-to-Golgi transport, the centripetal movement of lysosomes and endosomes, spindle formation, chromosome movement, nuclear positioning, and axonogenesis. This subunit is present in 4-5 copies per dynactin molecule. It contains three short alpha-helical coiled-coil domains that may mediate association with self or other dynactin subunits. It may interact directly with the largest subunit (p150) of dynactin and may affix p150 in place. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000155980 | KIF5A | kinesin family member 5A | 3798 | This gene encodes a member of the kinesin family of proteins. Members of this family are part of a multisubunit complex that functions as a microtubule motor in intracellular organelle transport. Mutations in this gene cause autosomal dominant spastic paraplegia 10. |
| NA | ENSG00000166908 | PIP4K2C | phosphatidylinositol-5-phosphate 4-kinase, type II, gamma | 79837 | NA |
| NA | ENSG00000178498 | DTX3 | deltex 3, E3 ubiquitin ligase | 196403 | DTX3 functions as an E3 ubiquitin ligase (Takeyama et al., 2003 [PubMed 12670957]). |
| NA | ENSG00000240771 | ARHGEF25 | Rho guanine nucleotide exchange factor 25 | 115557 | Rho GTPases alternate between an inactive GDP-bound state and an active GTP-bound state, and GEFs facilitate GDP/GTP exchange. This gene encodes a guanine nucleotide exchange factor (GEF) which interacts with Rho GTPases involved in contraction of vascular smooth muscles, regulation of responses to angiotensin II and lens cell differentiation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000135506 | OS9 | osteosarcoma amplified 9, endoplasmic reticulum lectin | 10956 | This gene encodes a protein that is highly expressed in osteosarcomas. This protein binds to the hypoxia-inducible factor 1 (HIF-1), a key regulator of the hypoxic response and angiogenesis, and promotes the degradation of one of its subunits. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000135452 | TSPAN31 | tetraspanin 31 | 6302 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. This encoded protein is thought to be involved in growth-related cellular processes. This gene is associated with tumorigenesis and osteosarcoma. |
| NA | ENSG00000135446 | CDK4 | cyclin-dependent kinase 4 | 1019 | The protein encoded by this gene is a member of the Ser/Thr protein kinase family. This protein is highly similar to the gene products of S. cerevisiae cdc28 and S. pombe cdc2. It is a catalytic subunit of the protein kinase complex that is important for cell cycle G1 phase progression. The activity of this kinase is restricted to the G1-S phase, which is controlled by the regulatory subunits D-type cyclins and CDK inhibitor p16(INK4a). This kinase was shown to be responsible for the phosphorylation of retinoblastoma gene product (Rb). Mutations in this gene as well as in its related proteins including D-type cyclins, p16(INK4a) and Rb were all found to be associated with tumorigenesis of a variety of cancers. Multiple polyadenylation sites of this gene have been reported. |
| NA | ENSG00000139266 | MARCH9 | membrane associated ring-CH-type finger 9 | 92979 | MARCH9 is a member of the MARCH family of membrane-bound E3 ubiquitin ligases (EC 6.3.2.19). MARCH enzymes add ubiquitin (see MIM 191339) to target lysines in substrate proteins, thereby signaling their vesicular transport between membrane compartments. MARCH9 induces internalization of several membrane glycoproteins and directs them to the endosomal compartment (Bartee et al., 2004 [PubMed 14722266]; Hoer et al., 2007 [PubMed 17174307]). |
| NA | ENSG00000037897 | METTL1 | methyltransferase like 1 | 4234 | This gene is similar in sequence to the S. cerevisiae YDL201w gene. The gene product contains a conserved S-adenosylmethionine-binding motif and is inactivated by phosphorylation. Alternative splice variants encoding different protein isoforms have been described for this gene. A pseudogene has been identified on chromosome X. |
| NA | ENSG00000123427 | METTL21B | methyltransferase like 21B | 25895 | NA |
| NA | ENSG00000123297 | TSFM | Ts translation elongation factor, mitochondrial | 10102 | This gene encodes a mitochondrial translation elongation factor. The encoded protein is an enzyme that catalyzes the exchange of guanine nucleotides on the translation elongation factor Tu during the elongation step of mitchondrial protein translation. Mutations in this gene are associated with combined oxidative phosphorylation deficiency-3 syndrome. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000175215 | CTDSP2 | CTD small phosphatase 2 | 10106 | NA |
| NA | ENSG00000166896 | ATP23 | ATP23 metallopeptidase and ATP synthase assembly factor homolog (S. cerevisiae) | 91419 | The protein encoded by this gene is amplified in glioblastomas and interacts with the DNA binding subunit of DNA-dependent protein kinase. This kinase is involved in double-strand break repair (DSB), and higher expression of the encoded protein increases the efficiency of DSB. In addition, comparison to orthologous proteins strongly suggests that this protein is a metalloprotease important in the biosynthesis of mitochondrial ATPase. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139263 | LRIG3 | leucine-rich repeats and immunoglobulin like domains 3 | 121227 | NA |
| NA | ENSG00000135655 | USP15 | ubiquitin specific peptidase 15 | 9958 | This gene encodes a member of the ubiquitin specific protease (USP) family of deubiquitinating enzymes. USP enzymes play critical roles in ubiquitin-dependent processes through polyubiquitin chain disassembly and hydrolysis of ubiquitin-substrate bonds. The encoded protein associates with the COP9 signalosome, and also plays a role in transforming growth factor beta signalling through deubiquitination of receptor-activated SMAD transcription factors. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 2. |
| NA | ENSG00000061987 | MON2 | MON2 homolog, regulator of endosome-to-Golgi trafficking | 23041 | NA |
| NA | ENSG00000111110 | PPM1H | protein phosphatase, Mg2+/Mn2+ dependent 1H | 57460 | NA |
| NA | ENSG00000177990 | DPY19L2 | dpy-19 like 2 (C. elegans) | 283417 | The protein encoded by this gene belongs to the dpy-19 family. It is highly expressed in testis, and is required for sperm head elongation and acrosome formation during spermatogenesis. Mutations in this gene are associated with an infertility disorder, spermatogenic failure type 9 (SPGF9). |
| NA | ENSG00000118600 | TMEM5 | transmembrane protein 5 | 10329 | This gene encodes a type II transmembrane protein that is thought to have glycosyltransferase function. Mutations in this gene result in cobblestone lissencephaly. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000196935 | SRGAP1 | SLIT-ROBO Rho GTPase activating protein 1 | 57522 | NA |
| NA | ENSG00000174206 | C12orf66 | chromosome 12 open reading frame 66 | 144577 | NA |
| NA | ENSG00000184575 | XPOT | exportin for tRNA | 11260 | This gene encodes a protein belonging to the RAN-GTPase exportin family that mediates export of tRNA from the nucleus to the cytoplasm. Translocation of tRNA to the cytoplasm occurs once exportin has bound both tRNA and GTP-bound RAN. |
| NA | ENSG00000153179 | RASSF3 | Ras association domain family member 3 | 283349 | The RAS oncogene (MIM 190020) is mutated in nearly one-third of all human cancers. Members of the RAS superfamily are plasma membrane GTP-binding proteins that modulate intracellular signal transduction pathways. A subfamily of RAS effectors, including RASSF3, share a RAS association (RA) domain. |
| NA | ENSG00000135677 | GNS | glucosamine (N-acetyl)-6-sulfatase | 2799 | The product of this gene is a lysosomal enzyme found in all cells. It is involved in the catabolism of heparin, heparan sulphate, and keratan sulphate. Deficiency of this enzyme results in the accumulation of undegraded substrate and the lysosomal storage disorder mucopolysaccharidosis type IIID (Sanfilippo D syndrome). Mucopolysaccharidosis type IIID is the least common of the four subtypes of Sanfilippo syndrome. |
| NA | ENSG00000156076 | WIF1 | WNT inhibitory factor 1 | 11197 | The protein encoded by this gene functions to inhibit WNT proteins, which are extracellular signaling molecules that play a role in embryonic development. This protein contains a WNT inhibitory factor (WIF) domain and five epidermal growth factor (EGF)-like domains, and is thought to be involved in mesoderm segmentation. This gene functions as a tumor suppressor gene, and has been found to be epigenetically silenced in various cancers. |
| NA | ENSG00000174106 | LEMD3 | LEM domain containing 3 | 23592 | This locus encodes a LEM domain-containing protein. The encoded protein functions to antagonize transforming growth factor-beta signaling at the inner nuclear membrane. Two transcript variants encoding different isoforms have been found for this gene. Mutations in this gene have been associated with osteopoikilosis, Buschke-Ollendorff syndrome and melorheostosis. |
| NA | ENSG00000174099 | MSRB3 | methionine sulfoxide reductase B3 | 253827 | The protein encoded by this gene catalyzes the reduction of methionine sulfoxide to methionine. This enzyme acts as a monomer and requires zinc as a cofactor. Several transcript variants encoding two different isoforms have been found for this gene. One of the isoforms localizes to mitochondria while the other localizes to endoplasmic reticula. |
| NA | ENSG00000149948 | HMGA2 | high mobility group AT-hook 2 | 8091 | This gene encodes a protein that belongs to the non-histone chromosomal high mobility group (HMG) protein family. HMG proteins function as architectural factors and are essential components of the enhancesome. This protein contains structural DNA-binding domains and may act as a transcriptional regulating factor. Identification of the deletion, amplification, and rearrangement of this gene that are associated with myxoid liposarcoma suggests a role in adipogenesis and mesenchymal differentiation. A gene knock out study of the mouse counterpart demonstrated that this gene is involved in diet-induced obesity. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000139233 | LLPH | LLP homolog, long-term synaptic facilitation (Aplysia) | 84298 | NA |
| NA | ENSG00000155957 | TMBIM4 | transmembrane BAX inhibitor motif containing 4 | 51643 | NA |
| NA | ENSG00000090376 | IRAK3 | interleukin 1 receptor associated kinase 3 | 11213 | This gene encodes a member of the interleukin-1 receptor-associated kinase protein family. Members of this family are essential components of the Toll/IL-R immune signal transduction pathways. This protein is primarily expressed in monocytes and macrophages and functions as a negative regulator of Toll-like receptor signaling. Mutations in this gene are associated with a susceptibility to asthma. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000127311 | HELB | helicase (DNA) B | 92797 | This gene encodes a DNA-dependent ATPase which catalyzes the unwinding of DNA necessary for DNA replication, repair, recombination, and transcription. This gene is thought to function specifically during the S phase entry of the cell cycle. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000155974 | GRIP1 | glutamate receptor interacting protein 1 | 23426 | This gene encodes a member of the glutamate receptor interacting protein family. The encoded scaffold protein binds to and mediates the trafficking and membrane organization of a number of transmembrane proteins. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000111530 | CAND1 | cullin-associated and neddylation-dissociated 1 | 55832 | NA |
| NA | ENSG00000127334 | DYRK2 | dual specificity tyrosine phosphorylation regulated kinase 2 | 8445 | DYRK2 belongs to a family of protein kinases whose members are presumed to be involved in cellular growth and/or development. The family is defined by structural similarity of their kinase domains and their capability to autophosphorylate on tyrosine residues. DYRK2 has demonstrated tyrosine autophosphorylation and catalyzed phosphorylation of histones H3 and H2B in vitro. Two isoforms of DYRK2 have been isolated. The predominant isoform, isoform 1, lacks a 5’ terminal insert. |
| NA | ENSG00000111554 | MDM1 | Mdm1 nuclear protein | 56890 | This gene encodes a nuclear protein similar to the mouse double minute 1 protein. The mouse gene is located in double minute (DM) chromatin particles, is amplified in the mouse transformed 3T3 cell line, and the encoded protein is able to bind to p53. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000127314 | RAP1B | RAP1B, member of RAS oncogene family | 5908 | This gene encodes a member of the RAS-like small GTP-binding protein superfamily. Members of this family regulate multiple cellular processes including cell adhesion and growth and differentiation. This protein localizes to cellular membranes and has been shown to regulate integrin-mediated cell signaling. This protein also plays a role in regulating outside-in signaling in platelets. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 3, 5, 6 and 9. |
| NA | ENSG00000175782 | SLC35E3 | solute carrier family 35 member E3 | 55508 | NA |
| NA | ENSG00000135679 | MDM2 | MDM2 proto-oncogene | 4193 | This gene encodes a nuclear-localized E3 ubiquitin ligase. The encoded protein can promote tumor formation by targeting tumor suppressor proteins, such as p53, for proteasomal degradation. This gene is itself transcriptionally-regulated by p53. Overexpression or amplification of this locus is detected in a variety of different cancers. There is a pseudogene for this gene on chromosome 2. Alternative splicing results in a multitude of transcript variants, many of which may be expressed only in tumor cells. |
| NA | ENSG00000111605 | CPSF6 | cleavage and polyadenylation specific factor 6 | 11052 | The protein encoded by this gene is one subunit of a cleavage factor required for 3’ RNA cleavage and polyadenylation processing. The interaction of the protein with the RNA is one of the earliest steps in the assembly of the 3’ end processing complex and facilitates the recruitment of other processing factors. The cleavage factor complex is composed of four polypeptides. This gene encodes the 68kD subunit. It has a domain organization reminiscent of spliceosomal proteins. |
| NA | ENSG00000127337 | YEATS4 | YEATS domain containing 4 | 8089 | The protein encoded by this gene is found in the nucleoli. It has high sequence homology to human MLLT1, and yeast and human MLLT3 proteins. Both MLLT1 and MLLT3 proteins belong to a class of transcription factors, indicating that the encoded protein might also represent a transcription factor. This protein is thought to be required for RNA transcription. This gene has been shown to be amplified in tumors. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000166225 | FRS2 | fibroblast growth factor receptor substrate 2 | 10818 | NA |
| NA | ENSG00000166226 | CCT2 | chaperonin containing TCP1 subunit 2 | 10576 | The protein encoded by this gene is a molecular chaperone that is a member of the chaperonin containing TCP1 complex (CCT), also known as the TCP1 ring complex (TRiC). This complex consists of two identical stacked rings, each containing eight different proteins. Unfolded polypeptides enter the central cavity of the complex and are folded in an ATP-dependent manner. The complex folds various proteins, including actin and tubulin. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000127328 | RAB3IP | RAB3A interacting protein | 117177 | NA |
| NA | ENSG00000135643 | KCNMB4 | potassium calcium-activated channel subfamily M regulatory beta subunit 4 | 27345 | MaxiK channels are large conductance, voltage and calcium-sensitive potassium channels which are fundamental to the control of smooth muscle tone and neuronal excitability. MaxiK channels can be formed by 2 subunits: the pore-forming alpha subunit and the modulatory beta subunit. The protein encoded by this gene is an auxiliary beta subunit which slows activation kinetics, leads to steeper calcium sensitivity, and shifts the voltage range of current activation to more negative potentials than does the beta 1 subunit. |
| NA | ENSG00000133858 | ZFC3H1 | zinc finger C3H1-type containing | 196441 | NA |
| NA | ENSG00000139291 | TMEM19 | transmembrane protein 19 | 55266 | NA |
| NA | ENSG00000080371 | RAB21 | RAB21, member RAS oncogene family | 23011 | This gene belongs to the Rab family of monomeric GTPases, which are involved in the control of cellular membrane traffic. The encoded protein plays a role in the targeted trafficking of integrins via its association with integrin alpha tails. As a consequence, the encoded protein is involved in the regulation of cell adhesion and migration. Expression of this gene is associated with a poor prognosis for glioma patients. This gene is downregulated by the tumor suppressor miR-200b, and miRNA-200b is itself downregulated in glioma tissues. |
| NA | ENSG00000121749 | TBC1D15 | TBC1 domain family member 15 | 64786 | This gene encodes a member of the Ras-like proteins in brain-GTPase activating protein superfamily that share a conserved Tre-2/Bub2/Cdc16 domain. The encoded protein interacts with Ras-like protein in brain 5A and may function as a regulator of intracellular trafficking. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000253719 | ATXN7L3B | ataxin 7 like 3B | 552889 | NA |
| NA | ENSG00000180881 | CAPS2 | calcyphosine 2 | 84698 | Calcyphosine-2 is a calcium-binding protein with 2 EF-hand motifs (Wang et al., 2002 [PubMed 11846421]). |
| NA | ENSG00000173401 | GLIPR1L1 | GLI pathogenesis related 1 like 1 | 256710 | NA |
| NA | ENSG00000139289 | PHLDA1 | pleckstrin homology like domain family A member 1 | 22822 | This gene encodes an evolutionarily conserved proline-histidine rich nuclear protein. The encoded protein may play an important role in the anti-apoptotic effects of insulin-like growth factor-1. |
| NA | ENSG00000187109 | NAP1L1 | nucleosome assembly protein 1 like 1 | 4673 | This gene encodes a member of the nucleosome assembly protein (NAP) family. This protein participates in DNA replication and may play a role in modulating chromatin formation and contribute to the regulation of cell proliferation. Alternative splicing results in multiple transcript variants encoding different isoforms; however, not all have been fully described. |
| NA | ENSG00000179941 | BBS10 | Bardet-Biedl syndrome 10 | 79738 | This gene is a member of the Bardet-Biedl syndrome (BBS) gene family. Bardet-Biedl syndrome is an autosomal recessive disorder characterized by progressive retinal degeneration, obesity, polydactyly, renal malformation and mental retardation. The proteins encoded by BBS gene family members are structurally diverse and the similar phenotypes exhibited by mutations in BBS gene family members is likely due to their shared roles in cilia formation and function. Many BBS proteins localize to the basal bodies, ciliary axonemes, and pericentriolar regions of cells. BBS proteins may also be involved in intracellular trafficking via microtubule-related transport. The protein encoded by this gene is likely not a ciliary protein but rather has distant sequence homology to type II chaperonins. As a molecular chaperone, this protein may affect the folding or stability of other ciliary or basal body proteins. Inhibition of this protein’s expression impairs ciliogenesis in preadipocytes. Mutations in this gene cause Bardet-Biedl syndrome type 10. |
| NA | ENSG00000091039 | OSBPL8 | oxysterol binding protein like 8 | 114882 | This gene encodes a member of a family of proteins containing an N-terminal pleckstrin homology domain and a highly conserved C-terminal oxysterol-binding protein-like sterol-binding domain. It binds mutliple lipid-containing molecules, including phosphatidylserine, phosphatidylinositol 4-phosphate (PI4P) and oxysterol, and promotes their exchange between the endoplasmic reticulum and the plasma membrane. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175183 | CSRP2 | cysteine and glycine rich protein 2 | 1466 | CSRP2 is a member of the CSRP family of genes, encoding a group of LIM domain proteins, which may be involved in regulatory processes important for development and cellular differentiation. CRP2 contains two copies of the cysteine-rich amino acid sequence motif (LIM) with putative zinc-binding activity, and may be involved in regulating ordered cell growth. Other genes in the family include CSRP1 and CSRP3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165891 | E2F7 | E2F transcription factor 7 | 144455 | E2F transcription factors, such as E2F7, play an essential role in the regulation of cell cycle progression (Di Stefano et al., 2003 [PubMed 14633988]). |
| NA | ENSG00000177425 | PAWR | pro-apoptotic WT1 regulator | 5074 | The tumor suppressor WT1 represses and activates transcription. The protein encoded by this gene is a WT1-interacting protein that itself functions as a transcriptional repressor. It contains a putative leucine zipper domain which interacts with the zinc finger DNA binding domain of WT1. This protein is specifically upregulated during apoptosis of prostate cells. |
| NA | ENSG00000058272 | PPP1R12A | protein phosphatase 1 regulatory subunit 12A | 4659 | Myosin phosphatase target subunit 1, which is also called the myosin-binding subunit of myosin phosphatase, is one of the subunits of myosin phosphatase. Myosin phosphatase regulates the interaction of actin and myosin downstream of the guanosine triphosphatase Rho. The small guanosine triphosphatase Rho is implicated in myosin light chain (MLC) phosphorylation, which results in contraction of smooth muscle and interaction of actin and myosin in nonmuscle cells. The guanosine triphosphate (GTP)-bound, active form of RhoA (GTP.RhoA) specifically interacted with the myosin-binding subunit (MBS) of myosin phosphatase, which regulates the extent of phosphorylation of MLC. Rho-associated kinase (Rho-kinase), which is activated by GTP. RhoA, phosphorylated MBS and consequently inactivated myosin phosphatase. Overexpression of RhoA or activated RhoA in NIH 3T3 cells increased phosphorylation of MBS and MLC. Thus, Rho appears to inhibit myosin phosphatase through the action of Rho-kinase. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000111052 | LIN7A | lin-7 homolog A, crumbs cell polarity complex component | 8825 | NA |
| NA | ENSG00000111058 | ACSS3 | acyl-CoA synthetase short-chain family member 3 | 79611 | NA |
| NA | ENSG00000139220 | PPFIA2 | PTPRF interacting protein alpha 2 | 8499 | The protein encoded by this gene is a member of the LAR protein-tyrosine phosphatase-interacting protein (liprin) family. Liprins interact with members of LAR family of transmembrane protein tyrosine phosphatases, which are known to be important for axon guidance and mammary gland development. It has been proposed that liprins are multivalent proteins that form complex structures and act as scaffolds for the recruitment and anchoring of LAR family of tyrosine phosphatases. This protein has been shown to bind the calcium/calmodulin-dependent serine protein kinase (MAGUK family) protein (also known as CASK) and proposed to regulate higher-order brain functions in mammals. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000133773 | CCDC59 | coiled-coil domain containing 59 | 29080 | NA |
| NA | ENSG00000127720 | METTL25 | methyltransferase like 25 | 84190 | NA |
| NA | ENSG00000179104 | TMTC2 | transmembrane and tetratricopeptide repeat containing 2 | 160335 | The protein encoded by this gene is an integral membrane protein localized to the endoplasmic reticulum (ER). The encoded protein contains many tetratricopeptide repeats, sequences known for being involved in protein-protein interactions. This protein binds both the calcium uptake pump SERCA2B and the carbohydrate-binding chaperone calnexin, and it appears to play a role in calcium homeostasis in the ER. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000072041 | SLC6A15 | solute carrier family 6 member 15 | 55117 | This gene encodes a member of the solute carrier family 6 protein family which transports neutral amino acids. The encoded protein is thought to play a role in neuronal amino acid transport (PMID: 16185194) and may be associated with major depression (PMID: 21521612). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000133640 | LRRIQ1 | leucine-rich repeats and IQ motif containing 1 | 84125 | NA |
| NA | ENSG00000133636 | NTS | neurotensin | 4922 | This gene encodes a common precursor for two peptides, neuromedin N and neurotensin. Neurotensin is a secreted tridecapeptide, which is widely distributed throughout the central nervous system, and may function as a neurotransmitter or a neuromodulator. It may be involved in dopamine-associated pathophysiological events, in the maintenance of gut structure and function, and in the regulation of fat metabolism. Neurotensin also exhibits antimicrobial activity against bacteria and fungi. Tissue-specific processing may lead to the formation in some tissues of larger forms of neuromedin N and neurotensin. The large forms may represent more stable peptides that are also biologically active. |
| NA | ENSG00000198707 | CEP290 | centrosomal protein 290kDa | 80184 | This gene encodes a protein with 13 putative coiled-coil domains, a region with homology to SMC chromosome segregation ATPases, six KID motifs, three tropomyosin homology domains and an ATP/GTP binding site motif A. The protein is localized to the centrosome and cilia and has sites for N-glycosylation, tyrosine sulfation, phosphorylation, N-myristoylation, and amidation. Mutations in this gene have been associated with Joubert syndrome and nephronophthisis and the presence of antibodies against this protein is associated with several forms of cancer. |
| NA | ENSG00000139324 | TMTC3 | transmembrane and tetratricopeptide repeat containing 3 | 160418 | This gene encodes a protein that belongs to the transmembrane and tetratricopeptide repeat-containing protein family. |
| NA | ENSG00000049130 | KITLG | KIT ligand | 4254 | This gene encodes the ligand of the tyrosine-kinase receptor encoded by the KIT locus. This ligand is a pleiotropic factor that acts in utero in germ cell and neural cell development, and hematopoiesis, all believed to reflect a role in cell migration. In adults, it functions pleiotropically, while mostly noted for its continued requirement in hematopoiesis. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139318 | DUSP6 | dual specificity phosphatase 6 | 1848 | The protein encoded by this gene is a member of the dual specificity protein phosphatase subfamily. These phosphatases inactivate their target kinases by dephosphorylating both the phosphoserine/threonine and phosphotyrosine residues. They negatively regulate members of the mitogen-activated protein (MAP) kinase superfamily (MAPK/ERK, SAPK/JNK, p38), which are associated with cellular proliferation and differentiation. Different members of the family of dual specificity phosphatases show distinct substrate specificities for various MAP kinases, different tissue distribution and subcellular localization, and different modes of inducibility of their expression by extracellular stimuli. This gene product inactivates ERK2, is expressed in a variety of tissues with the highest levels in heart and pancreas, and unlike most other members of this family, is localized in the cytoplasm. Mutations in this gene have been associated with congenital hypogonadotropic hypogonadism. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000139323 | POC1B | POC1 centriolar protein B | 282809 | POC1 proteins contain an N-terminal WD40 domain and a C-terminal coiled coil domain and are part of centrosomes. They play an important role in basal body and cilia formation. This gene encodes one of the two POC1 proteins found in humans. Mutation in this gene result in autosomal-recessive cone-rod dystrophy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000070961 | ATP2B1 | ATPase plasma membrane Ca2+ transporting 1 | 490 | The protein encoded by this gene belongs to the family of P-type primary ion transport ATPases characterized by the formation of an aspartyl phosphate intermediate during the reaction cycle. These enzymes remove bivalent calcium ions from eukaryotic cells against very large concentration gradients and play a critical role in intracellular calcium homeostasis. The mammalian plasma membrane calcium ATPase isoforms are encoded by at least four separate genes and the diversity of these enzymes is further increased by alternative splicing of transcripts. The expression of different isoforms and splice variants is regulated in a developmental, tissue- and cell type-specific manner, suggesting that these pumps are functionally adapted to the physiological needs of particular cells and tissues. This gene encodes the plasma membrane calcium ATPase isoform 1. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000173598 | NUDT4 | nudix hydrolase 4 | 11163 | The protein encoded by this gene regulates the turnover of diphosphoinositol polyphosphates. The turnover of these high-energy diphosphoinositol polyphosphates represents a molecular switching activity with important regulatory consequences. Molecular switching by diphosphoinositol polyphosphates may contribute to regulating intracellular trafficking. Several alternatively spliced transcript variants have been described, but the full-length nature of some variants has not been determined. Isoforms DIPP2alpha and DIPP2beta are distinguishable from each other solely by DIPP2beta possessing one additional amino acid due to intron boundary skidding in alternate splicing. |
| NA | ENSG00000177889 | UBE2N | ubiquitin conjugating enzyme E2 N | 7334 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. Studies in mouse suggest that this protein plays a role in DNA postreplication repair. |
| NA | ENSG00000198015 | MRPL42 | mitochondrial ribosomal protein L42 | 28977 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a protein identified as belonging to both the 28S and the 39S subunits. Alternative splicing results in multiple transcript variants. Pseudogenes corresponding to this gene are found on chromosomes 4q, 6p, 6q, 7p, and 15q. |
| NA | ENSG00000169372 | CRADD | CASP2 and RIPK1 domain containing adaptor with death domain | 8738 | This gene encodes a protein containing a death domain (DD) motif. This protein recruits caspase 2/ICH1 to the cell death signal transduction complex, which includes tumor necrosis factor receptor 1 (TNFR1A) and RIPK1/RIP kinase, and acts in promoting apoptosis. A mutation in this gene was associated with mental retardation. A related pseudogene is found on chromosome 3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136040 | PLXNC1 | plexin C1 | 10154 | This gene encodes a member of the plexin family. Plexins are transmembrane receptors for semaphorins, a large family of proteins that regulate axon guidance, cell motility and migration, and the immune response. The encoded protein and its ligand regulate melanocyte adhesion, and viral semaphorins may modulate the immune response by binding to this receptor. The encoded protein may be a tumor suppressor protein for melanoma. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000173588 | CEP83 | centrosomal protein 83kDa | 51134 | NA |
| NA | ENSG00000184752 | NDUFA12 | NADH:ubiquinone oxidoreductase subunit A12 | 55967 | This gene encodes a protein which is part of mitochondrial complex 1, part of the oxidative phosphorylation system in mitochondria. Complex 1 transfers electrons to ubiquinone from NADH which establishes a proton gradient for the generation of ATP. Mutations in this gene are associated with Leigh syndrome due to mitochondrial complex 1 deficiency. Pseudogenes of this gene are located on chromosomes 5 and 13. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000120798 | NR2C1 | nuclear receptor subfamily 2 group C member 1 | 7181 | This gene encodes a nuclear hormone receptor characterized by a highly conserved DNA binding domain (DBD), a variable hinge region, and a carboxy-terminal ligand binding domain (LBD) that is typical for all members of the steroid/thyroid hormone receptor superfamily. This protein also belongs to a large family of ligand-inducible transcription factors that regulate gene expression by binding to specific DNA sequences within promoters of target genes. Multiple alternatively spliced transcript variants have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000180263 | FGD6 | FYVE, RhoGEF and PH domain containing 6 | 55785 | NA |
| NA | ENSG00000028203 | VEZT | vezatin, adherens junctions transmembrane protein | 55591 | This gene encodes a transmembrane protein which has been localized to adherens junctions and shown to bind to myosin VIIA. Examination of expression of this gene in gastric cancer tissues have shown that expression is decreased which appears to be related to hypermethylation of the promoter. Expression of this gene may also be inhibited by binding of a specific microRNA to a target sequence in the 3’ UTR of the transcripts. A pseudogene of this gene is located on the X chromosome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000111142 | METAP2 | methionyl aminopeptidase 2 | 10988 | The protein encoded by this gene is a member of the methionyl aminopeptidase family. The encoded protein functions both by protecting the alpha subunit of eukaryotic initiation factor 2 from inhibitory phosphorylation and by removing the amino-terminal methionine residue from nascent proteins. Increased expression of this gene is associated with various forms of cancer, and the anti-cancer drugs fumagillin and ovalicin inhibit the protein by irreversibly binding to its active site. Inhibitors of this gene have also been shown to be effective for the treatment of obesity. A pseudogene of this gene is located on chromosome 2. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139343 | SNRPF | small nuclear ribonucleoprotein polypeptide F | 6636 | NA |
| NA | ENSG00000111144 | LTA4H | leukotriene A4 hydrolase | 4048 | The protein encoded by this gene is an enzyme that contains both hydrolase and aminopeptidase activities. The hydrolase activity is used in the final step of the biosynthesis of leukotriene B4, a proinflammatory mediator. The aminopeptidase activity has been shown to degrade proline-glycine-proline (PGP), a neutrophil chemoattractant and biomarker for chronic obstructive pulmonary disease (COPD). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000111145 | ELK3 | ELK3, ETS transcription factor | 2004 | This gene encodes a member of the ETS-domain transcription factor family and the ternary complex factor (TCF) subfamily. Proteins in this subfamily regulate transcription when recruited by serum response factor to bind to serum response elements. This protein is activated by signal-induced phosphorylation; studies in rodents suggest that it is a transcriptional inhibitor in the absence of Ras, but activates transcription when Ras is present. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000059758 | CDK17 | cyclin-dependent kinase 17 | 5128 | The protein encoded by this gene belongs to the cdc2/cdkx subfamily of the ser/thr family of protein kinases. It has similarity to a rat protein that is thought to play a role in terminally differentiated neurons. Alternatively spliced transcript variants encoding different isoforms have been found. |
| NA | ENSG00000139350 | NEDD1 | neural precursor cell expressed, developmentally down-regulated 1 | 121441 | NA |
| NA | ENSG00000120802 | TMPO | thymopoietin | 7112 | The protein encoded by this gene resides in the nucleus and may play a role in the assembly of the nuclear lamina, and thus help maintain the structural organization of the nuclear envelope. It may function as a receptor for the attachment of lamin filaments to the inner nuclear membrane. Mutations in this gene are associated with dilated cardiomyopathy. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000075415 | SLC25A3 | solute carrier family 25 member 3 | 5250 | The protein encoded by this gene catalyzes the transport of phosphate into the mitochondrial matrix, either by proton cotransport or in exchange for hydroxyl ions. The protein contains three related segments arranged in tandem which are related to those found in other characterized members of the mitochondrial carrier family. Both the N-terminal and C-terminal regions of this protein protrude toward the cytosol. Multiple alternatively spliced transcript variants have been isolated. |
| NA | ENSG00000166130 | IKBIP | IKBKB interacting protein | 121457 | NA |
| NA | ENSG00000120868 | APAF1 | apoptotic peptidase activating factor 1 | 317 | This gene encodes a cytoplasmic protein that initiates apoptosis. This protein contains several copies of the WD-40 domain, a caspase recruitment domain (CARD), and an ATPase domain (NB-ARC). Upon binding cytochrome c and dATP, this protein forms an oligomeric apoptosome. The apoptosome binds and cleaves caspase 9 preproprotein, releasing its mature, activated form. Activated caspase 9 stimulates the subsequent caspase cascade that commits the cell to apoptosis. Alternative splicing results in several transcript variants encoding different isoforms. |
| NA | ENSG00000185046 | ANKS1B | ankyrin repeat and sterile alpha motif domain containing 1B | 56899 | This gene encodes a multi-domain protein that is predominantly expressed in brain and testis. This protein interacts with amyloid beta protein precursor (AbetaPP) and may have a role in normal brain development, and in the pathogenesis of Alzheimer’s disease. Expression of this gene has been shown to be elevated in patients with pre-B cell acute lymphocytic leukemia associated with t(1;19) translocation. Alternatively spliced transcript variants encoding different isoforms (some with different subcellular localization, PMID:15004329) have been described for this gene. |
| NA | ENSG00000111647 | UHRF1BP1L | UHRF1 binding protein 1 like | 23074 | NA |
| NA | ENSG00000166153 | DEPDC4 | DEP domain containing 4 | 120863 | NA |
| NA | ENSG00000136021 | SCYL2 | SCY1 like pseudokinase 2 | 55681 | The protein encoded by this gene associates with clathrin-coated complexes at the plasma membrane and with endocytic coated vesicles. The encoded protein phosphorylates the beta2 subunit of the plasma membrane adapter complex AP2 and interacts with clathrin, showing involvement in clathrin-dependent pathways between the trans-Golgi network and the endosomal system. In addition, this protein has a role in the Wnt signaling pathway by targeting frizzled 5 (Fzd5) for lysosomal degradation. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000139354 | GAS2L3 | growth arrest specific 2 like 3 | 283431 | NA |
| NA | ENSG00000151572 | ANO4 | anoctamin 4 | 121601 | NA |
| NA | ENSG00000120800 | UTP20 | UTP20, small subunit processome component | 27340 | UTP20 is a component of the U3 small nucleolar RNA (snoRNA) (SNORD3A; MIM 180710) protein complex (U3 snoRNP) and is involved in 18S rRNA processing (Wang et al., 2007 [PubMed 17498821]). |
| NA | ENSG00000111666 | CHPT1 | choline phosphotransferase 1 | 56994 | NA |
| NA | ENSG00000111670 | GNPTAB | N-acetylglucosamine-1-phosphate transferase alpha and beta subunits | 79158 | This gene encodes two of three subunit types of the membrane-bound enzyme N-acetylglucosamine-1-phosphotransferase, a heterohexameric complex composed of two alpha, two beta, and two gamma subunits. The encoded protein is proteolytically cleaved at the Lys928-Asp929 bond to yield mature alpha and beta polypeptides while the gamma subunits are the product of a distinct gene (GeneID 84572). In the Golgi apparatus, the heterohexameric complex catalyzes the first step in the synthesis of mannose 6-phosphate recognition markers on certain oligosaccharides of newly synthesized lysosomal enzymes. These recognition markers are essential for appropriate trafficking of lysosomal enzymes. Mutations in this gene have been associated with both mucolipidosis II and mucolipidosis IIIA. |
| NA | ENSG00000136048 | DRAM1 | DNA damage regulated autophagy modulator 1 | 55332 | This gene is regulated as part of the p53 tumor suppressor pathway. The gene encodes a lysosomal membrane protein that is required for the induction of autophagy by the pathway. Decreased transcriptional expression of this gene is associated with various tumors. This gene has a pseudogene on chromosome 4. |
| NA | ENSG00000120860 | CCDC53 | coiled-coil domain containing 53 | 51019 | NA |
| NA | ENSG00000171759 | PAH | phenylalanine hydroxylase | 5053 | PAH encodes the enzyme phenylalanine hydroxylase that is the rate-limiting step in phenylalanine catabolism. Deficiency of this enzyme activity results in the autosomal recessive disorder phenylketonuria. |
| NA | ENSG00000111696 | NT5DC3 | 5’-nucleotidase domain containing 3 | 51559 | NA |
| NA | ENSG00000166598 | HSP90B1 | heat shock protein 90kDa beta family member 1 | 7184 | This gene encodes a member of a family of adenosine triphosphate(ATP)-metabolizing molecular chaperones with roles in stabilizing and folding other proteins. The encoded protein is localized to melanosomes and the endoplasmic reticulum. Expression of this protein is associated with a variety of pathogenic states, including tumor formation. There is a microRNA gene located within the 5’ exon of this gene. There are pseudogenes for this gene on chromosomes 1 and 15. |
| NA | ENSG00000204954 | C12orf73 | chromosome 12 open reading frame 73 | 728568 | NA |
| NA | ENSG00000139372 | TDG | thymine DNA glycosylase | 6996 | The protein encoded by this gene belongs to the TDG/mug DNA glycosylase family. Thymine-DNA glycosylase (TDG) removes thymine moieties from G/T mismatches by hydrolyzing the carbon-nitrogen bond between the sugar-phosphate backbone of DNA and the mispaired thymine. With lower activity, this enzyme also removes thymine from C/T and T/T mispairings. TDG can also remove uracil and 5-bromouracil from mispairings with guanine. This enzyme plays a central role in cellular defense against genetic mutation caused by the spontaneous deamination of 5-methylcytosine and cytosine. This gene may have a pseudogene in the p arm of chromosome 12. |
| NA | ENSG00000120820 | GLT8D2 | glycosyltransferase 8 domain containing 2 | 83468 | NA |
| NA | ENSG00000111727 | HCFC2 | host cell factor C2 | 29915 | This gene encodes one of two proteins which interact with VP16, a herpes simplex virus protein that initiates virus infection. Both the encoded protein and the original Herpes host cell factor interact with VP16 through a beta-propeller domain. The original Herpes host cell factor, however, is effective at initiating viral infection while the encoded protein is not. Transcripts of varying length due to alternative polyadenylation signals have been described. |
| NA | ENSG00000120837 | NFYB | nuclear transcription factor Y subunit beta | 4801 | The protein encoded by this gene is one subunit of a trimeric complex, forming a highly conserved transcription factor that binds with high specificity to CCAAT motifs in the promoter regions in a variety of genes. This gene product, subunit B, forms a tight dimer with the C subunit, a prerequisite for subunit A association. The resulting trimer binds to DNA with high specificity and affinity. Subunits B and C each contain a histone-like motif. Observation of the histone nature of these subunits is supported by two types of evidence; protein sequence alignments and experiments with mutants. |
| NA | ENSG00000198431 | TXNRD1 | thioredoxin reductase 1 | 7296 | This gene encodes a member of the family of pyridine nucleotide oxidoreductases. This protein reduces thioredoxins as well as other substrates, and plays a role in selenium metabolism and protection against oxidative stress. The functional enzyme is thought to be a homodimer which uses FAD as a cofactor. Each subunit contains a selenocysteine (Sec) residue which is required for catalytic activity. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenocysteine-containing genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. Alternative splicing results in several transcript variants encoding the same or different isoforms. |
| NA | ENSG00000255150 | EID3 | EP300 interacting inhibitor of differentiation 3 | 493861 | NA |
| NA | ENSG00000171310 | CHST11 | carbohydrate (chondroitin 4) sulfotransferase 11 | 50515 | The protein encoded by this gene belongs to the sulfotransferase 2 family. It is localized to the golgi membrane, and catalyzes the transfer of sulfate to position 4 of the N-acetylgalactosamine (GalNAc) residue of chondroitin. Chondroitin sulfate constitutes the predominant proteoglycan present in cartilage, and is distributed on the surfaces of many cells and extracellular matrices. A chromosomal translocation involving this gene and IgH, t(12;14)(q23;q32), has been reported in a patient with B-cell chronic lymphocytic leukemia. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000136052 | SLC41A2 | solute carrier family 41 member 2 | 84102 | NA |
| NA | ENSG00000151131 | C12orf45 | chromosome 12 open reading frame 45 | 121053 | NA |
| NA | ENSG00000136010 | ALDH1L2 | aldehyde dehydrogenase 1 family member L2 | 160428 | This gene encodes a member of both the aldehyde dehydrogenase superfamily and the formyl transferase superfamily. This member is the mitochondrial form of 10-formyltetrahydrofolate dehydrogenase (FDH), which converts 10-formyltetrahydrofolate to tetrahydrofolate and CO2 in an NADP(+)-dependent reaction, and plays an essential role in the distribution of one-carbon groups between the cytosolic and mitochondrial compartments of the cell. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000136051 | KIAA1033 | KIAA1033 | 23325 | This gene encodes a component of the WASH complex, which functions in the intracellular transport of endosomes. Mutations in this gene have been detected in individuals with autosomal recessive mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136044 | APPL2 | adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 2 | 55198 | The protein encoded by this gene is one of two effectors of the small GTPase RAB5A/Rab5, which are involved in a signal transduction pathway. Both effectors contain an N-terminal Bin/Amphiphysin/Rvs (BAR) domain, a central pleckstrin homology (PH) domain, and a C-terminal phosphotyrosine binding (PTB) domain, and they bind the Rab5 through the BAR domain. They are associated with endosomal membranes and can be translocated to the nucleus in response to the EGF stimulus. They interact with the NuRD/MeCP1 complex (nucleosome remodeling and deacetylase /methyl-CpG-binding protein 1 complex) and are required for efficient cell proliferation. A chromosomal aberration t(12;22)(q24.1;q13.3) involving this gene and the PSAP2 gene results in 22q13.3 deletion syndrome, also known as Phelan-McDermid syndrome. |
| NA | ENSG00000235162 | C12orf75 | chromosome 12 open reading frame 75 | 387882 | NA |
| NA | ENSG00000074590 | NUAK1 | NUAK family kinase 1 | 9891 | NA |
| NA | ENSG00000136026 | CKAP4 | cytoskeleton-associated protein 4 | 10970 | NA |
| NA | ENSG00000013503 | POLR3B | polymerase (RNA) III subunit B | 55703 | This gene encodes the second largest subunit of RNA polymerase III, the polymerase responsible for synthesizing transfer and small ribosomal RNAs in eukaryotes. The largest subunit and the encoded protein form the catalytic center of RNA polymerase III. Mutations in this gene are a cause of hypomyelinating leukodystrophy. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000111785 | RIC8B | RIC8 guanine nucleotide exchange factor B | 55188 | NA |
| NA | ENSG00000151135 | TMEM263 | transmembrane protein 263 | 90488 | NA |
| NA | ENSG00000120832 | MTERF2 | mitochondrial transcription termination factor 2 | 80298 | NA |
| NA | ENSG00000008405 | CRY1 | cryptochrome circadian clock 1 | 1407 | This gene encodes a flavin adenine dinucleotide-binding protein that is a key component of the circadian core oscillator complex, which regulates the circadian clock. This gene is upregulated by CLOCK/ARNTL heterodimers but then represses this upregulation in a feedback loop using PER/CRY heterodimers to interact with CLOCK/ARNTL. Polymorphisms in this gene have been associated with altered sleep patterns. The encoded protein is widely conserved across plants and animals. Loss of the related gene in mouse results in a shortened circadian cycle in complete darkness. |
| NA | ENSG00000151136 | BTBD11 | BTB domain containing 11 | 121551 | NA |
| NA | ENSG00000136045 | PWP1 | PWP1 homolog, endonuclein | 11137 | The protein encoded by this gene contains several WD-40 repeats and is found mostly in the nucleus. The expression and localization of this protein are cell cycle dependent. Expression of this gene is upregulated in pancreatic adenocarcinoma. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000110851 | PRDM4 | PR domain 4 | 11108 | The protein encoded by this gene is a transcription factor of the PR-domain protein family. It contains a PR-domain and multiple zinc finger motifs. Transcription factors of the PR-domain family are known to be involved in cell differentiation and tumorigenesis. An elevated expression level of this gene has been observed in PC12 cells treated with nerve growth factor, beta polypeptide (NGF). This gene is located in a chromosomal region that is thought to contain tumor suppressor genes. |
| NA | ENSG00000075035 | WSCD2 | WSC domain containing 2 | 9671 | NA |
| NA | ENSG00000198855 | FICD | FIC domain containing | 11153 | NA |
| NA | ENSG00000075856 | SART3 | squamous cell carcinoma antigen recognized by T-cells 3 | 9733 | The protein encoded by this gene is an RNA-binding nuclear protein that is a tumor-rejection antigen. This antigen possesses tumor epitopes capable of inducing HLA-A24-restricted and tumor-specific cytotoxic T lymphocytes in cancer patients and may be useful for specific immunotherapy. This gene product is found to be an important cellular factor for HIV-1 gene expression and viral replication. It also associates transiently with U6 and U4/U6 snRNPs during the recycling phase of the spliceosome cycle. This encoded protein is thought to be involved in the regulation of mRNA splicing. |
| NA | ENSG00000136003 | ISCU | iron-sulfur cluster assembly enzyme | 23479 | This gene encodes a component of the iron-sulfur (Fe-S) cluster scaffold. Fe-S clusters are cofactors that play a role in the function of a diverse set of enzymes, including those that regulate metabolism, iron homeostasis, and oxidative stress response. Alternative splicing results in transcript variants encoding different protein isoforms that localize either to the cytosol or to the mitochondrion. Mutations in this gene have been found in patients with hereditary myopathy with lactic acidosis. A disease-associated mutation in an intron may activate a cryptic splice site, resulting in the production of a splice variant encoding a putatively non-functional protein. A pseudogene of this gene is present on chromosome 1. |
| NA | ENSG00000110880 | CORO1C | coronin 1C | 23603 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000084112 | SSH1 | slingshot protein phosphatase 1 | 54434 | The protein encoded by this gene belongs to the slingshot homolog (SSH) family of phosphatases, which regulate actin filament dynamics. The SSH proteins dephosphorylate and activate the actin binding/depolymerizing factor cofilin, which subsequently binds to actin filaments and stimulates their disassembly. Cofilin is inactivated by kinases such as LIM domain kinase-1 (LIMK1), which may also be dephosphorylated and inactivated by SSH proteins. The SSH family thus appears to play a role in actin dynamics by reactivating cofilin proteins. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000135093 | USP30 | ubiquitin specific peptidase 30 | 84749 | USP30, a member of the ubiquitin-specific protease family (see USP1, MIM 603478), is a novel mitochondrial deubiquitinating (DUB) enzyme (Nakamura and Hirose, 2008 [PubMed 18287522]). |
| NA | ENSG00000076248 | UNG | uracil DNA glycosylase | 7374 | This gene encodes one of several uracil-DNA glycosylases. One important function of uracil-DNA glycosylases is to prevent mutagenesis by eliminating uracil from DNA molecules by cleaving the N-glycosylic bond and initiating the base-excision repair (BER) pathway. Uracil bases occur from cytosine deamination or misincorporation of dUMP residues. Alternative promoter usage and splicing of this gene leads to two different isoforms: the mitochondrial UNG1 and the nuclear UNG2. The UNG2 term was used as a previous symbol for the CCNO gene (GeneID 10309), which has been confused with this gene, in the literature and some databases. |
| NA | ENSG00000076555 | ACACB | acetyl-CoA carboxylase beta | 32 | Acetyl-CoA carboxylase (ACC) is a complex multifunctional enzyme system. ACC is a biotin-containing enzyme which catalyzes the carboxylation of acetyl-CoA to malonyl-CoA, the rate-limiting step in fatty acid synthesis. ACC-beta is thought to control fatty acid oxidation by means of the ability of malonyl-CoA to inhibit carnitine-palmitoyl-CoA transferase I, the rate-limiting step in fatty acid uptake and oxidation by mitochondria. ACC-beta may be involved in the regulation of fatty acid oxidation, rather than fatty acid biosynthesis. There is evidence for the presence of two ACC-beta isoforms. |
| NA | ENSG00000110906 | KCTD10 | potassium channel tetramerization domain containing 10 | 83892 | The protein encoded by this gene binds proliferating cell nuclear antigen (PCNA) and may be involved in DNA synthesis and cell proliferation. In addition, the encoded protein may be a tumor suppressor. Several protein-coding and non-protein coding transcript variants have been found for this gene. |
| NA | ENSG00000151148 | UBE3B | ubiquitin protein ligase E3B | 89910 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: E1 ubiquitin-activating enzymes, E2 ubiquitin-conjugating enzymes, and E3 ubiquitin-protein ligases. This gene encodes a member of the E3 ubiquitin-conjugating enzyme family which accepts ubiquitin from an E2 ubiquitin-conjugating enzyme and transfers the ubiquitin to the targeted substrates. A HECT (homology to E6-AP C-terminus) domain in the C-terminus of the longer isoform of this protein is the catalytic site of ubiquitin transfer and forms a complex with E2 conjugases. Shorter isoforms of this protein which lack the C-terminal HECT domain are therefore unlikely to bind E2 enzymes. Alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000139428 | MMAB | methylmalonic aciduria (cobalamin deficiency) cblB type | 326625 | This gene encodes a protein that catalyzes the final step in the conversion of vitamin B(12) into adenosylcobalamin (AdoCbl), a vitamin B12-containing coenzyme for methylmalonyl-CoA mutase. Mutations in the gene are the cause of vitamin B12-dependent methylmalonic aciduria linked to the cblB complementation group. Alternatively spliced transcript variants have been found. |
| NA | ENSG00000110921 | MVK | mevalonate kinase | 4598 | This gene encodes the peroxisomal enzyme mevalonate kinase. Mevalonate is a key intermediate, and mevalonate kinase a key early enzyme, in isoprenoid and sterol synthesis. Mevalonate kinase deficiency caused by mutation of this gene results in mevalonic aciduria, a disease characterized psychomotor retardation, failure to thrive, hepatosplenomegaly, anemia and recurrent febrile crises. Defects in this gene also cause hyperimmunoglobulinaemia D and periodic fever syndrome, a disorder characterized by recurrent episodes of fever associated with lymphadenopathy, arthralgia, gastrointestinal dismay and skin rash. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000139438 | FAM222A | family with sequence similarity 222 member A | 84915 | NA |
| NA | ENSG00000139433 | GLTP | glycolipid transfer protein | 51228 | The protein encoded by this gene is similar to bovine and porcine proteins which accelerate transfer of certain glycosphingolipids and glyceroglycolipids between membranes. It is thought to be a cytoplasmic protein. |
| NA | ENSG00000139437 | TCHP | trichoplein keratin filament binding | 84260 | NA |
| NA | ENSG00000139436 | GIT2 | GIT ArfGAP 2 | 9815 | This gene encodes a member of the GIT protein family, which interact with G protein-coupled receptor kinases and possess ADP-ribosylation factor (ARF) GTPase-activating protein (GAP) activity. GIT proteins traffic between cytoplasmic complexes, focal adhesions, and the cell periphery, and interact with Pak interacting exchange factor beta (PIX) to form large oligomeric complexes that transiently recruit other proteins. GIT proteins regulate cytoskeletal dynamics and participate in receptor internalization and membrane trafficking. This gene has been shown to repress lamellipodial extension and focal adhesion turnover, and is thought to regulate cell motility. This gene undergoes extensive alternative splicing to generate multiple isoforms, but the full-length nature of some of these variants has not been determined. The various isoforms have functional differences, with respect to ARF GAP activity and to G protein-coupled receptor kinase 2 binding. |
| NA | ENSG00000076513 | ANKRD13A | ankyrin repeat domain 13A | 88455 | NA |
| NA | ENSG00000174456 | C12orf76 | chromosome 12 open reading frame 76 | 400073 | NA |
| NA | ENSG00000122970 | IFT81 | intraflagellar transport 81 | 28981 | NA |
| NA | ENSG00000174437 | ATP2A2 | ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 2 | 488 | This gene encodes one of the SERCA Ca(2+)-ATPases, which are intracellular pumps located in the sarcoplasmic or endoplasmic reticula of muscle cells. This enzyme catalyzes the hydrolysis of ATP coupled with the translocation of calcium from the cytosol into the sarcoplasmic reticulum lumen, and is involved in regulation of the contraction/relaxation cycle. Mutations in this gene cause Darier-White disease, also known as keratosis follicularis, an autosomal dominant skin disorder characterized by loss of adhesion between epidermal cells and abnormal keratinization. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000111229 | ARPC3 | actin related protein 2/3 complex subunit 3 | 10094 | This gene encodes one of seven subunits of the human Arp2/3 protein complex. The Arp2/3 protein complex has been conserved through evolution and is implicated in the control of actin polymerization in cells. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000111231 | GPN3 | GPN-loop GTPase 3 | 51184 | NA |
| NA | ENSG00000204856 | FAM216A | family with sequence similarity 216 member A | 29902 | NA |
| NA | ENSG00000111237 | VPS29 | VPS29, retromer complex component | 51699 | This gene belongs to a group of vacuolar protein sorting (VPS) genes that, when functionally impaired, disrupt the efficient delivery of vacuolar hydrolases. The protein encoded by this gene is a component of a large multimeric complex, termed the retromer complex, which is involved in retrograde transport of proteins from endosomes to the trans-Golgi network. This VPS protein may be involved in the formation of the inner shell of the retromer coat for retrograde vesicles leaving the prevacuolar compartment. Alternative splice variants encoding different isoforms and representing non-protein coding transcripts have been found for this gene. |
| NA | ENSG00000196850 | PPTC7 | PTC7 protein phosphatase homolog | 160760 | NA |
| NA | ENSG00000204852 | TCTN1 | tectonic family member 1 | 79600 | This gene encodes a member of a family of secreted and transmembrane proteins. The orthologous gene in mouse functions downstream of smoothened and rab23 to modulate hedgehog signal transduction. This protein is a component of the tectonic-like complex, which forms a barrier between the ciliary axoneme and the basal body. A mutation in this gene was found in a family with Joubert syndrome-13. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000122986 | HVCN1 | hydrogen voltage gated channel 1 | 84329 | This gene encodes a voltage-gated protein channel protein expressed more highly in certain cells of the immune system. Phagocytic cells produce superoxide anions which require this channel protein, and in B cells this same process facilitates antibody production. This same channel protein, however, can also regulate functions in other cells including spermatozoa. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000186298 | PPP1CC | protein phosphatase 1 catalytic subunit gamma | 5501 | The protein encoded by this gene belongs to the protein phosphatase family, PP1 subfamily. PP1 is an ubiquitous serine/threonine phosphatase that regulates many cellular processes, including cell division. It is expressed in mammalian cells as three closely related isoforms, alpha, beta/delta and gamma, which have distinct localization patterns. This gene encodes the gamma isozyme. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000111249 | CUX2 | cut like homeobox 2 | 23316 | This gene encodes a protein which contains three CUT domains and a homeodomain; both domains are DNA-binding motifs. A similar gene, whose gene product possesses different DNA-binding activities, is located on chromosome on chromosome 7. Two pseudogenes of this gene have been identified on chromosomes 10 and 4. |
| NA | ENSG00000198324 | FAM109A | family with sequence similarity 109 member A | 144717 | This gene encodes a protein that localizes to the endosome and interacts with the enzyme, inositol polyphosphate 5-phosphatase OCRL-1. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000111252 | SH2B3 | SH2B adaptor protein 3 | 10019 | This gene encodes a member of the SH2B adaptor family of proteins, which are involved in a range of signaling activities by growth factor and cytokine receptors. The encoded protein is a key negative regulator of cytokine signaling and plays a critical role in hematopoiesis. Mutations in this gene have been associated with susceptibility to celiac disease type 13 and susceptibility to insulin-dependent diabetes mellitus. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000204842 | ATXN2 | ataxin 2 | 6311 | This gene belongs to a group of genes that is associated with microsatellite-expansion diseases, a class of neurological and neuromuscular disorders caused by expansion of short stretches of repetitive DNA. The protein encoded by this gene has two globular domains near the N-terminus, one of which contains a clathrin-mediated trans-Golgi signal and an endoplasmic reticulum exit signal. The protein is primarily localized to the Golgi apparatus, with deletion of the Golgi and endoplasmic reticulum signals resulting in abnormal subcellular localization. In addition, the N-terminal region contains a polyglutamine tract. Intermediate length expansions of this tract increase susceptibility to amyotrophic lateral sclerosis, while long expansions of this tract result in spinocerebellar ataxia-2, an autosomal-dominantly inherited, neurodegenerative disorder. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000089234 | BRAP | BRCA1 associated protein | 8315 | The protein encoded by this gene was identified by its ability to bind to the nuclear localization signal of BRCA1 and other proteins. It is a cytoplasmic protein which may regulate nuclear targeting by retaining proteins with a nuclear localization signal in the cytoplasm. |
| NA | ENSG00000111271 | ACAD10 | acyl-CoA dehydrogenase family member 10 | 80724 | This gene encodes a member of the acyl-CoA dehydrogenase family of enzymes (ACADs), which participate in the beta-oxidation of fatty acids in mitochondria. The encoded enzyme contains a hydrolase domain at the N-terminal portion, a serine/threonine protein kinase catlytic domain in the central region, and a conserved ACAD domain at the C-terminus. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000111275 | ALDH2 | aldehyde dehydrogenase 2 family (mitochondrial) | 217 | This protein belongs to the aldehyde dehydrogenase family of proteins. Aldehyde dehydrogenase is the second enzyme of the major oxidative pathway of alcohol metabolism. Two major liver isoforms of aldehyde dehydrogenase, cytosolic and mitochondrial, can be distinguished by their electrophoretic mobilities, kinetic properties, and subcellular localizations. Most Caucasians have two major isozymes, while approximately 50% of Orientals have the cytosolic isozyme but not the mitochondrial isozyme. A remarkably higher frequency of acute alcohol intoxication among Orientals than among Caucasians could be related to the absence of a catalytically active form of the mitochondrial isozyme. The increased exposure to acetaldehyde in individuals with the catalytically inactive form may also confer greater susceptibility to many types of cancer. This gene encodes a mitochondrial isoform, which has a low Km for acetaldehydes, and is localized in mitochondrial matrix. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000089022 | MAPKAPK5 | mitogen-activated protein kinase-activated protein kinase 5 | 8550 | The protein encoded by this gene is a tumor suppressor and member of the serine/threonine kinase family. In response to cellular stress and proinflammatory cytokines, this kinase is activated through its phosphorylation by MAP kinases including MAPK1/ERK, MAPK14/p38-alpha, and MAPK11/p38-beta. The encoded protein is found in the nucleus but translocates to the cytoplasm upon phosphorylation and activation. This kinase phosphorylates heat shock protein HSP27 at its physiologically relevant sites. Two alternately spliced transcript variants of this gene encoding distinct isoforms have been reported. |
| NA | ENSG00000198270 | TMEM116 | transmembrane protein 116 | 89894 | NA |
| NA | ENSG00000089248 | ERP29 | endoplasmic reticulum protein 29 | 10961 | This gene encodes a reticuloplasmin, a protein which resides in the lumen of the endoplasmic reticulum (ER). The protein shows sequence similarity to the protein disulfide isomerase family. However, it lacks the thioredoxin motif characteristic of this family, suggesting that this protein does not function as a disulfide isomerase. The protein dimerizes and is thought to play a role in the processing of secretory proteins within the ER. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000111300 | NAA25 | N(alpha)-acetyltransferase 25, NatB auxiliary subunit | 80018 | This gene encodes the auxiliary subunit of the heteromeric N-terminal acetyltransferase B complex. This complex acetylates methionine residues that are followed by acidic or asparagine residues. |
| NA | ENSG00000135148 | TRAFD1 | TRAF-type zinc finger domain containing 1 | 10906 | The innate immune system confers host defense against viral and microbial infection, and TRAFD1 is a negative feedback regulator that controls excessive immune responses (Sanada et al., 2008 [PubMed 18849341]). |
| NA | ENSG00000173064 | HECTD4 | HECT domain E3 ubiquitin protein ligase 4 | 283450 | NA |
| NA | ENSG00000089009 | RPL6 | ribosomal protein L6 | 6128 | This gene encodes a protein component of the 60S ribosomal subunit. This protein can bind specifically to domain C of the tax-responsive enhancer element of human T-cell leukemia virus type 1, and may participate in tax-mediated transactivation of transcription. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed throughout the genome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000179295 | PTPN11 | protein tyrosine phosphatase, non-receptor type 11 | 5781 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP contains two tandem Src homology-2 domains, which function as phospho-tyrosine binding domains and mediate the interaction of this PTP with its substrates. This PTP is widely expressed in most tissues and plays a regulatory role in various cell signaling events that are important for a diversity of cell functions, such as mitogenic activation, metabolic control, transcription regulation, and cell migration. Mutations in this gene are a cause of Noonan syndrome as well as acute myeloid leukemia. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000111331 | OAS3 | 2’-5’-oligoadenylate synthetase 3 | 4940 | This gene encodes an enzyme included in the 2’, 5’ oligoadenylate synthase family. This enzyme is induced by interferons and catalyzes the 2’, 5’ oligomers of adenosine in order to bind and activate RNase L. This enzyme family plays a significant role in the inhibition of cellular protein synthesis and viral infection resistance. |
| NA | ENSG00000135144 | DTX1 | deltex 1 | 1840 | Studies in Drosophila have identified this gene as encoding a positive regulator of the Notch-signaling pathway. The human gene encodes a protein of unknown function; however, it may play a role in basic helix-loop-helix transcription factor activity. |
| NA | ENSG00000123064 | DDX54 | DEAD-box helicase 54 | 79039 | This gene encodes a member of the DEAD box protein family. DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. The nucleolar protein encoded by this gene interacts in a hormone-dependent manner with nuclear receptors, and represses their transcriptional activity. Alternative splice variants that encode different isoforms have been found for this gene. |
| NA | ENSG00000139405 | RITA1 | RBPJ interacting and tubulin associated 1 | 84934 | NA |
| NA | ENSG00000166578 | IQCD | IQ motif containing D | 115811 | NA |
| NA | ENSG00000186815 | TPCN1 | two pore segment channel 1 | 53373 | Voltage-gated Ca(2+) and Na+ channels have 4 homologous domains, each containing 6 transmembrane segments, S1 to S6. TPCN1 is similar to these channels, but it has only 2 domains containing S1 to S6 (Ishibashi et al., 2000 [PubMed 10753632]). |
| NA | ENSG00000089060 | SLC8B1 | solute carrier family 8 member B1 | 80024 | SLC24A6 belongs to a family of potassium-dependent sodium/calcium exchangers that maintain cellular calcium homeostasis through the electrogenic countertransport of 4 sodium ions for 1 calcium ion and 1 potassium ion (Cai and Lytton, 2004 [PubMed 14625281]). |
| NA | ENSG00000151176 | PLBD2 | phospholipase B domain containing 2 | 196463 | NA |
| NA | ENSG00000089116 | LHX5 | LIM homeobox 5 | 64211 | This gene encodes a protein belonging to a large protein family, members of which carry the LIM domain, a unique cysteine-rich zinc-binding domain. The encoded protein may function as a transcriptional regulator and be involved in the control of differentiation and development of the forebrain. In mice, this protein is essential for the regulation of precursor cell proliferation and the control of neuronal differentiation and migration during hippocampal development. This protein is involved in learning and motor functions in adult mice. |
| NA | ENSG00000122965 | RBM19 | RNA binding motif protein 19 | 9904 | This gene encodes a nucleolar protein that contains six RNA-binding motifs. The encoded protein may be involved in regulating ribosome biogenesis. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000123066 | MED13L | mediator complex subunit 13 like | 23389 | The protein encoded by this gene is a subunit of the Mediator complex, a large complex of proteins that functions as a transcriptional coactivator for most RNA polymerase II-transcribed genes. The encoded protein is involved in early development of the heart and brain. Defects in this gene are a cause of transposition of the great arteries, dextro-looped (DTGA). |
| TRUE | ENSG00000171471 | NA | NA | NA | NA |
| NA | ENSG00000111412 | C12orf49 | chromosome 12 open reading frame 49 | 79794 | NA |
| NA | ENSG00000135119 | RNFT2 | ring finger protein, transmembrane 2 | 84900 | NA |
| NA | ENSG00000135116 | HRK | harakiri, BCL2 interacting protein | 8739 | This gene encodes a member of the BCL-2 protein family. Members of this family are involved in activating or inhibiting apoptosis. The encoded protein localizes to intracellular membranes. This protein promotes apoptosis by interacting with the apoptotic inhibitors BCL-2 and BCL-X(L) via its BH3 domain. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000174989 | FBXW8 | F-box and WD repeat domain containing 8 | 26259 | This gene encodes a member of the F-box protein family, members of which are characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into three classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene contains a WD-40 domain, in addition to an F-box motif, so it belongs to the Fbw class. Alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000088992 | TESC | tescalcin | 54997 | NA |
| NA | ENSG00000135108 | FBXO21 | F-box protein 21 | 23014 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class. Alternative splicing of this gene generates 2 transcript variants. |
| NA | ENSG00000089250 | NOS1 | nitric oxide synthase 1 | 4842 | The protein encoded by this gene belongs to the family of nitric oxide synthases, which synthesize nitric oxide from L-arginine. Nitric oxide is a reactive free radical, which acts as a biologic mediator in several processes, including neurotransmission, and antimicrobial and antitumoral activities. In the brain and peripheral nervous system, nitric oxide displays many properties of a neurotransmitter, and has been implicated in neurotoxicity associated with stroke and neurodegenerative diseases, neural regulation of smooth muscle, including peristalsis, and penile erection. This protein is ubiquitously expressed, with high level of expression in skeletal muscle. Multiple transcript variants that differ in the 5’ UTR have been described for this gene but the full-length nature of these transcripts is not known. Additionally, alternatively spliced transcript variants encoding different isoforms (some testis-specific) have been found for this gene. |
| NA | ENSG00000171435 | KSR2 | kinase suppressor of ras 2 | 283455 | NA |
| NA | ENSG00000176871 | WSB2 | WD repeat and SOCS box containing 2 | 55884 | This gene encodes a member of the WD-protein subfamily. The encoded protein contains five WD-repeats spanning most of the protein and an SOCS box in the C-terminus. The SOCS box may act as a bridge between specific substrate-binding domains and E3 ubiquitin protein ligases. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000176834 | VSIG10 | V-set and immunoglobulin domain containing 10 | 54621 | NA |
| NA | ENSG00000089220 | PEBP1 | phosphatidylethanolamine binding protein 1 | 5037 | This gene encodes a member of the phosphatidylethanolamine-binding family of proteins and has been shown to modulate multiple signaling pathways, including the MAP kinase (MAPK), NF-kappa B, and glycogen synthase kinase-3 (GSK-3) signaling pathways. The encoded protein can be further processed to form a smaller cleavage product, hippocampal cholinergic neurostimulating peptide (HCNP), which may be involved in neural development. This gene has been implicated in numerous human cancers and may act as a metastasis suppressor gene. Multiple pseudogenes of this gene have been identified in the genome. |
| NA | ENSG00000135090 | TAOK3 | TAO kinase 3 | 51347 | NA |
| NA | ENSG00000111707 | SUDS3 | SDS3 homolog, SIN3A corepressor complex component | 64426 | SDS3 is a subunit of the histone deacetylase (see HDAC1; MIM 601241)-dependent SIN3A (MIM 607776) corepressor complex (Fleischer et al., 2003 [PubMed 12724404]). |
| NA | ENSG00000139767 | SRRM4 | serine/arginine repetitive matrix 4 | 84530 | SRRM4 promotes alternative splicing and inclusion of neural-specific exons in target mRNAs (Calarco et al., 2009 [PubMed 19737518]). |
| NA | ENSG00000152137 | HSPB8 | heat shock protein family B (small) member 8 | 26353 | The protein encoded by this gene belongs to the superfamily of small heat-shock proteins containing a conservative alpha-crystallin domain at the C-terminal part of the molecule. The expression of this gene in induced by estrogen in estrogen receptor-positive breast cancer cells, and this protein also functions as a chaperone in association with Bag3, a stimulator of macroautophagy. Thus, this gene appears to be involved in regulation of cell proliferation, apoptosis, and carcinogenesis, and mutations in this gene have been associated with different neuromuscular diseases, including Charcot-Marie-Tooth disease. |
| NA | ENSG00000111725 | PRKAB1 | protein kinase AMP-activated non-catalytic subunit beta 1 | 5564 | The protein encoded by this gene is a regulatory subunit of the AMP-activated protein kinase (AMPK). AMPK is a heterotrimer consisting of an alpha catalytic subunit, and non-catalytic beta and gamma subunits. AMPK is an important energy-sensing enzyme that monitors cellular energy status. In response to cellular metabolic stresses, AMPK is activated, and thus phosphorylates and inactivates acetyl-CoA carboxylase (ACC) and beta-hydroxy beta-methylglutaryl-CoA reductase (HMGCR), key enzymes involved in regulating de novo biosynthesis of fatty acid and cholesterol. This subunit may be a positive regulator of AMPK activity. The myristoylation and phosphorylation of this subunit have been shown to affect the enzyme activity and cellular localization of AMPK. This subunit may also serve as an adaptor molecule mediating the association of the AMPK complex. |
| NA | ENSG00000135127 | CCDC64 | coiled-coil domain containing 64 | 92558 | NA |
| NA | ENSG00000111737 | RAB35 | RAB35, member RAS oncogene family | 11021 | NA |
| NA | ENSG00000089154 | GCN1 | GCN1, eIF2 alpha kinase activator homolog | 10985 | NA |
| NA | ENSG00000089157 | RPLP0 | ribosomal protein lateral stalk subunit P0 | 6175 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein, which is the functional equivalent of the E. coli L10 ribosomal protein, belongs to the L10P family of ribosomal proteins. It is a neutral phosphoprotein with a C-terminal end that is nearly identical to the C-terminal ends of the acidic ribosomal phosphoproteins P1 and P2. The P0 protein can interact with P1 and P2 to form a pentameric complex consisting of P1 and P2 dimers, and a P0 monomer. The protein is located in the cytoplasm. Transcript variants derived from alternative splicing exist; they encode the same protein. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000089159 | PXN | paxillin | 5829 | This gene encodes a cytoskeletal protein involved in actin-membrane attachment at sites of cell adhesion to the extracellular matrix (focal adhesion). Alternatively spliced transcript variants encoding different isoforms have been described for this gene. These isoforms exhibit different expression pattern, and have different biochemical, as well as physiological properties (PMID:9054445). |
| NA | ENSG00000089163 | SIRT4 | sirtuin 4 | 23409 | This gene encodes a member of the sirtuin family of proteins, homologs to the yeast Sir2 protein. Members of the sirtuin family are characterized by a sirtuin core domain and grouped into four classes. The functions of human sirtuins have not yet been determined; however, yeast sirtuin proteins are known to regulate epigenetic gene silencing and suppress recombination of rDNA. Studies suggest that the human sirtuins may function as intracellular regulatory proteins with mono-ADP-ribosyltransferase activity. The protein encoded by this gene is included in class IV of the sirtuin family. |
| NA | ENSG00000135097 | MSI1 | musashi RNA binding protein 1 | 4440 | This gene encodes a protein containing two conserved tandem RNA recognition motifs. Similar proteins in other species function as RNA-binding proteins and play central roles in posttranscriptional gene regulation. Expression of this gene has been correlated with the grade of the malignancy and proliferative activity in gliomas and melanomas. A pseudogene for this gene is located on chromosome 11q13. |
| NA | ENSG00000111775 | COX6A1 | cytochrome c oxidase subunit 6A1 | 1337 | Cytochrome c oxidase (COX), the terminal enzyme of the mitochondrial respiratory chain, catalyzes the electron transfer from reduced cytochrome c to oxygen. It is a heteromeric complex consisting of 3 catalytic subunits encoded by mitochondrial genes and multiple structural subunits encoded by nuclear genes. The mitochondrially-encoded subunits function in the electron transfer and the nuclear-encoded subunits may function in the regulation and assembly of the complex. This nuclear gene encodes polypeptide 1 (liver isoform) of subunit VIa, and polypeptide 1 is found in all non-muscle tissues. Polypeptide 2 (heart/muscle isoform) of subunit VIa is encoded by a different gene, and is present only in striated muscles. These two polypeptides share 66% amino acid sequence identity. It has been reported that there may be several pseudogenes on chromosomes 1, 6, 7q21, 7q31-32 and 12. However, only one pseudogene (COX6A1P) on chromosome 1p31.1 has been documented. |
| NA | ENSG00000170855 | TRIAP1 | TP53 regulated inhibitor of apoptosis 1 | 51499 | NA |
| NA | ENSG00000257218 | GATC | glutamyl-tRNA(Gln) amidotransferase, subunit C | 283459 | NA |
| NA | ENSG00000111786 | SRSF9 | serine/arginine-rich splicing factor 9 | 8683 | The protein encoded by this gene is a member of the serine/arginine (SR)-rich family of pre-mRNA splicing factors, which constitute part of the spliceosome. Each of these factors contains an RNA recognition motif (RRM) for binding RNA and an RS domain for binding other proteins. The RS domain is rich in serine and arginine residues and facilitates interaction between different SR splicing factors. In addition to being critical for mRNA splicing, the SR proteins have also been shown to be involved in mRNA export from the nucleus and in translation. Two pseudogenes, one on chromosome 15 and the other on chromosome 21, have been found for this gene. |
| NA | ENSG00000088986 | DYNLL1 | dynein light chain LC8-type 1 | 8655 | Cytoplasmic dyneins are large enzyme complexes with a molecular mass of about 1,200 kD. They contain two force-producing heads formed primarily from dynein heavy chains, and stalks linking the heads to a basal domain, which contains a varying number of accessory intermediate chains. The complex is involved in intracellular transport and motility. The protein described in this record is a light chain and exists as part of this complex but also physically interacts with and inhibits the activity of neuronal nitric oxide synthase. Binding of this protein destabilizes the neuronal nitric oxide synthase dimer, a conformation necessary for activity, and it may regulate numerous biologic processes through its effects on nitric oxide synthase activity. Alternate transcriptional splice variants have been characterized. |
| NA | ENSG00000110871 | COQ5 | coenzyme Q5, methyltransferase | 84274 | NA |
| NA | ENSG00000022840 | RNF10 | ring finger protein 10 | 9921 | The protein encoded by this gene contains a ring finger motif, which is known to be involved in protein-protein interactions. The specific function of this protein has not yet been determined. EST data suggests the existence of multiple alternatively spliced transcript variants, however, their full length nature is not known. |
| NA | ENSG00000167272 | POP5 | POP5 homolog, ribonuclease P/MRP subunit | 51367 | NA |
| NA | ENSG00000110917 | MLEC | malectin | 9761 | This gene encodes the carbohydrate-binding protein malectin which is a Type I membrane-anchored endoplasmic reticulum protein. This protein has an affinity for Glc2Man9GlcNAc2 (G2M9) N-glycans and is involved in regulating glycosylation in the endoplasmic reticulum. This protein has also been shown to interact with ribophorin I and may be involved in the directing the degradation of misfolded proteins. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000175970 | UNC119B | unc-119 lipid binding chaperone B | 84747 | NA |
| NA | ENSG00000122971 | ACADS | acyl-CoA dehydrogenase, C-2 to C-3 short chain | 35 | This gene encodes a tetrameric mitochondrial flavoprotein, which is a member of the acyl-CoA dehydrogenase family. This enzyme catalyzes the initial step of the mitochondrial fatty acid beta-oxidation pathway. Mutations in this gene have been associated with short-chain acyl-CoA dehydrogenase (SCAD) deficiency. Alternative splicing results in two variants which encode different isoforms. |
| NA | ENSG00000157837 | SPPL3 | signal peptide peptidase like 3 | 121665 | NA |
| NA | ENSG00000157895 | C12orf43 | chromosome 12 open reading frame 43 | 64897 | NA |
| NA | ENSG00000135124 | P2RX4 | purinergic receptor P2X 4 | 5025 | The product of this gene belongs to the family of purinoceptors for ATP. This receptor functions as a ligand-gated ion channel with high calcium permeability. The main pharmacological distinction between the members of the purinoceptor family is the relative sensitivity to the antagonists suramin and PPADS. The product of this gene has the lowest sensitivity for these antagonists. Multiple alternatively spliced transcript variants, some protein-coding and some not protein-coding, have been found for this gene. |
| NA | ENSG00000110931 | CAMKK2 | calcium/calmodulin-dependent protein kinase kinase 2 | 10645 | The product of this gene belongs to the Serine/Threonine protein kinase family, and to the Ca(2+)/calmodulin-dependent protein kinase subfamily. The major isoform of this gene plays a role in the calcium/calmodulin-dependent (CaM) kinase cascade by phosphorylating the downstream kinases CaMK1 and CaMK4. Protein products of this gene also phosphorylate AMP-activated protein kinase (AMPK). This gene has its strongest expression in the brain and influences signalling cascades involved with learning and memory, neuronal differentiation and migration, neurite outgrowth, and synapse formation. Alternative splicing results in multiple transcript variants encoding distinct isoforms. The identified isoforms differ in their ability to undergo autophosphorylation and to phosphorylate downstream kinases. |
| NA | ENSG00000089053 | ANAPC5 | anaphase promoting complex subunit 5 | 51433 | This gene encodes a tetratricopeptide repeat-containing component of the anaphase promoting complex/cyclosome (APC/C), a large E3 ubiquitin ligase that controls cell cycle progression by targeting a number of cell cycle regulators such as B-type cyclins for 26S proteasome-mediated degradation through ubiquitination. The encoded protein is required for the proper ubiquitination function of APC/C and for the interaction of APC/C with transcription coactivators. It also interacts with polyA binding protein and represses internal ribosome entry site-mediated translation. Multiple transcript variants encoding different isoforms have been found for this gene. These differences cause translation initiation at a downstream AUG and result in a shorter protein (isoform b), compared to isoform a. |
| NA | ENSG00000170633 | RNF34 | ring finger protein 34 | 80196 | The protein encoded by this gene contains a RINF finger, a motif known to be involved in protein-protein and protein-DNA interactions. This protein interacts with DNAJA3/hTid-1, which is a DnaJ protein reported to function as a modulator of apoptosis. Overexpression of this gene in Hela cells was shown to confer the resistance to TNF-alpha induced apoptosis, suggesting an anti-apoptotic function of this protein. This protein can be cleaved by caspase-3 during the induction of apoptosis. This protein also targets p53 and phospho-p53 for degradation. Alternatively splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000089094 | KDM2B | lysine demethylase 2B | 84678 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbls class. Multiple alternatively spliced transcript variants have been found for this gene, but the full-length nature of some variants has not been determined. |
| TRUE | ENSG00000182500 | NA | NA | NA | NA |
| NA | ENSG00000188735 | TMEM120B | transmembrane protein 120B | 144404 | NA |
| NA | ENSG00000139725 | RHOF | ras homolog family member F (in filopodia) | 54509 | NA |
| NA | ENSG00000139718 | SETD1B | SET domain containing 1B | 23067 | SET1B is a component of a histone methyltransferase complex that produces trimethylated histone H3 at Lys4 (Lee et al., 2007 [PubMed 17355966]). |
| NA | ENSG00000110801 | PSMD9 | proteasome 26S subunit, non-ATPase 9 | 5715 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a non-ATPase subunit of the 19S regulator. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000110987 | BCL7A | B-cell CLL/lymphoma 7A | 605 | This gene is directly involved, with Myc and IgH, in a three-way gene translocation in a Burkitt lymphoma cell line. As a result of the gene translocation, the N-terminal region of the gene product is disrupted, which is thought to be related to the pathogenesis of a subset of high-grade B cell non-Hodgkin lymphoma. The N-terminal segment involved in the translocation includes the region that shares a strong sequence similarity with those of BCL7B and BCL7C. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000175727 | MLXIP | MLX interacting protein | 22877 | This gene encodes a protein that functions as part of a heterodimer to activate transcription. The encoded protein forms a heterodimer with Max-like protein X (MLX) and is involved in the regulation of genes in response to cellular glucose levels. |
| NA | ENSG00000184047 | DIABLO | diablo IAP-binding mitochondrial protein | 56616 | This gene encodes an inhibitor of apoptosis protein (IAP)-binding protein. The encoded mitochondrial protein enters the cytosol when cells undergo apoptosis, and allows activation of caspases by binding to inhibitor of apoptosis proteins. Overexpression of the encoded protein sensitizes tumor cells to apoptosis. A mutation in this gene is associated with young-adult onset of nonsyndromic deafness-64. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000139719 | VPS33A | VPS33A, CORVET/HOPS core subunit | 65082 | Vesicle mediated protein sorting plays an important role in segregation of intracellular molecules into distinct organelles. Genetic studies in yeast have identified more than 40 vacuolar protein sorting (VPS) genes involved in vesicle transport to vacuoles. This gene is a member of the Sec-1 domain family, and it encodes a protein similar to the yeast class C Vps33 protein. The mammalian class C VPS proteins are predominantly associated with late endosomes/lysosomes, and like their yeast counterparts, may mediate vesicle trafficking steps in the endosome/lysosome pathway. |
| NA | ENSG00000130779 | CLIP1 | CAP-Gly domain containing linker protein 1 | 6249 | The protein encoded by this gene links endocytic vesicles to microtubules. This gene is highly expressed in Reed-Sternberg cells of Hodgkin disease. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000033030 | ZCCHC8 | zinc finger CCHC-type containing 8 | 55596 | NA |
| NA | ENSG00000111011 | RSRC2 | arginine/serine-rich coiled-coil 2 | 65117 | NA |
| NA | ENSG00000184445 | KNTC1 | kinetochore associated 1 | 9735 | This gene encodes a protein that is one of many involved in mechanisms to ensure proper chromosome segregation during cell division. Experimental evidence indicated that the encoded protein functioned in a similar manner to that of the Drosophila rough deal protein. |
| NA | ENSG00000139726 | DENR | density-regulated protein | 8562 | This gene encodes a protein whose expression was found to increase in cultured cells at high density but not during growth arrest. This gene was also shown to have increased expression in cells overexpressing HER-2/neu proto-oncogene. The protein contains an SUI1 domain. In budding yeast, SUI1 is a translation initiation factor that along with eIF-2 and the initiator tRNA-Met, directs the ribosome to the proper translation start site. Proteins similar to SUI have been found in mammals, insects, and plants. |
| NA | ENSG00000130787 | HIP1R | huntingtin interacting protein 1 related | 9026 | NA |
| NA | ENSG00000139722 | VPS37B | VPS37B, ESCRT-I subunit | 79720 | NA |
| NA | ENSG00000150967 | ABCB9 | ATP binding cassette subfamily B member 9 | 23457 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MDR/TAP subfamily. Members of the MDR/TAP subfamily are involved in multidrug resistance as well as antigen presentation. This family member functions in the translocation of peptides from the cytosol into the lysosomal lumen. Alternative splicing of this gene results in distinct isoforms which are likely to have different substrate specificities. |
| NA | ENSG00000111325 | OGFOD2 | 2-oxoglutarate and iron dependent oxygenase domain containing 2 | 79676 | NA |
| NA | ENSG00000182196 | ARL6IP4 | ADP ribosylation factor like GTPase 6 interacting protein 4 | 51329 | NA |
| NA | ENSG00000051825 | MPHOSPH9 | M-phase phosphoprotein 9 | 10198 | NA |
| NA | ENSG00000111328 | CDK2AP1 | cyclin-dependent kinase 2 associated protein 1 | 8099 | The protein encoded by this gene is a cyclin-dependent kinase 2 (CDK2) -associated protein which is thought to negatively regulate CDK2 activity by sequestering monomeric CDK2, and targeting CDK2 for proteolysis. This protein was found to also interact with DNA polymerase alpha/primase and mediate the phosphorylation of the large p180 subunit, which suggests a regulatory role in DNA replication during the S-phase of the cell cycle. This protein also forms a core subunit of the nucleosome remodeling and histone deacetylation (NURD) complex that epigenetically regulates embryonic stem cell differentiation. This gene thus plays a role in both cell-cycle and epigenetic regulation. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000139697 | SBNO1 | strawberry notch homolog 1 (Drosophila) | 55206 | NA |
| NA | ENSG00000183955 | KMT5A | lysine methyltransferase 5A | 387893 | NA |
| NA | ENSG00000150977 | RILPL2 | Rab interacting lysosomal protein like 2 | 196383 | This gene encodes a protein that contains a rab-interacting lysosomal protein-like domain. This protein may be involved in regulating lysosome morphology. This protein may also be a target for the Hepatitis C virus and assist in viral replication. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000184209 | SNRNP35 | small nuclear ribonucleoprotein U11/U12 subunit 35 | 11066 | The protein encoded by this gene is a homolog of the U1-snRNP binding protein. The N-terminal half contains a RNA recognition motif and the C-terminal half is rich in Arg/Asp and Arg/Glu dipeptides, which is a characteristic of a variety of splicing factors. This protein is a component of the U11/U12 small nuclear ribonucleoproteins (snRNP) that form part of the U12-type spliceosome. Alternative splicing results in multiple transcript variants encoding two distinct isoforms and representing a non-protein coding variant. |
| NA | ENSG00000188026 | RILPL1 | Rab interacting lysosomal protein-like 1 | 353116 | NA |
| NA | ENSG00000086598 | TMED2 | transmembrane p24 trafficking protein 2 | 10959 | NA |
| NA | ENSG00000111364 | DDX55 | DEAD-box helicase 55 | 57696 | This gene encodes a member of protein family containing a characteristic Asp-Glu-Ala-Asp (DEAD) motif. These proteins are putative RNA helicases, and may be involved in a range of nuclear processes including translational initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Multiple alternatively spliced transcript variants have been found for this gene. Pseudogenes have been identified on chromosomes 1 and 12. |
| NA | ENSG00000111361 | EIF2B1 | eukaryotic translation initiation factor 2B subunit alpha | 1967 | This gene encodes one of five subunits of eukaryotic translation initiation factor 2B (EIF2B), a GTP exchange factor for eukaryotic initiation factor 2 and an essential regulator for protein synthesis. Mutations in this gene and the genes encoding other EIF2B subunits have been associated with leukoencephalopathy with vanishing white matter. |
| NA | ENSG00000111358 | GTF2H3 | general transcription factor IIH subunit 3 | 2967 | This gene encodes a member of the TFB4 family. The encoded protein is a subunit of the core-TFIIH basal transcription factor and localizes to the nucleus. The encoded protein is involved in RNA transcription by RNA polymerase II and nucleotide excision repair and associates with the Cdk-activating kinase complex. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 14. |
| NA | ENSG00000168778 | TCTN2 | tectonic family member 2 | 79867 | This gene encodes a type I membrane protein that belongs to the tectonic family. Studies in mice suggest that this protein may be involved in hedgehog signaling, and essential for ciliogenesis. Mutations in this gene are associated with Meckel syndrome type 8. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000185344 | ATP6V0A2 | ATPase H+ transporting V0 subunit a2 | 23545 | The protein encoded by this gene is a subunit of the vacuolar ATPase (v-ATPase), an heteromultimeric enzyme that is present in intracellular vesicles and in the plasma membrane of specialized cells, and which is essential for the acidification of diverse cellular components. V-ATPase is comprised of a membrane peripheral V(1) domain for ATP hydrolysis, and an integral membrane V(0) domain for proton translocation. The subunit encoded by this gene is a component of the V(0) domain. Mutations in this gene are a cause of both cutis laxa type II and wrinkly skin syndrome. |
| NA | ENSG00000179195 | ZNF664 | zinc finger protein 664 | 144348 | NA |
| NA | ENSG00000178882 | ZNF664-FAM101A | filamin-interacting protein FAM101A | 100533183 | This locus represents naturally occurring read-through transcription between the neighboring zinc finger protein 664 (GeneID 144348) and hypothetical protein LOC144347 (GeneID 144347) genes on chromosome 12. The read-through transcript produces a protein that shares sequence identity with the downstream hypothetical protein LOC144347 locus. |
| NA | ENSG00000178882 | FAM101A | family with sequence similarity 101 member A | 144347 | NA |
| NA | ENSG00000196498 | NCOR2 | nuclear receptor corepressor 2 | 9612 | This gene encodes a nuclear receptor co-repressor that mediates transcriptional silencing of certain target genes. The encoded protein is a member of a family of thyroid hormone- and retinoic acid receptor-associated co-repressors. This protein acts as part of a multisubunit complex which includes histone deacetylases to modify chromatin structure that prevents basal transcriptional activity of target genes. Aberrant expression of this gene is associated with certain cancers. Alternate splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000073060 | SCARB1 | scavenger receptor class B member 1 | 949 | The protein encoded by this gene is a plasma membrane receptor for high density lipoprotein cholesterol (HDL). The encoded protein mediates cholesterol transfer to and from HDL. In addition, this protein is a receptor for hepatitis C virus glycoprotein E2. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000150991 | UBC | ubiquitin C | 7316 | This gene represents a ubiquitin gene, ubiquitin C. The encoded protein is a polyubiquitin precursor. Conjugation of ubiquitin monomers or polymers can lead to various effects within a cell, depending on the residues to which ubiquitin is conjugated. Ubiquitination has been associated with protein degradation, DNA repair, cell cycle regulation, kinase modification, endocytosis, and regulation of other cell signaling pathways. |
| NA | ENSG00000150990 | DHX37 | DEAH-box helicase 37 | 57647 | This gene encodes a DEAD box protein. DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. |
| NA | ENSG00000184992 | BRI3BP | BRI3 binding protein | 140707 | NA |
| NA | ENSG00000081760 | AACS | acetoacetyl-CoA synthetase | 65985 | NA |
| NA | ENSG00000139370 | SLC15A4 | solute carrier family 15 member 4 | 121260 | NA |
| NA | ENSG00000111450 | STX2 | syntaxin 2 | 2054 | The product of this gene belongs to the syntaxin/epimorphin family of proteins. The syntaxins are a large protein family implicated in the targeting and fusion of intracellular transport vesicles. The product of this gene regulates epithelial-mesenchymal interactions and epithelial cell morphogenesis and activation. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000132341 | RAN | RAN, member RAS oncogene family | 5901 | RAN (ras-related nuclear protein) is a small GTP binding protein belonging to the RAS superfamily that is essential for the translocation of RNA and proteins through the nuclear pore complex. The RAN protein is also involved in control of DNA synthesis and cell cycle progression. Nuclear localization of RAN requires the presence of regulator of chromosome condensation 1 (RCC1). Mutations in RAN disrupt DNA synthesis. Because of its many functions, it is likely that RAN interacts with several other proteins. RAN regulates formation and organization of the microtubule network independently of its role in the nucleus-cytosol exchange of macromolecules. RAN could be a key signaling molecule regulating microtubule polymerization during mitosis. RCC1 generates a high local concentration of RAN-GTP around chromatin which, in turn, induces the local nucleation of microtubules. RAN is an androgen receptor (AR) coactivator that binds differentially with different lengths of polyglutamine within the androgen receptor. Polyglutamine repeat expansion in the AR is linked to Kennedy’s disease (X-linked spinal and bulbar muscular atrophy). RAN coactivation of the AR diminishes with polyglutamine expansion within the AR, and this weak coactivation may lead to partial androgen insensitivity during the development of Kennedy’s disease. |
| NA | ENSG00000061936 | SFSWAP | splicing factor, suppressor of white-apricot homolog | 6433 | This gene encodes a human homolog of Drosophila splicing regulatory protein. This gene autoregulates its expression by control of splicing of its first two introns. In addition, it also regulates the splicing of fibronectin and CD45 genes. Two transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000198598 | MMP17 | matrix metallopeptidase 17 | 4326 | This gene encodes a member of the peptidase M10 family and membrane-type subfamily of matrix metalloproteinases (MMPs). Proteins in this family are involved in the breakdown of extracellular matrix in normal physiological processes, such as embryonic development, reproduction, and tissue remodeling, as well as in disease processes, such as arthritis and metastasis. Members of this subfamily contain a transmembrane domain suggesting that these proteins are expressed at the cell surface rather than secreted. The encoded preproprotein is proteolytically processed to generate the mature protease. This protein is unique among the membrane-type matrix metalloproteinases in that it is anchored to the cell membrane via a glycosylphosphatidylinositol (GPI) anchor. Elevated expression of the encoded protein has been observed in osteoarthritis and multiple human cancers. |
| NA | ENSG00000177169 | ULK1 | unc-51 like autophagy activating kinase 1 | 8408 | NA |
| NA | ENSG00000177192 | PUS1 | pseudouridylate synthase 1 | 80324 | This gene encodes a pseudouridine synthase that converts uridine to pseudouridine once it has been incorporated into an RNA molecule. The encoded enzyme may play an essential role in tRNA function and in stabilizing the secondary and tertiary structure of many RNAs. A mutation in this gene has been linked to mitochondrial myopathy and sideroblastic anemia. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000185684 | EP400NL | EP400 N-terminal like | ENSG00000185684 | NA |
| NA | ENSG00000185163 | DDX51 | DEAD-box helicase 51 | 317781 | NA |
| NA | ENSG00000184967 | NOC4L | nucleolar complex associated 4 homolog | 79050 | NA |
| NA | ENSG00000112787 | FBRSL1 | fibrosin like 1 | 57666 | NA |
| NA | ENSG00000177084 | POLE | polymerase (DNA) epsilon, catalytic subunit | 5426 | This gene encodes the catalytic subunit of DNA polymerase epsilon. The enzyme is involved in DNA repair and chromosomal DNA replication. Mutations in this gene have been associated with colorectal cancer 12 and facial dysmorphism, immunodeficiency, livedo, and short stature. |
| NA | ENSG00000176894 | PXMP2 | peroxisomal membrane protein 2 | 5827 | NA |
| NA | ENSG00000247077 | PGAM5 | PGAM family member 5, mitochondrial serine/threonine protein phosphatase | 192111 | NA |
| NA | ENSG00000176915 | ANKLE2 | ankyrin repeat and LEM domain containing 2 | 23141 | This gene encodes a member of the LEM family of inner nuclear membrane proteins. The encoded protein functions as a mitotic regulator through postmitotic formation of the nuclear envelope. Mutations in this gene cause morphology defects in the nuclear envelope and BAF hyperphosphorylation. |
| NA | ENSG00000090615 | GOLGA3 | golgin A3 | 2802 | The Golgi apparatus, which participates in glycosylation and transport of proteins and lipids in the secretory pathway, consists of a series of stacked cisternae (flattened membrane sacs). Interactions between the Golgi and microtubules are thought to be important for the reorganization of the Golgi after it fragments during mitosis. This gene encodes a member of the golgin family of proteins which are localized to the Golgi. Its encoded protein has been postulated to play a role in nuclear transport and Golgi apparatus localization. Several alternatively spliced transcript variants that encode different protein isoforms have been described for this gene. |
| NA | ENSG00000072609 | CHFR | checkpoint with forkhead and ring finger domains, E3 ubiquitin protein ligase | 55743 | This gene encodes an E3 ubiquitin-protein ligase required for the maintenance of the antephase checkpoint that regulates cell cycle entry into mitosis and, therefore, may play a key role in cell cycle progression and tumorigenesis. The encoded protein has an N-terminal forkhead-associated domain, a central RING-finger domain, and a cysteine-rich C-terminal region. Alternatively spliced transcript variants that encode different protein isoforms have been described. |
| NA | ENSG00000196458 | ZNF605 | zinc finger protein 605 | 100289635 | NA |
| NA | ENSG00000198393 | ZNF26 | zinc finger protein 26 | 7574 | NA |
| NA | ENSG00000196387 | ZNF140 | zinc finger protein 140 | 7699 | NA |
| NA | ENSG00000214029 | ZNF891 | zinc finger protein 891 | 101060200 | NA |
| NA | ENSG00000256223 | ZNF10 | zinc finger protein 10 | 7556 | The protein encoded by this gene contains a C2H2 zinc finger, and has been shown to function as a transcriptional repressor. The Kruppel-associated box (KRAB) domain of this protein is found to be responsible for its transcriptional repression activity. RING finger containing protein TIF1 was reported to interact with the KRAB domain, and may serve as a mediator for the repression activity of this protein. |
| NA | ENSG00000090612 | ZNF268 | zinc finger protein 268 | 10795 | NA |
| NA | ENSG00000196199 | MPHOSPH8 | M-phase phosphoprotein 8 | 54737 | NA |
| NA | ENSG00000121390 | PSPC1 | paraspeckle component 1 | 55269 | This gene encodes a nucleolar protein that localizes to punctate subnuclear structures that occur close to splicing speckles, known as paraspeckles. These paraspeckles are composed of RNA-protein structures that include a non-coding RNA, NEAT1/Men epsilon/beta, and the Drosophila Behavior Human Splicing family of proteins, which include the product of this gene and the P54NRB/NONO and PSF/SFPQ proteins. Paraspeckles may function in the control of gene expression via an RNA nuclear retention mechanism. The protein encoded by this gene is found in paraspeckles in transcriptionally active cells, but it localizes to unique cap structures at the nucleolar periphery when RNA polymerase II transcription is inhibited, or during telophase. Alternative splicing of this gene results in multiple transcript variants. A related pseudogene, which is also located on chromosome 13, has been identified. |
| NA | ENSG00000121741 | ZMYM2 | zinc finger MYM-type containing 2 | 7750 | The protein encoded by this gene is a zinc finger protein that may act as a transcription factor. The encoded protein may be part of a BHC histone deacetylase complex. Translocation of this gene with the fibroblast growth factor receptor-1 gene (FGFR1) results in a fusion gene, which may be a cause of stem cell leukemia lymphoma syndrome (SCLL). Several transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000032742 | IFT88 | intraflagellar transport 88 | 8100 | This gene encodes a member of the tetratrico peptide repeat (TPR) family. Mutations of a similar gene in mouse can cause polycystic kidney disease. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000150456 | EEF1AKMT1 | eukaryotic translation elongation factor 1 alpha lysine methyltransferase 1 | 221143 | NA |
| NA | ENSG00000132953 | XPO4 | exportin 4 | 64328 | XPO4 belongs to a large family of karyopherins (see MIM 602738) that mediate the transport of proteins and other cargo between the nuclear and cytoplasmic compartments (Lipowsky et al., 2000 [PubMed 10944119]). |
| NA | ENSG00000150457 | LATS2 | large tumor suppressor kinase 2 | 26524 | This gene encodes a serine/threonine protein kinase belonging to the LATS tumor suppressor family. The protein localizes to centrosomes during interphase, and early and late metaphase. It interacts with the centrosomal proteins aurora-A and ajuba and is required for accumulation of gamma-tubulin and spindle formation at the onset of mitosis. It also interacts with a negative regulator of p53 and may function in a positive feedback loop with p53 that responds to cytoskeleton damage. Additionally, it can function as a co-repressor of androgen-responsive gene expression. |
| NA | ENSG00000180776 | ZDHHC20 | zinc finger DHHC-type containing 20 | 253832 | NA |
| NA | ENSG00000165487 | MICU2 | mitochondrial calcium uptake 2 | 221154 | NA |
| NA | ENSG00000151835 | SACS | sacsin molecular chaperone | 26278 | This gene encodes the sacsin protein, which includes a UbL domain at the N-terminus, a DnaJ domain, and a HEPN domain at the C-terminus. The gene is highly expressed in the central nervous system, also found in skin, skeletal muscles and at low levels in the pancreas. This gene includes a very large exon spanning more than 12.8 kb. Mutations in this gene result in autosomal recessive spastic ataxia of Charlevoix-Saguenay (ARSACS), a neurodegenerative disorder characterized by early-onset cerebellar ataxia with spasticity and peripheral neuropathy. The authors of a publication on the effects of siRNA-mediated sacsin knockdown concluded that sacsin protects against mutant ataxin-1 and suggest that ‘the large multi-domain sacsin protein is able to recruit Hsp70 chaperone action and has the potential to regulate the effects of other ataxia proteins’ (Parfitt et al., PubMed: 19208651). A pseudogene associated with this gene is located on chromosome 11. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000027001 | MIPEP | mitochondrial intermediate peptidase | 4285 | The product of this gene performs the final step in processing a specific class of nuclear-encoded proteins targeted to the mitochondrial matrix or inner membrane. This protein is primarily involved in the maturation of oxidative phosphorylation (OXPHOS)-related proteins. This gene may contribute to the functional effects of frataxin deficiency and the clinical manifestations of Friedreich ataxia. |
| NA | ENSG00000182957 | SPATA13 | spermatogenesis associated 13 | 221178 | NA |
| NA | ENSG00000102699 | PARP4 | poly(ADP-ribose) polymerase family member 4 | 143 | This gene encodes poly(ADP-ribosyl)transferase-like 1 protein, which is capable of catalyzing a poly(ADP-ribosyl)ation reaction. This protein has a catalytic domain which is homologous to that of poly (ADP-ribosyl) transferase, but lacks an N-terminal DNA binding domain which activates the C-terminal catalytic domain of poly (ADP-ribosyl) transferase. Since this protein is not capable of binding DNA directly, its transferase activity may be activated by other factors such as protein-protein interaction mediated by the extensive carboxyl terminus. |
| NA | ENSG00000151846 | PABPC3 | poly(A) binding protein, cytoplasmic 3 | 5042 | Messenger RNA stability and translation initiation are extensively under the control of poly(A)-binding proteins (PABP). See PABPC1 (MIM 604679) for background information. |
| NA | ENSG00000139505 | MTMR6 | myotubularin related protein 6 | 9107 | NA |
| NA | ENSG00000139496 | NUP58 | nucleoporin 58kDa | 9818 | This gene encodes a member of the nucleoporin family that shares 87% sequence identity with rat nucleoporin p58. The protein is localized to the nuclear rim and is a component of the nuclear pore complex (NPC). All molecules entering or leaving the nucleus either diffuse through or are actively transported by the NPC. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000132932 | ATP8A2 | ATPase phospholipid transporting 8A2 | 51761 | The protein encoded by this gene is a member of the P4 ATPase family of proteins, which are thought to be involved in a process called lipid flipping, whereby phospholipids are translocated inwards from the exoplasmic leaflet to the cytosolic leaflet of the cell membrane, which aids in generating and maintaining asymmetry in membrane lipids. This protein is predicted to contain an E1 E2 ATPase, a haloacid dehalogenase-like hydrolase (HAD) domain, and multiple transmembrane domains. Associations between this protein and cell cycle control protein 50A are important for translocation of phosphatidylserine across membranes. Mutations in this gene have been associated with cerebellar ataxia, mental retardation and disequilibrium syndrome (CAMRQ). In addition, a translocation breakpoint within this gene was observed in an individual with neurological dysfunction. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000127870 | RNF6 | ring finger protein (C3H2C3 type) 6 | 6049 | The protein encoded by this gene contains a RING-H2 finger motif. Deletions and mutations in this gene were detected in esophageal squamous cell carcinoma (ESCC), suggesting that this protein may be a potential tumor suppressor. Studies of the mouse counterpart suggested a role of this protein in the transcription regulation that controls germinal differentiation. Multiple alternatively spliced transcript variants encoding the same protein are observed. |
| NA | ENSG00000132964 | CDK8 | cyclin-dependent kinase 8 | 1024 | The protein encoded by this gene is a member of the cyclin-dependent protein kinase (CDK) family. CDK family members are highly similar to the gene products of Saccharomyces cerevisiae cdc28, and Schizosaccharomyces pombe cdc2, and are known to be important regulators of cell cycle progression. This kinase and its regulatory subunit cyclin C are components of the RNA polymerase II holoenzyme complex, which phosphorylates the carboxy-terminal domain (CTD) of the largest subunit of RNA polymerase II. This kinase has also been shown to regulate transcription by targeting the CDK7/cyclin H subunits of the general transcription initiation factor IIH (TFIIH), thus providing a link between the ‘Mediator-like’ protein complexes and the basal transcription machinery. |
| NA | ENSG00000132970 | WASF3 | WAS protein family member 3 | 10810 | This gene encodes a member of the Wiskott-Aldrich syndrome protein family. The gene product is a protein that forms a multiprotein complex that links receptor kinases and actin. Binding to actin occurs through a C-terminal verprolin homology domain in all family members. The multiprotein complex serves to tranduce signals that involve changes in cell shape, motility or function. A pseudogene of this gene have been defined on chromosome 6. Alternative splicing results in multiple transcript variants |
| NA | ENSG00000152484 | USP12 | ubiquitin specific peptidase 12 | 219333 | NA |
| NA | ENSG00000122026 | RPL21 | ribosomal protein L21 | 6144 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L21E family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000122034 | GTF3A | general transcription factor IIIA | 2971 | The product of this gene is a zinc finger protein with nine Cis[2]-His[2] zinc finger domains. It functions as an RNA polymerase III transcription factor to induce transcription of the 5S rRNA genes. The protein binds to a 50 bp internal promoter in the 5S genes called the internal control region (ICR), and nucleates formation of a stable preinitiation complex. This complex recruits the TFIIIC and TFIIIB transcription factors and RNA polymerase III to form the complete transcription complex. The protein is thought to be translated using a non-AUG translation initiation site in mammals based on sequence analysis, protein homology, and the size of the purified protein. |
| NA | ENSG00000122033 | MTIF3 | mitochondrial translational initiation factor 3 | 219402 | This gene encodes a translation initiation factor that is involved in mitochondrial protein synthesis. Polymorphism in this gene is associated with the onset of Parkinson’s disease. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 5. |
| NA | ENSG00000139517 | LNX2 | ligand of numb-protein X 2 | 222484 | NA |
| NA | ENSG00000186184 | POLR1D | polymerase (RNA) I subunit D | 51082 | The protein encoded by this gene is a component of the RNA polymerase I and RNA polymerase III complexes, which function in the synthesis of ribosomal RNA precursors and small RNAs, respectively. Mutations in this gene are a cause of Treacher Collins syndrome (TCS), a craniofacial development disorder. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000180389 | ATP5EP2 | ATP synthase, H+ transporting, mitochondrial F1 complex, epsilon subunit pseudogene 2 | ENSG00000180389 | NA |
| NA | ENSG00000132963 | POMP | proteasome maturation protein | 51371 | The protein encoded by this gene is a molecular chaperone that binds 20S preproteasome components and is essential for 20S proteasome formation. The 20S proteasome is the proteolytically active component of the 26S proteasome complex. The encoded protein is degraded before the maturation of the 20S proteasome is complete. A variant in the 5’ UTR of this gene has been associated with KLICK syndrome, a rare skin disorder. |
| NA | ENSG00000139514 | SLC7A1 | solute carrier family 7 member 1 | 6541 | NA |
| NA | ENSG00000122042 | UBL3 | ubiquitin like 3 | 5412 | NA |
| NA | ENSG00000102781 | KATNAL1 | katanin catalytic subunit A1 like 1 | 84056 | NA |
| NA | ENSG00000189403 | HMGB1 | high mobility group box 1 | 3146 | This gene encodes a protein that belongs to the High Mobility Group-box superfamily. The encoded non-histone, nuclear DNA-binding protein regulates transcription, and is involved in organization of DNA. This protein plays a role in several cellular processes, including inflammation, cell differentiation and tumor cell migration. Multiple pseudogenes of this gene have been identified. Alternative splicing results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000132952 | USPL1 | ubiquitin specific peptidase like 1 | 10208 | NA |
| NA | ENSG00000102802 | MEDAG | mesenteric estrogen-dependent adipogenesis | 84935 | NA |
| NA | ENSG00000187676 | B3GLCT | beta 3-glucosyltransferase | 145173 | The protein encoded by this gene is a beta-1,3-glucosyltransferase that transfers glucose to O-linked fucosylglycans on thrombospondin type-1 repeats (TSRs) of several proteins. The encoded protein is a type II membrane protein. Defects in this gene are a cause of Peters-plus syndrome (PPS). |
| NA | ENSG00000073910 | FRY | FRY microtubule binding protein | 10129 | NA |
| NA | ENSG00000139597 | N4BP2L1 | NEDD4 binding protein 2-like 1 | 90634 | NA |
| NA | ENSG00000133121 | STARD13 | StAR related lipid transfer domain containing 13 | 90627 | This gene encodes a protein which contains an N-terminal sterile alpha motif (SAM) for protein-protein interactions, followed by an ATP/GTP-binding motif, a GTPase-activating protein (GAP) domain, and a C-terminal STAR-related lipid transfer (START) domain. It may be involved in regulation of cytoskeletal reorganization, cell proliferation, and cell motility, and acts as a tumor suppressor in hepatoma cells. The gene is located in a region of chromosome 13 that is associated with loss of heterozygosity in hepatocellular carcinomas. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000133119 | RFC3 | replication factor C subunit 3 | 5983 | The elongation of primed DNA templates by DNA polymerase delta and DNA polymerase epsilon requires the accessory proteins proliferating cell nuclear antigen (PCNA) and replication factor C (RFC). RFC, also named activator 1, is a protein complex consisting of five distinct subunits of 140, 40, 38, 37, and 36 kDa. This gene encodes the 38 kDa subunit. This subunit is essential for the interaction between the 140 kDa subunit and the core complex that consists of the 36, 37, and 40 kDa subunits. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000172915 | NBEA | neurobeachin | 26960 | This gene encodes a member of a large, diverse group of A-kinase anchor proteins that target the activity of protein kinase A to specific subcellular sites by binding to its type II regulatory subunits. Brain-specific expression and coat protein-like membrane recruitment of a highly similar protein in mouse suggest an involvement in neuronal post-Golgi membrane traffic. Mutations in this gene may be associated with a form of autism. This gene and its expression are frequently disrupted in patients with multiple myeloma. Alternative splicing results in multiple transcript variants encoding distinct isoforms. Additional transcript variants may exist, but their full-length nature has not been determined. |
| NA | ENSG00000242715 | CCDC169 | coiled-coil domain containing 169 | 728591 | NA |
| NA | ENSG00000133104 | SPG20 | spastic paraplegia 20 (Troyer syndrome) | 23111 | This gene encodes a protein containing a MIT (Microtubule Interacting and Trafficking molecule) domain, and is implicated in regulating endosomal trafficking and mitochondria function. The protein localizes to mitochondria and partially co-localizes with microtubules. Stimulation with epidermal growth factor (EGF) results in protein translocation to the plasma membrane, and the protein functions in the degradation and intracellular trafficking of EGF receptor. Multiple alternatively spliced variants, encoding the same protein, have been identified. Mutations associated with this gene cause autosomal recessive spastic paraplegia 20 (Troyer syndrome). |
| NA | ENSG00000133111 | RFXAP | regulatory factor X associated protein | 5994 | Major histocompatibility (MHC) class II molecules are transmembrane proteins that have a central role in development and control of the immune system. The protein encoded by this gene, along with regulatory factor X-associated ankyrin-containing protein and regulatory factor-5, forms a complex that binds to the X box motif of certain MHC class II gene promoters and activates their transcription. Once bound to the promoter, this complex associates with the non-DNA-binding factor MHC class II transactivator, which controls the cell type specificity and inducibility of MHC class II gene expression. Mutations in this gene have been linked to bare lymphocyte syndrome type II, complementation group D. Transcript variants utilizing different polyA signals have been found for this gene. |
| NA | ENSG00000102710 | SUPT20H | SPT20 homolog, SAGA complex component | 55578 | NA |
| NA | ENSG00000180138 | CSNK1A1L | casein kinase 1 alpha 1 like | 122011 | NA |
| NA | ENSG00000120685 | PROSER1 | proline and serine rich 1 | 80209 | This gene encodes a conserved protein containing proline and serine rich regions. These regions may be important in protein-protein interactions. |
| NA | ENSG00000188811 | NHLRC3 | NHL repeat containing 3 | 387921 | This gene encodes a protein containing NCL-1, HT2A and Lin-41 (NHL) family repeats. Mammalian NHL-repeat containing proteins may be involved in a variety of enzymatic processes, including protein modification through ubiquitination. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000183722 | LHFP | lipoma HMGIC fusion partner | 10186 | This gene is a member of the lipoma HMGIC fusion partner (LHFP) gene family, which is a subset of the superfamily of tetraspan transmembrane protein encoding genes. This gene is fused to a high-mobility group gene in a translocation-associated lipoma. Mutations in another LHFP-like gene result in deafness in humans and mice. Alternatively spliced transcript variants have been found; however, their full-length nature is not known. |
| NA | ENSG00000133103 | COG6 | component of oligomeric golgi complex 6 | 57511 | This gene encodes a subunit of the conserved oligomeric Golgi complex that is required for maintaining normal structure and activity of the Golgi apparatus. The encoded protein is organized with conserved oligomeric Golgi complex components 5, 7 and 8 into a sub-complex referred to as lobe B. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000150907 | FOXO1 | forkhead box O1 | 2308 | This gene belongs to the forkhead family of transcription factors which are characterized by a distinct forkhead domain. The specific function of this gene has not yet been determined; however, it may play a role in myogenic growth and differentiation. Translocation of this gene with PAX3 has been associated with alveolar rhabdomyosarcoma. |
| NA | ENSG00000102738 | MRPS31 | mitochondrial ribosomal protein S31 | 10240 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. The 28S subunit of the mammalian mitoribosome may play a crucial and characteristic role in translation initiation. This gene encodes a 28S subunit protein that has also been associated with type 1 diabetes; however, its relationship to the etiology of this disease remains to be clarified. Pseudogenes corresponding to this gene have been found on chromosomes 3 and 13. |
| NA | ENSG00000102743 | SLC25A15 | solute carrier family 25 member 15 | 10166 | This gene is a member of the mitochondrial carrier family. The encoded protein transports ornithine across the inner mitochondrial membrane from the cytosol to the mitochondrial matrix. The protein is an essential component of the urea cycle, and functions in ammonium detoxification and biosynthesis of the amino acid arginine. Mutations in this gene result in hyperornithinemia-hyperammonemia-homocitrullinuria (HHH) syndrome. There is a pseudogene of this locus on the Y chromosome. |
| NA | ENSG00000120690 | ELF1 | E74 like ETS transcription factor 1 | 1997 | This gene encodes an E26 transformation-specific related transcription factor. The encoded protein is primarily expressed in lymphoid cells and acts as both an enhancer and a repressor to regulate transcription of various genes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165572 | KBTBD6 | kelch repeat and BTB domain containing 6 | 89890 | NA |
| NA | ENSG00000120696 | KBTBD7 | kelch repeat and BTB domain containing 7 | 84078 | NA |
| NA | ENSG00000120662 | MTRF1 | mitochondrial translational release factor 1 | 9617 | The protein encoded by this gene was determined by in silico methods to be a mitochondrial protein with similarity to the peptide chain release factors (RFs) discovered in bacteria and yeast. The peptide chain release factors direct the termination of translation in response to the peptide chain termination codons. Initially thought to have a role in the termination of mitochondria protein synthesis, a recent publication found no mitochondrial translation release functionality. Multiple alternatively spliced transcript variants have been suggested by mRNA and EST data; however, their full-length natures are not clear. |
| NA | ENSG00000172766 | NAA16 | N(alpha)-acetyltransferase 16, NatA auxiliary subunit | 79612 | NA |
| NA | ENSG00000102763 | VWA8 | von Willebrand factor A domain containing 8 | 23078 | NA |
| NA | ENSG00000102780 | DGKH | diacylglycerol kinase eta | 160851 | This gene encodes a member of the diacylglycerol kinase (DGK) enzyme family. Members of this family are involved in regulating intracellular concentrations of diacylglycerol and phosphatidic acid. Variation in this gene has been associated with bipolar disorder. Alternatively spliced transcript variants have been identified. |
| NA | ENSG00000023516 | AKAP11 | A-kinase anchoring protein 11 | 11215 | The A-kinase anchor proteins (AKAPs) are a group of structurally diverse proteins, which have the common function of binding to the regulatory subunit of protein kinase A (PKA) and confining the holoenzyme to discrete locations within the cell. This gene encodes a member of the AKAP family. The encoded protein is expressed at high levels throughout spermatogenesis and in mature sperm. It binds the RI and RII subunits of PKA in testis. It may serve a function in cell cycle control of both somatic cells and germ cells in addition to its putative role in spermatogenesis and sperm function. |
| NA | ENSG00000120659 | TNFSF11 | tumor necrosis factor superfamily member 11 | 8600 | This gene encodes a member of the tumor necrosis factor (TNF) cytokine family which is a ligand for osteoprotegerin and functions as a key factor for osteoclast differentiation and activation. This protein was shown to be a dentritic cell survival factor and is involved in the regulation of T cell-dependent immune response. T cell activation was reported to induce expression of this gene and lead to an increase of osteoclastogenesis and bone loss. This protein was shown to activate antiapoptotic kinase AKT/PKB through a signaling complex involving SRC kinase and tumor necrosis factor receptor-associated factor (TRAF) 6, which indicated this protein may have a role in the regulation of cell apoptosis. Targeted disruption of the related gene in mice led to severe osteopetrosis and a lack of osteoclasts. The deficient mice exhibited defects in early differentiation of T and B lymphocytes, and failed to form lobulo-alveolar mammary structures during pregnancy. Two alternatively spliced transcript variants have been found. |
| NA | ENSG00000120675 | DNAJC15 | DnaJ heat shock protein family (Hsp40) member C15 | 29103 | NA |
| NA | ENSG00000151773 | CCDC122 | coiled-coil domain containing 122 | 160857 | NA |
| NA | ENSG00000179630 | LACC1 | laccase domain containing 1 | 144811 | NA |
| NA | ENSG00000102804 | TSC22D1 | TSC22 domain family member 1 | 8848 | This gene encodes a member of the TSC22 domain family of leucine zipper transcription factors. The encoded protein is stimulated by transforming growth factor beta, and regulates the transcription of multiple genes including C-type natriuretic peptide. The encoded protein may play a critical role in tumor suppression through the induction of cancer cell apoptosis, and a single nucleotide polymorphism in the promoter of this gene has been associated with diabetic nephropathy. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000083635 | NUFIP1 | nuclear fragile X mental retardation protein interacting protein 1 | 26747 | This gene encodes a nuclear RNA binding protein that contains a C2H2 zinc finger motif and a nuclear localization signal. This protein is associated with the nuclear matrix in perichromatin fibrils and, in neurons, localizes to the cytoplasm in association with endoplasmic reticulum ribosomes. This protein interacts with the fragile X mental retardation protein (FMRP), the tumor suppressor protein BRCA1, upregulates RNA polymerase II transcription, and is involved in box C/D snoRNP biogenesis. A pseudogene of this gene resides on chromosome 6q12. |
| NA | ENSG00000133114 | GPALPP1 | GPALPP motifs containing 1 | 55425 | NA |
| NA | ENSG00000188342 | GTF2F2 | general transcription factor IIF subunit 2 | 2963 | NA |
| NA | ENSG00000133112 | TPT1 | tumor protein, translationally-controlled 1 | 7178 | NA |
| NA | ENSG00000174032 | SLC25A30 | solute carrier family 25 member 30 | 253512 | Although the outer mitochondrial membrane is permeable to many small metabolites, transport of solutes across the inner mitochondrial membrane is achieved by members of the mitochondrial carrier protein family, such as SLC25A30 (Haguenauer et al., 2005 [PubMed 15809292]). |
| NA | ENSG00000136152 | COG3 | component of oligomeric golgi complex 3 | 83548 | This gene encodes a component of the conserved oligomeric Golgi (COG) complex which is composed of eight different subunits and is required for normal Golgi morphology and localization. Defects in the COG complex result in multiple deficiencies in protein glycosylation. The protein encoded by this gene is involved in ER-Golgi transport. |
| NA | ENSG00000123200 | ZC3H13 | zinc finger CCCH-type containing 13 | 23091 | NA |
| NA | ENSG00000102445 | KIAA0226L | KIAA0226-like | 80183 | NA |
| NA | ENSG00000136141 | LRCH1 | leucine-rich repeats and calponin homology (CH) domain containing 1 | 23143 | This gene encodes a protein with a leucine-rich repeat and a calponin homology domain. Polymorphism in this gene may be associated with susceptibililty to knee osteoarthritis. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000139684 | ESD | esterase D | 2098 | This gene encodes a serine hydrolase that belongs to the esterase D family. The encoded enzyme is active toward numerous substrates including O-acetylated sialic acids, and it may be involved in the recycling of sialic acids. This gene is used as a genetic marker for retinoblastoma and Wilson’s disease. |
| NA | ENSG00000136143 | SUCLA2 | succinate-CoA ligase, ADP-forming, beta subunit | 8803 | Succinyl-CoA synthetase (SCS) is a mitochondrial matrix enzyme that acts as a heterodimer, being composed of an invariant alpha subunit and a substrate-specific beta subunit. The protein encoded by this gene is an ATP-specific SCS beta subunit that dimerizes with the SCS alpha subunit to form SCS-A, an essential component of the tricarboxylic acid cycle. SCS-A hydrolyzes ATP to convert succinate to succinyl-CoA. Defects in this gene are a cause of myopathic mitochondrial DNA depletion syndrome. A pseudogene of this gene has been found on chromosome 6. |
| NA | ENSG00000136159 | NUDT15 | nudix hydrolase 15 | 55270 | NA |
| NA | ENSG00000136146 | MED4 | mediator complex subunit 4 | 29079 | This gene encodes a component of the Mediator complex. The Mediator complex interacts with DNA-binding gene-specific transcription factors to modulate transcription by RNA polymerase II. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000136156 | ITM2B | integral membrane protein 2B | 9445 | Amyloid precursor proteins are processed by beta-secretase and gamma-secretase to produce beta-amyloid peptides which form the characteristic plaques of Alzheimer disease. This gene encodes a transmembrane protein which is processed at the C-terminus by furin or furin-like proteases to produce a small secreted peptide which inhibits the deposition of beta-amyloid. Mutations which result in extension of the C-terminal end of the encoded protein, thereby increasing the size of the secreted peptide, are associated with two neurogenerative diseases, familial British dementia and familial Danish dementia. |
| NA | ENSG00000139687 | RB1 | retinoblastoma 1 | 5925 | The protein encoded by this gene is a negative regulator of the cell cycle and was the first tumor suppressor gene found. The encoded protein also stabilizes constitutive heterochromatin to maintain the overall chromatin structure. The active, hypophosphorylated form of the protein binds transcription factor E2F1. Defects in this gene are a cause of childhood cancer retinoblastoma (RB), bladder cancer, and osteogenic sarcoma. |
| NA | ENSG00000136161 | RCBTB2 | RCC1 and BTB domain containing protein 2 | 1102 | This gene encodes a protein containing two C-terminal BTB/POZ domains that is related to regulator of chromosome condensation (RCC). The encoded protein may act as a guanine nucleotide exchange factor. This gene is observed to be lost or underexpressed in prostate cancers. There is a pseudogene of this gene on chromosome 10. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000102543 | CDADC1 | cytidine and dCMP deaminase domain containing 1 | 81602 | NA |
| NA | ENSG00000102547 | CAB39L | calcium binding protein 39 like | 81617 | NA |
| NA | ENSG00000136169 | SETDB2 | SET domain bifurcated 2 | 83852 | This gene encodes a member of a family of proteins that contain a methyl-CpG-binding domain (MBD) and a SET domain and function as histone methyltransferases. This protein is recruited to heterochromatin and plays a role in the regulation of chromosome segregation. This region is commonly deleted in chronic lymphocytic leukemia. Naturally-occuring readthrough transcription occurs from this gene to the downstream PHF11 (PHD finger protein 11) gene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136147 | PHF11 | PHD finger protein 11 | 51131 | This gene encodes a protein containing a PHD (plant homeodomain) type zinc finger. This gene has been identified in some studies as a candidate gene for asthma. Naturally-occurring readthrough transcription may occur from the upstream SETDB2 (SET domain bifurcated 2) gene to this locus. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136144 | RCBTB1 | RCC1 and BTB domain containing protein 1 | 55213 | This gene encodes a protein with an N-terminal RCC1 domain and a C-terminal BTB (broad complex, tramtrack and bric-a-brac) domain. In rat, over-expression of this gene in vascular smooth muscle cells induced cellular hypertrophy. In rat, the C-terminus of RCBTB1 interacts with the angiotensin II receptor-1A. In humans, this gene maps to a region of chromosome 13q that is frequently deleted in B-cell chronic lymphocytic leukemia and other lymphoid malignancies. |
| NA | ENSG00000152213 | ARL11 | ADP ribosylation factor like GTPase 11 | 115761 | This gene encodes a tumor suppressor related to the ADP-ribosylation factor (ARF) family of proteins. The encoded protein may play a role in apoptosis in a caspase-dependent manner. Polymorphisms in this gene have been associated with some familial cancers. |
| NA | ENSG00000123179 | EBPL | emopamil binding protein like | 84650 | NA |
| NA | ENSG00000102753 | KPNA3 | karyopherin subunit alpha 3 | 3839 | The transport of molecules between the nucleus and the cytoplasm in eukaryotic cells is mediated by the nuclear pore complex (NPC), which consists of 60-100 proteins. Small molecules (up to 70 kD) can pass through the nuclear pore by nonselective diffusion while larger molecules are transported by an active process. The protein encoded by this gene belongs to the importin alpha family, and is involved in nuclear protein import. |
| NA | ENSG00000123178 | SPRYD7 | SPRY domain containing 7 | 57213 | NA |
| NA | ENSG00000186047 | DLEU7 | deleted in lymphocytic leukemia, 7 | 220107 | NA |
| NA | ENSG00000136104 | RNASEH2B | ribonuclease H2 subunit B | 79621 | RNase H2 is composed of a single catalytic subunit (A) and two non-catalytic subunits (B and C) and specifically degrades the RNA of RNA:DNA hybrids. The protein encoded by this gene is the non-catalytic B subunit of RNase H2, which is thought to play a role in DNA replication. Multiple transcript variants encoding different isoforms have been found for this gene. Defects in this gene are a cause of Aicardi-Goutieres syndrome type 2 (AGS2). |
| NA | ENSG00000102786 | INTS6 | integrator complex subunit 6 | 26512 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. The protein encoded by this gene is a DEAD box protein that is part of a complex that interacts with the C-terminus of RNA polymerase II and is involved in 3’ end processing of snRNAs. In addition, this gene is a candidate tumor suppressor and is located in the critical region of loss of heterozygosity (LOH). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139668 | WDFY2 | WD repeat and FYVE domain containing 2 | 115825 | This gene encodes a protein that contains two WD domains and an FYVE zinc finger region. The function of this gene is unknown. An alternatively spliced transcript variant of this gene may exist. |
| NA | ENSG00000102796 | DHRS12 | dehydrogenase/reductase (SDR family) member 12 | 79758 | This gene encodes a member of the short-chain dehydrogenases/reductases (SDR) family, which has over 46,000 members. Members in this family are enzymes that metabolize many different compounds, such as steroid hormones, prostaglandins, retinoids, lipids and xenobiotics. Alternative splicing results in multiple transcript variants and protein isoforms. |
| NA | ENSG00000123191 | ATP7B | ATPase copper transporting beta | 540 | This gene is a member of the P-type cation transport ATPase family and encodes a protein with several membrane-spanning domains, an ATPase consensus sequence, a hinge domain, a phosphorylation site, and at least 2 putative copper-binding sites. This protein functions as a monomer, exporting copper out of the cells, such as the efflux of hepatic copper into the bile. Alternate transcriptional splice variants, encoding different isoforms with distinct cellular localizations, have been characterized. Mutations in this gene have been associated with Wilson disease (WD). |
| NA | ENSG00000253710 | ALG11 | ALG11, alpha-1,2-mannosyltransferase | 440138 | This gene encodes a GDP-Man:Man3GlcNAc2-PP-dolichol-alpha1,2-mannosyltransferase which is localized to the cytosolic side of the endoplasmic reticulum (ER) and catalyzes the transfer of the fourth and fifth mannose residue from GDP-mannose (GDP-Man) to Man3GlcNAc2-PP-dolichol and Man4GlcNAc2-PP-dolichol resulting in the production of Man5GlcNAc2-PP-dolichol. Mutations in this gene are associated with congenital disorder of glycosylation type Ip (CDGIP). This gene overlaps but is distinct from the UTP14, U3 small nucleolar ribonucleoprotein, homolog C (yeast) gene. A pseudogene of the GDP-Man:Man3GlcNAc2-PP-dolichol-alpha1,2-mannosyltransferase has been identified on chromosome 19. |
| NA | ENSG00000253797 | UTP14C | UTP14, small subunit processome component homolog C (S. cerevisiae) | 9724 | NA |
| NA | ENSG00000136098 | NEK3 | NIMA related kinase 3 | 4752 | This gene encodes a member of the NimA (never in mitosis A) family of serine/threonine protein kinases. The encoded protein differs from other NimA family members in that it is not cell cycle regulated and is found primarily in the cytoplasm. The kinase is activated by prolactin stimulation, leading to phosphorylation of VAV2 guanine nucleotide exchange factor, paxillin, and activation of the RAC1 GTPase. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000136100 | VPS36 | vacuolar protein sorting 36 homolog (S. cerevisiae) | 51028 | This gene encodes a protein that is a subunit of the endosomal sorting complex required for transport II (ESCRT-II). This protein complex functions in sorting of ubiquitinated membrane proteins during endocytosis. A similar protein complex in rat is associated with RNA polymerase elongation factor II. |
| NA | ENSG00000139675 | HNRNPA1L2 | heterogeneous nuclear ribonucleoprotein A1-like 2 | 144983 | NA |
| NA | ENSG00000139734 | DIAPH3 | diaphanous related formin 3 | 81624 | This gene encodes a member of the diaphanous subfamily of the formin family. Members of this family are involved in actin remodeling and regulate cell movement and adhesion. Mutations in this gene are associated with autosomal dominant auditory neuropathy 1. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000083544 | TDRD3 | tudor domain containing 3 | 81550 | NA |
| NA | ENSG00000184226 | PCDH9 | protocadherin 9 | 5101 | This gene encodes a member of the protocadherin family, and cadherin superfamily, of transmembrane proteins containing cadherin domains. These proteins mediate cell adhesion in neural tissues in the presence of calcium. The encoded protein may be involved in signaling at neuronal synaptic junctions. Sharing a characteristic with other protocadherin genes, this gene has a notably large exon that encodes multiple cadherin domains and a transmembrane region. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000204899 | MZT1 | mitotic spindle organizing protein 1 | 440145 | NA |
| NA | ENSG00000136122 | BORA | bora, aurora kinase A activator | 79866 | BORA is an activator of the protein kinase Aurora A (AURKA; MIM 603072), which is required for centrosome maturation, spindle assembly, and asymmetric protein localization during mitosis (Hutterer et al., 2006 [PubMed 16890155]). |
| NA | ENSG00000083520 | DIS3 | DIS3 homolog, exosome endoribonuclease and 3’-5’ exoribonuclease | 22894 | NA |
| NA | ENSG00000083535 | PIBF1 | progesterone immunomodulatory binding factor 1 | 10464 | NA |
| NA | ENSG00000118922 | KLF12 | Kruppel-like factor 12 | 11278 | Activator protein-2 alpha (AP-2 alpha) is a developmentally-regulated transcription factor and important regulator of gene expression during vertebrate development and carcinogenesis. The protein encoded by this gene is a member of the Kruppel-like zinc finger protein family and can repress expression of the AP-2 alpha gene by binding to a specific site in the AP-2 alpha gene promoter. Repression by the encoded protein requires binding with a corepressor, CtBP1. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000136111 | TBC1D4 | TBC1 domain family member 4 | 9882 | This gene is a member of the Tre-2/BUB2/CDC16 domain family. The protein encoded by this gene is a Rab-GTPase-activating protein, and contains two phopshotyrosine-binding domains (PTB1 and PTB2), a calmodulin-binding domain (CBD), a Rab-GTPase domain, and multiple AKT phosphomotifs. This protein is thought to play an important role in glucose homeostasis by regulating the insulin-dependent trafficking of the glucose transporter 4 (GLUT4), important for removing glucose from the bloodstream into skeletal muscle and fat tissues. Reduced expression of this gene results in an increase in GLUT4 levels at the plasma membrane, suggesting that this protein is important in intracellular retention of GLUT4 under basal conditions. When exposed to insulin, this protein is phosphorylated, dissociates from GLUT4 vesicles, resulting in increased GLUT4 at the cell surface, and enhanced glucose transport. Phosphorylation of this protein by AKT is required for proper translocation of GLUT4 to the cell surface. Individuals homozygous for a mutation in this gene are at higher risk for type 2 diabetes and have higher levels of circulating glucose and insulin levels after glucose ingestion. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000188243 | COMMD6 | COMM domain containing 6 | 170622 | COMMD6 belongs to a family of NF-kappa-B (see RELA; MIM 164014)-inhibiting proteins characterized by the presence of a COMM domain (see COMMD1; MIM 607238) (de Bie et al., 2006 [PubMed 16573520]). |
| NA | ENSG00000136153 | LMO7 | LIM domain 7 | 4008 | This gene encodes a protein containing a calponin homology (CH) domain, a PDZ domain, and a LIM domain, and may be involved in protein-protein interactions. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene, however, the full-length nature of some variants is not known. |
| NA | ENSG00000178695 | KCTD12 | potassium channel tetramerization domain containing 12 | 115207 | NA |
| NA | ENSG00000005812 | FBXL3 | F-box and leucine-rich repeat protein 3 | 26224 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbls class and, in addition to an F-box, contains several tandem leucine-rich repeats and is localized in the nucleus. |
| NA | ENSG00000139737 | SLAIN1 | SLAIN motif family member 1 | 122060 | NA |
| NA | ENSG00000136160 | EDNRB | endothelin receptor type B | 1910 | The protein encoded by this gene is a G protein-coupled receptor which activates a phosphatidylinositol-calcium second messenger system. Its ligand, endothelin, consists of a family of three potent vasoactive peptides: ET1, ET2, and ET3. Studies suggest that the multigenic disorder, Hirschsprung disease type 2, is due to mutations in the endothelin receptor type B gene. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000152193 | RNF219 | ring finger protein 219 | 79596 | NA |
| NA | ENSG00000139746 | RBM26 | RNA binding motif protein 26 | 64062 | NA |
| NA | ENSG00000102471 | NDFIP2 | Nedd4 family interacting protein 2 | 54602 | NA |
| NA | ENSG00000136158 | SPRY2 | sprouty RTK signaling antagonist 2 | 10253 | This gene encodes a protein belonging to the sprouty family. The encoded protein contains a carboxyl-terminal cysteine-rich domain essential for the inhibitory activity on receptor tyrosine kinase signaling proteins and is required for growth factor stimulated translocation of the protein to membrane ruffles. In primary dermal endothelial cells this gene is transiently upregulated in response to fibroblast growth factor two. This protein is indirectly involved in the non-cell autonomous inhibitory effect on fibroblast growth factor two signaling. The protein interacts with Cas-Br-M (murine) ectropic retroviral transforming sequence, and can function as a bimodal regulator of epidermal growth factor receptor/mitogen-activated protein kinase signaling. This protein may play a role in alveoli branching during lung development as shown by a similar mouse protein. |
| NA | ENSG00000165300 | SLITRK5 | SLIT and NTRK like family member 5 | 26050 | Members of the SLITRK family, such as SLITRK5, are integral membrane proteins with 2 N-terminal leucine-rich repeat (LRR) domains similar to those of SLIT proteins (see SLIT1; MIM 603742). Most SLITRKs, including SLITRK5, also have C-terminal regions that share homology with neurotrophin receptors (see NTRK1; MIM 191315). SLITRKs are expressed predominantly in neural tissues and have neurite-modulating activity (Aruga et al., 2003 [PubMed 14557068]). |
| NA | ENSG00000183098 | GPC6 | glypican 6 | 10082 | The glypicans comprise a family of glycosylphosphatidylinositol-anchored heparan sulfate proteoglycans, and they have been implicated in the control of cell growth and cell division. The glypican encoded by this gene is a putative cell surface coreceptor for growth factors, extracellular matrix proteins, proteases and anti-proteases. |
| NA | ENSG00000088451 | TGDS | TDP-glucose 4,6-dehydratase | 23483 | The protein encoded by this gene is a member of the short-chain dehydrogenases/reductases (SDR) superfamily, and is thought to contain a nicotinamide adenine dinucleotide (NAD) binding domain. This large SDR family of enzymes is involved in the metabolism of a variety of compounds, including prostaglandins, retinoids, lipids, steroid hormones, and xenobiotics. Mutations in this gene have been associated with Catel-Manzke syndrome, which is characterized by Pierre Robin sequence, and radial deviation of the index finger due to the presence of an accessory bone between the index finger and its proximal phalanx. Pierre Robin sequence is defined by an undersized jaw, backwards displacement of the tongue base that causes an obstruction of the airways, and can also be associated with a cleft palate. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000125285 | SOX21 | SRY-box 21 | 11166 | SRY-related HMG-box (SOX) genes encode a family of DNA-binding proteins containing a 79-amino acid HMG (high mobility group) domain that shares at least 50% sequence identity with the DNA-binding HMG box of the SRY protein (MIM 480000). SOX proteins are divided into 6 subgroups based on sequence similarity within and outside of the HMG domain. For additional background information on SOX genes, see SOX1 (MIM 602148). |
| NA | ENSG00000125257 | ABCC4 | ATP binding cassette subfamily C member 4 | 10257 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MRP subfamily which is involved in multi-drug resistance. This family member plays a role in cellular detoxification as a pump for its substrate, organic anions. It may also function in prostaglandin-mediated cAMP signaling in ciliogenesis. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000134873 | CLDN10 | claudin 10 | 9071 | This gene encodes a member of the claudin family. Claudins are integral membrane proteins and components of tight junction strands. Tight junction strands serve as a physical barrier to prevent solutes and water from passing freely through the paracellular space between epithelial or endothelial cell sheets, and also play critical roles in maintaining cell polarity and signal transductions. The expression level of this gene is associated with recurrence of primary hepatocellular carcinoma. Six alternatively spliced transcript variants encoding different isoforms have been reported, but the transcript sequences of some variants are not determined. |
| NA | ENSG00000102580 | DNAJC3 | DnaJ heat shock protein family (Hsp40) member C3 | 5611 | This gene encodes a protein with multiple tetratricopeptide repeat (TPR) motifs as well as the highly conserved J domain found in DNAJ chaperone family members. It is a member of the tetratricopeptide repeat family of proteins and acts as an inhibitor of the interferon-induced, dsRNA-activated protein kinase (PKR). |
| NA | ENSG00000102595 | UGGT2 | UDP-glucose glycoprotein glucosyltransferase 2 | 55757 | UDP-glucose:glycoprotein glucosyltransferase (UGT) is a soluble protein of the endoplasmic reticulum (ER) that selectively reglucosylates unfolded glycoproteins, thus providing quality control for protein transport out of the ER. |
| NA | ENSG00000139793 | MBNL2 | muscleblind like splicing regulator 2 | 10150 | This gene is a member of the muscleblind protein family which was initially described in Drosophila melanogaster. This gene encodes a C3H-type zinc finger protein that modulates alternative splicing of pre-mRNAs. Muscleblind proteins bind specifically to expanded dsCUG RNA but not to normal size CUG repeats and may thereby play a role in the pathophysiology of myotonic dystrophy. Several alternatively spliced transcript variants have been described but the full-length natures of only some have been determined. |
| NA | ENSG00000125249 | RAP2A | RAP2A, member of RAS oncogene family | 5911 | NA |
| NA | ENSG00000065150 | IPO5 | importin 5 | 3843 | Nucleocytoplasmic transport, a signal- and energy-dependent process, takes place through nuclear pore complexes embedded in the nuclear envelope. The import of proteins containing a nuclear localization signal (NLS) requires the NLS import receptor, a heterodimer of importin alpha and beta subunits also known as karyopherins. Importin alpha binds the NLS-containing cargo in the cytoplasm and importin beta docks the complex at the cytoplasmic side of the nuclear pore complex. In the presence of nucleoside triphosphates and the small GTP binding protein Ran, the complex moves into the nuclear pore complex and the importin subunits dissociate. Importin alpha enters the nucleoplasm with its passenger protein and importin beta remains at the pore. Interactions between importin beta and the FG repeats of nucleoporins are essential in translocation through the pore complex. The protein encoded by this gene is a member of the importin beta family. |
| NA | ENSG00000152767 | FARP1 | FERM, ARH/RhoGEF and pleckstrin domain protein 1 | 10160 | This gene encodes a protein containing a FERM (4.2, exrin, radixin, moesin) domain, a Dbl homology domain, and two pleckstrin homology domains. These domains are found in guanine nucleotide exchange factors and proteins that link the cytoskeleton to the cell membrane. The encoded protein functions in neurons to promote dendritic growth. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000088387 | DOCK9 | dedicator of cytokinesis 9 | 23348 | NA |
| NA | ENSG00000134882 | UBAC2 | UBA domain containing 2 | 337867 | NA |
| NA | ENSG00000125304 | TM9SF2 | transmembrane 9 superfamily member 2 | 9375 | This gene encodes a member of the transmembrane 9 superfamily. The encoded 76 kDa protein localizes to early endosomes in human cells. The encoded protein possesses a conserved and highly hydrophobic C-terminal domain which contains nine transmembrane domains. The protein may play a role in small molecule transport or act as an ion channel. A pseudogene associated with this gene is located on the X chromosome. |
| NA | ENSG00000125246 | CLYBL | citrate lyase beta like | 171425 | NA |
| NA | ENSG00000125247 | TMTC4 | transmembrane and tetratricopeptide repeat containing 4 | 84899 | NA |
| NA | ENSG00000102452 | NALCN | sodium leak channel, non-selective | 259232 | NALCN forms a voltage-independent, nonselective, noninactivating cation channel permeable to Na+, K+, and Ca(2+). It is responsible for the neuronal background sodium leak conductance (Lu et al., 2007 [PubMed 17448995]). |
| NA | ENSG00000134900 | TPP2 | tripeptidyl peptidase II | 7174 | This gene encodes a mammalian peptidase that, at neutral pH, removes tripeptides from the N terminus of longer peptides. The protein has a specialized function that is essential for some MHC class I antigen presentation. The protein is a high molecular mass serine exopeptidase; the amino acid sequence surrounding the serine residue at the active site is similar to the peptidases of the subtilisin class rather than the trypsin class. |
| NA | ENSG00000151287 | TEX30 | testis expressed 30 | 93081 | NA |
| NA | ENSG00000134901 | KDELC1 | KDEL motif containing 1 | 79070 | This gene encodes a protein product localized to the lumen of the endoplasmic reticulum. As a member of the endoplasmic reticulum protein family the encoded protein contains a Lys-Asp-Glu-Leu or KDEL motif located at the extreme C-terminus which prevents all endoplasmic reticulum resident proteins from being secreted. Proteins carrying this motif are bound by a receptor in the Golgi apparatus so that the receptor-ligand complex returns to the endoplasmic reticulum. A processed non-transcribed pseudogene located in an intron of a sodium transporter gene on chromosome 5 has been defined for this gene. This gene has multiple transcript variants which are predicted to encode distinct isoforms. |
| NA | ENSG00000134897 | BIVM | basic, immunoglobulin-like variable motif containing | 54841 | NA |
| NA | ENSG00000134899 | ERCC5 | excision repair cross-complementation group 5 | 2073 | This gene encodes a single-strand specific DNA endonuclease that makes the 3’ incision in DNA excision repair following UV-induced damage. The protein may also function in other cellular processes, including RNA polymerase II transcription, and transcription-coupled DNA repair. Mutations in this gene cause xeroderma pigmentosum complementation group G (XP-G), which is also referred to as xeroderma pigmentosum VII (XP7), a skin disorder characterized by hypersensitivity to UV light and increased susceptibility for skin cancer development following UV exposure. Some patients also develop Cockayne syndrome, which is characterized by severe growth defects, mental retardation, and cachexia. Read-through transcription exists between this gene and the neighboring upstream BIVM (basic, immunoglobulin-like variable motif containing) gene. |
| NA | ENSG00000125266 | EFNB2 | ephrin-B2 | 1948 | This gene encodes a member of the ephrin (EPH) family. The ephrins and EPH-related receptors comprise the largest subfamily of receptor protein-tyrosine kinases and have been implicated in mediating developmental events, especially in the nervous system and in erythropoiesis. Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. This gene encodes an EFNB class ephrin which binds to the EPHB4 and EPHA3 receptors. |
| NA | ENSG00000204442 | FAM155A | family with sequence similarity 155 member A | 728215 | NA |
| NA | ENSG00000174405 | LIG4 | ligase IV, DNA, ATP-dependent | 3981 | The protein encoded by this gene is a DNA ligase that joins single-strand breaks in a double-stranded polydeoxynucleotide in an ATP-dependent reaction. This protein is essential for V(D)J recombination and DNA double-strand break (DSB) repair through nonhomologous end joining (NHEJ). This protein forms a complex with the X-ray repair cross complementing protein 4 (XRCC4), and further interacts with the DNA-dependent protein kinase (DNA-PK). Both XRCC4 and DNA-PK are known to be required for NHEJ. The crystal structure of the complex formed by this protein and XRCC4 has been resolved. Defects in this gene are the cause of LIG4 syndrome. Alternatively spliced transcript variants encoding the same protein have been observed. |
| NA | ENSG00000139826 | ABHD13 | abhydrolase domain containing 13 | 84945 | NA |
| NA | ENSG00000185950 | IRS2 | insulin receptor substrate 2 | 8660 | This gene encodes the insulin receptor substrate 2, a cytoplasmic signaling molecule that mediates effects of insulin, insulin-like growth factor 1, and other cytokines by acting as a molecular adaptor between diverse receptor tyrosine kinases and downstream effectors. The product of this gene is phosphorylated by the insulin receptor tyrosine kinase upon receptor stimulation, as well as by an interleukin 4 receptor-associated kinase in response to IL4 treatment. |
| NA | ENSG00000187498 | COL4A1 | collagen type IV alpha 1 | 1282 | This gene encodes a type IV collagen alpha protein. Type IV collagen proteins are integral components of basement membranes. This gene shares a bidirectional promoter with a paralogous gene on the opposite strand. The protein consists of an amino-terminal 7S domain, a triple-helix forming collagenous domain, and a carboxy-terminal non-collagenous domain. It functions as part of a heterotrimer and interacts with other extracellular matrix components such as perlecans, proteoglycans, and laminins. In addition, proteolytic cleavage of the non-collagenous carboxy-terminal domain results in a biologically active fragment known as arresten, which has anti-angiogenic and tumor suppressor properties. Mutations in this gene cause porencephaly, cerebrovascular disease, and renal and muscular defects. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000134871 | COL4A2 | collagen type IV alpha 2 | 1284 | This gene encodes one of the six subunits of type IV collagen, the major structural component of basement membranes. The C-terminal portion of the protein, known as canstatin, is an inhibitor of angiogenesis and tumor growth. Like the other members of the type IV collagen gene family, this gene is organized in a head-to-head conformation with another type IV collagen gene so that each gene pair shares a common promoter. |
| NA | ENSG00000139832 | RAB20 | RAB20, member RAS oncogene family | 55647 | NA |
| NA | ENSG00000213995 | NAXD | NAD(P)HX dehydratase | 55739 | NA |
| NA | ENSG00000134905 | CARS2 | cysteinyl-tRNA synthetase 2, mitochondrial (putative) | 79587 | This gene encodes a putative member of the class I family of aminoacyl-tRNA synthetases. These enzymes play a critical role in protein biosynthesis by charging tRNAs with their cognate amino acids. This protein is encoded by the nuclear genome but is likely to be imported to the mitochondrion where it is thought to catalyze the ligation of cysteine to tRNA molecules. A splice-site mutation in this gene has been associated with a novel progressive myoclonic epilepsy disease with similar symptoms to MERRF syndrome. |
| NA | ENSG00000153487 | ING1 | inhibitor of growth family member 1 | 3621 | This gene encodes a tumor suppressor protein that can induce cell growth arrest and apoptosis. The encoded protein is a nuclear protein that physically interacts with the tumor suppressor protein TP53 and is a component of the p53 signaling pathway. Reduced expression and rearrangement of this gene have been detected in various cancers. Multiple alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000102606 | ARHGEF7 | Rho guanine nucleotide exchange factor 7 | 8874 | This gene encodes a protein that belongs to a family of cytoplasmic proteins that activate the Ras-like family of Rho proteins by exchanging bound GDP for GTP. It forms a complex with the small GTP binding protein Rac1 and recruits Rac1 to membrane ruffles and to focal adhesions. Multiple alternatively spliced transcript variants encoding different isoforms have been observed for this gene. |
| NA | ENSG00000126216 | TUBGCP3 | tubulin gamma complex associated protein 3 | 10426 | NA |
| NA | ENSG00000126217 | MCF2L | MCF.2 cell line derived transforming sequence like | 23263 | This gene encodes a guanine nucleotide exchange factor that interacts specifically with the GTP-bound Rac1 and plays a role in the Rho/Rac signaling pathways. A variant in this gene was associated with osteoarthritis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000126226 | PCID2 | PCI domain containing 2 | 55795 | This gene encodes a component of the TREX-2 complex (transcription and export complex 2), which regulates mRNA export from the nucleus. This protein regulates expression of Mad2 mitotic arrest deficient-like 1, a cell division checkpoint protein. This protein also interacts with and stabilizes Brca2 (breast cancer 2) protein. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000139842 | CUL4A | cullin 4A | 8451 | CUL4A is the ubiquitin ligase component of a multimeric complex involved in the degradation of DNA damage-response proteins (Liu et al., 2009 [PubMed 19481525]). |
| NA | ENSG00000185896 | LAMP1 | lysosomal associated membrane protein 1 | 3916 | The protein encoded by this gene is a member of a family of membrane glycoproteins. This glycoprotein provides selectins with carbohydrate ligands. It may also play a role in tumor cell metastasis. |
| NA | ENSG00000139835 | GRTP1 | growth hormone regulated TBC protein 1 | 79774 | NA |
| NA | ENSG00000150401 | DCUN1D2 | defective in cullin neddylation 1 domain containing 2 | 55208 | NA |
| NA | ENSG00000150403 | TMCO3 | transmembrane and coiled-coil domains 3 | 55002 | NA |
| NA | ENSG00000183087 | GAS6 | growth arrest specific 6 | 2621 | This gene encodes a gamma-carboxyglutamic acid (Gla)-containing protein thought to be involved in the stimulation of cell proliferation. This gene is frequently overexpressed in many cancers and has been implicated as an adverse prognostic marker. Elevated protein levels are additionally associated with a variety of disease states, including venous thromboembolic disease, systemic lupus erythematosus, chronic renal failure, and preeclampsia. |
| NA | ENSG00000185989 | RASA3 | RAS p21 protein activator 3 | 22821 | This gene encodes a protein that binds inositol 1,3,4,5-tetrakisphosphate and stimulates the GTPase activity of Ras p21. This protein functions as a negative regulator of the Ras signalling pathway. It is localized to the cell membrane via a pleckstrin homology (PH) domain in the C-terminal region. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169062 | UPF3A | UPF3 regulator of nonsense transcripts homolog A (yeast) | 65110 | This gene encodes a protein that is part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. The encoded protein is one of two functional homologs to yeast Upf3p. mRNA surveillance detects exported mRNAs with truncated open reading frames and initiates nonsense-mediated mRNA decay (NMD). When translation ends upstream from the last exon-exon junction, this triggers NMD to degrade mRNAs containing premature stop codons. This protein binds to the mRNA and remains bound after nuclear export, acting as a nucleocytoplasmic shuttling protein. It forms with Y14 a complex that binds specifically 20 nt upstream of exon-exon junctions. This gene is located on the long arm of chromosome 13. Two splice variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198824 | CHAMP1 | chromosome alignment maintaining phosphoprotein 1 | 283489 | NA |
| NA | ENSG00000187537 | POTEG | POTE ankyrin domain family member G | 404785 | NA |
| NA | ENSG00000136319 | TTC5 | tetratricopeptide repeat domain 5 | 91875 | NA |
| NA | ENSG00000100814 | CCNB1IP1 | cyclin B1 interacting protein 1 | 57820 | HEI10 is a member of the E3 ubiquitin ligase family and functions in progression of the cell cycle through G(2)/M. |
| NA | ENSG00000129484 | PARP2 | poly(ADP-ribose) polymerase 2 | 10038 | This gene encodes poly(ADP-ribosyl)transferase-like 2 protein, which contains a catalytic domain and is capable of catalyzing a poly(ADP-ribosyl)ation reaction. This protein has a catalytic domain which is homologous to that of poly (ADP-ribosyl) transferase, but lacks an N-terminal DNA binding domain which activates the C-terminal catalytic domain of poly (ADP-ribosyl) transferase. The basic residues within the N-terminal region of this protein may bear potential DNA-binding properties, and may be involved in the nuclear and/or nucleolar targeting of the protein. Two alternatively spliced transcript variants encoding distinct isoforms have been found. |
| NA | ENSG00000129566 | TEP1 | telomerase associated protein 1 | 7011 | This gene product is a component of the ribonucleoprotein complex responsible for telomerase activity which catalyzes the addition of new telomeres on the chromosome ends. The telomerase-associated proteins are conserved from ciliates to humans. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000092094 | OSGEP | O-sialoglycoprotein endopeptidase | 55644 | NA |
| NA | ENSG00000100823 | APEX1 | apurinic/apyrimidinic endodeoxyribonuclease 1 | 328 | Apurinic/apyrimidinic (AP) sites occur frequently in DNA molecules by spontaneous hydrolysis, by DNA damaging agents or by DNA glycosylases that remove specific abnormal bases. AP sites are pre-mutagenic lesions that can prevent normal DNA replication so the cell contains systems to identify and repair such sites. Class II AP endonucleases cleave the phosphodiester backbone 5’ to the AP site. This gene encodes the major AP endonuclease in human cells. Splice variants have been found for this gene; all encode the same protein. |
| NA | ENSG00000165782 | TMEM55B | transmembrane protein 55B | 90809 | TMEM55B catalyzes the degradation of phosphatidylinositol 4,5-bisphosphate (PtdIns-4,5-P2) by removing the 4-phosphate (Ungewickell et al., 2005 [PubMed 16365287]). |
| NA | ENSG00000198805 | PNP | purine nucleoside phosphorylase | 4860 | This gene encodes an enzyme which reversibly catalyzes the phosphorolysis of purine nucleosides. The enzyme is trimeric, containing three identical subunits. Mutations which result in nucleoside phosphorylase deficiency result in defective T-cell (cell-mediated) immunity but can also affect B-cell immunity and antibody responses. Neurologic disorders may also be apparent in patients with immune defects. A known polymorphism at aa position 51 that does not affect enzyme activity has been described. A pseudogene has been identified on chromosome 2. |
| NA | ENSG00000165792 | METTL17 | methyltransferase like 17 | 64745 | NA |
| NA | ENSG00000165795 | NDRG2 | NDRG family member 2 | 57447 | This gene is a member of the N-myc downregulated gene family which belongs to the alpha/beta hydrolase superfamily. The protein encoded by this gene is a cytoplasmic protein that may play a role in neurite outgrowth. This gene may be involved in glioblastoma carcinogenesis. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000165801 | ARHGEF40 | Rho guanine nucleotide exchange factor 40 | 55701 | This gene encodes a protein similar to guanosine nucleotide exchange factors for Rho GTPases. The encoded protein contains in its C-terminus a GEF domain involved in exchange activity and a pleckstrin homology domain. Alternatively spliced transcripts that encode different proteins have been described. |
| NA | ENSG00000165804 | ZNF219 | zinc finger protein 219 | 51222 | NA |
| NA | ENSG00000232070 | TMEM253 | transmembrane protein 253 | 643382 | NA |
| NA | ENSG00000092199 | HNRNPC | heterogeneous nuclear ribonucleoprotein C (C1/C2) | 3183 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene can act as a tetramer and is involved in the assembly of 40S hnRNP particles. Multiple transcript variants encoding at least two different isoforms have been described for this gene. |
| NA | ENSG00000092201 | SUPT16H | SPT16 homolog, facilitates chromatin remodeling subunit | 11198 | Transcription of protein-coding genes can be reconstituted on naked DNA with only the general transcription factors and RNA polymerase II. However, this minimal system cannot transcribe DNA packaged into chromatin, indicating that accessory factors may facilitate access to DNA. One such factor, FACT (facilitates chromatin transcription), interacts specifically with histones H2A/H2B to effect nucleosome disassembly and transcription elongation. FACT is composed of an 80 kDa subunit and a 140 kDa subunit; this gene encodes the 140 kDa subunit. |
| NA | ENSG00000100888 | CHD8 | chromodomain helicase DNA binding protein 8 | 57680 | This gene encodes a DNA helicase that functions as a transcription repressor by remodeling chromatin structure. It binds beta-catenin and negatively regulates Wnt signaling pathway, which plays a pivotal role in vertebrate early development and morphogenesis. Mice lacking this gene exhibit early embryonic death. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000129472 | RAB2B | RAB2B, member RAS oncogene family | 84932 | Members of the Rab protein family are nontransforming monomeric GTP-binding proteins of the Ras superfamily that contain 4 highly conserved regions involved in GTP binding and hydrolysis. Rab proteins are prenylated, membrane-bound proteins involved in vesicular fusion and trafficking; see MIM 179508. |
| NA | ENSG00000092203 | TOX4 | TOX high mobility group box family member 4 | 9878 | NA |
| NA | ENSG00000165819 | METTL3 | methyltransferase like 3 | 56339 | This gene encodes the 70 kDa subunit of MT-A which is part of N6-adenosine-methyltransferase. This enzyme is involved in the posttranscriptional methylation of internal adenosine residues in eukaryotic mRNAs, forming N6-methyladenosine. |
| NA | ENSG00000165821 | SALL2 | spalt-like transcription factor 2 | 6297 | NA |
| NA | ENSG00000129562 | DAD1 | defender against cell death 1 | 1603 | DAD1, the defender against apoptotic cell death, was initially identified as a negative regulator of programmed cell death in the temperature sensitive tsBN7 cell line. The DAD1 protein disappeared in temperature-sensitive cells following a shift to the nonpermissive temperature, suggesting that loss of the DAD1 protein triggered apoptosis. DAD1 is believed to be a tightly associated subunit of oligosaccharyltransferase both in the intact membrane and in the purified enzyme, thus reflecting the essential nature of N-linked glycosylation in eukaryotes. |
| NA | ENSG00000100439 | ABHD4 | abhydrolase domain containing 4 | 63874 | NA |
| NA | ENSG00000155465 | SLC7A7 | solute carrier family 7 member 7 | 9056 | The protein encoded by this gene is the light subunit of a cationic amino acid transporter. This sodium-independent transporter is formed when the light subunit encoded by this gene dimerizes with the heavy subunit transporter protein SLC3A2. This transporter is found in epithelial cell membranes where it transfers cationic and large neutral amino acids from the cell to the extracellular space. Defects in this gene are a cause of lysinuric protein intolerance (LPI). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000172590 | MRPL52 | mitochondrial ribosomal protein L52 | 122704 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein which has no bacterial homolog. Multiple transcript variants encoding different protein isoforms were identified through sequence analysis. |
| NA | ENSG00000157227 | MMP14 | matrix metallopeptidase 14 | 4323 | Proteins of the matrix metalloproteinase (MMP) family are involved in the breakdown of extracellular matrix in normal physiological processes, such as embryonic development, reproduction, and tissue remodeling, as well as in disease processes, such as arthritis and metastasis. Most MMP’s are secreted as inactive proproteins which are activated when cleaved by extracellular proteinases. However, the protein encoded by this gene is a member of the membrane-type MMP (MT-MMP) subfamily; each member of this subfamily contains a potential transmembrane domain suggesting that these proteins are expressed at the cell surface rather than secreted. This protein activates MMP2 protein, and this activity may be involved in tumor invasion. |
| NA | ENSG00000197324 | LRP10 | LDL receptor related protein 10 | 26020 | NA |
| NA | ENSG00000100462 | PRMT5 | protein arginine methyltransferase 5 | 10419 | This gene encodes an enzyme that belongs to the methyltransferase family. The encoded protein catalyzes the transfer of methyl groups to the amino acid arginine, in target proteins that include histones, transcriptional elongation factors and the tumor suppressor p53. This gene plays a role in several cellular processes, including transcriptional regulation, and the assembly of small nuclear ribonucleoproteins. A pseudogene of this gene has been defined on chromosome 4. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000092036 | HAUS4 | HAUS augmin like complex subunit 4 | 54930 | This gene encodes a subunit of the centrosome complex termed the human augmin complex. The encoded protein localizes to the spindle microtubules and may play a role in mitotic spindle assembly and maintenance of centrosome integrity during cell division. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 1. |
| NA | ENSG00000129474 | AJUBA | ajuba LIM protein | 84962 | NA |
| NA | ENSG00000100802 | C14orf93 | chromosome 14 open reading frame 93 | 60686 | NA |
| NA | ENSG00000100804 | PSMB5 | proteasome subunit beta 5 | 5693 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the proteasome B-type family, also known as the T1B family, that is a 20S core beta subunit in the proteasome. This catalytic subunit is not present in the immunoproteasome and is replaced by catalytic subunit 3i (proteasome beta 8 subunit). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139880 | CDH24 | cadherin 24 | 64403 | NA |
| NA | ENSG00000100813 | ACIN1 | apoptotic chromatin condensation inducer 1 | 22985 | Apoptosis is defined by several morphologic nuclear changes, including chromatin condensation and nuclear fragmentation. This gene encodes a nuclear protein that induces apoptotic chromatin condensation after activation by caspase-3, without inducing DNA fragmentation. This protein has also been shown to be a component of a splicing-dependent multiprotein exon junction complex (EJC) that is deposited at splice junctions on mRNAs, as a consequence of pre-mRNA splicing. It may thus be involved in mRNA metabolism associated with splicing. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000092068 | SLC7A8 | solute carrier family 7 member 8 | 23428 | NA |
| NA | ENSG00000215271 | HOMEZ | homeobox and leucine zipper encoding | 57594 | NA |
| NA | ENSG00000235194 | PPP1R3E | protein phosphatase 1 regulatory subunit 3E | 90673 | NA |
| NA | ENSG00000100836 | PABPN1 | poly(A) binding protein, nuclear 1 | 8106 | This gene encodes an abundant nuclear protein that binds with high affinity to nascent poly(A) tails. The protein is required for progressive and efficient polymerization of poly(A) tails at the 3’ ends of eukaryotic transcripts and controls the size of the poly(A) tail to about 250 nt. At steady-state, this protein is localized in the nucleus whereas a different poly(A) binding protein is localized in the cytoplasm. This gene contains a GCG trinucleotide repeat at the 5’ end of the coding region, and expansion of this repeat from the normal 6 copies to 8-13 copies leads to autosomal dominant oculopharyngeal muscular dystrophy (OPMD) disease. Related pseudogenes have been identified on chromosomes 19 and X. Read-through transcription also exists between this gene and the neighboring upstream BCL2-like 2 (BCL2L2) gene. |
| NA | ENSG00000092096 | SLC22A17 | solute carrier family 22 member 17 | 51310 | NA |
| NA | ENSG00000100842 | EFS | embryonal Fyn-associated substrate | 10278 | The longest protein isoform encoded by this gene contains an SH3 domain, which is known to be important in intracellular signal transduction. The protein encoded by a similiar gene in mice was shown to bind to SH3 domains of protein-tyrosine kinases. The function of this gene is unknown. Three alternatively spliced variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000129460 | NGDN | neuroguidin | 25983 | Neuroguidin is an EIF4E (MIM 133440)-binding protein that interacts with CPEB (MIM 607342) and functions as a translational regulatory protein during development of the vertebrate nervous system (Jung et al., 2006 [PubMed 16705177]). |
| NA | ENSG00000136367 | ZFHX2 | zinc finger homeobox 2 | 85446 | NA |
| NA | ENSG00000259431 | THTPA | thiamine triphosphatase | 79178 | This gene encodes an enzyme which catalyzes the biosynthesis of thiamine disphophate (vitamin B1) by hydrolysis of thiamine triphosphate. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000213983 | AP1G2 | adaptor related protein complex 1 gamma 2 subunit | 8906 | Adaptins are important components of clathrin-coated vesicles transporting ligand-receptor complexes from the plasma membrane or from the trans-Golgi network to lysosomes. The adaptin family of proteins is compsed of four classes of molecules named alpha, beta-, beta prime- and gamma- adaptins. Adaptins, together with medium and small subunits, form a heterotetrameric complex called an adaptor, whose role is to promote the formation of clathrin-coated pits and vesicles. The protein encoded by this gene is a gamma-adaptin protein and it belongs to the adaptor complexes large subunits family. This protein along with the complex is thought to function at some trafficking step in the complex pathways between the trans-Golgi network and the cell surface. Several alternatively spliced transcript variants of this gene exist, but their full-length nature is not known. |
| NA | ENSG00000092051 | JPH4 | junctophilin 4 | 84502 | This gene encodes a member of the junctophilin family of transmembrane proteins that are involved in the formation of the junctional membrane complexes between the plasma membrane and the endoplasmic/sarcoplasmic reticulum in excitable cells. The encoded protein contains a conserved N-terminal repeat region called the membrane occupation and recognition nexus sequence that is found in other members of the junctophilin family. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000157326 | DHRS4L1 | dehydrogenase/reductase (SDR family) member 4 like 1 | 728635 | NA |
| NA | ENSG00000157326 | DHRS4 | dehydrogenase/reductase (SDR family) member 4 | 10901 | NA |
| NA | ENSG00000157326 | DHRS4L2 | dehydrogenase/reductase (SDR family) member 4 like 2 | 317749 | This gene encodes a member of the short chain dehydrogenase reductase family. The encoded protein may be an NADPH dependent retinol oxidoreductase. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000187630 | DHRS4L2 | dehydrogenase/reductase (SDR family) member 4 like 2 | 317749 | This gene encodes a member of the short chain dehydrogenase reductase family. The encoded protein may be an NADPH dependent retinol oxidoreductase. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000186648 | LRRC16B | leucine rich repeat containing 16B | 90668 | NA |
| NA | ENSG00000100889 | PCK2 | phosphoenolpyruvate carboxykinase 2, mitochondrial | 5106 | This gene encodes a mitochondrial enzyme that catalyzes the conversion of oxaloacetate to phosphoenolpyruvate in the presence of guanosine triphosphate (GTP). A cytosolic form of this protein is encoded by a different gene and is the key enzyme of gluconeogenesis in the liver. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000100897 | DCAF11 | DDB1 and CUL4 associated factor 11 | 80344 | This gene encodes a WD repeat-containing protein that interacts with the COP9 signalosome, a macromolecular complex that interacts with cullin-RING E3 ligases and regulates their activity by hydrolyzing cullin-Nedd8 conjugates. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000100908 | EMC9 | ER membrane protein complex subunit 9 | 51016 | NA |
| NA | ENSG00000100911 | PSME2 | proteasome activator subunit 2 | 5721 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. The immunoproteasome contains an alternate regulator, referred to as the 11S regulator or PA28, that replaces the 19S regulator. Three subunits (alpha, beta and gamma) of the 11S regulator have been identified. This gene encodes the beta subunit of the 11S regulator, one of the two 11S subunits that is induced by gamma-interferon. Three beta and three alpha subunits combine to form a heterohexameric ring. Six pseudogenes have been identified on chromosomes 4, 5, 8, 10 and 13. |
| NA | ENSG00000100918 | REC8 | REC8 meiotic recombination protein | 9985 | This gene encodes a member of the kleisin family of SMC (structural maintenance of chromosome) protein partners. The protein localizes to the axial elements of chromosomes during meiosis in both oocytes and spermatocytes. In the mouse, the homologous protein is a key component of the meiotic cohesion complex, which regulates sister chromatid cohesion and recombination between homologous chromosomes. Multiple alternatively spliced variants, encoding the same protein, have been found for this gene. |
| NA | ENSG00000196497 | IPO4 | importin 4 | 79711 | NA |
| NA | ENSG00000100926 | TM9SF1 | transmembrane 9 superfamily member 1 | 10548 | NA |
| NA | ENSG00000129559 | NEDD8 | neural precursor cell expressed, developmentally down-regulated 8 | 4738 | NA |
| NA | ENSG00000100938 | GMPR2 | guanosine monophosphate reductase 2 | 51292 | NA |
| NA | ENSG00000092330 | TINF2 | TERF1 (TRF1)-interacting nuclear factor 2 | 26277 | This gene encodes one of the proteins of the shelterin, or telosome, complex which protects telomeres by allowing the cell to distinguish between telomeres and regions of DNA damage. The protein encoded by this gene is a critical part of shelterin; it interacts with the three DNA-binding proteins of the shelterin complex, and it is important for assembly of the complex. Mutations in this gene cause dyskeratosis congenita (DKC), an inherited bone marrow failure syndrome. |
| NA | ENSG00000157379 | DHRS1 | dehydrogenase/reductase (SDR family) member 1 | 115817 | This gene encodes a member of the short-chain dehydrogenases/reductases (SDR) family. The encoded enzyme contains a conserved catalytic domain and likely functions as an oxidoreductase. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000196943 | NOP9 | NOP9 nucleolar protein | 161424 | NA |
| NA | ENSG00000213903 | LTB4R | leukotriene B4 receptor | 1241 | NA |
| NA | ENSG00000100968 | NFATC4 | nuclear factor of activated T-cells 4 | 4776 | This gene encodes a member of the nuclear factor of activated T cells (NFAT) protein family. The encoded protein is part of a DNA-binding transcription complex. This complex consists of at least two components: a preexisting cytosolic component that translocates to the nucleus upon T cell receptor stimulation and an inducible nuclear component. NFAT proteins are activated by the calmodulin-dependent phosphatase, calcineurin. The encoded protein plays a role in the inducible expression of cytokine genes in T cells, especially in the induction of interleukin-2 and interleukin-4. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000205978 | NYNRIN | NYN domain and retroviral integrase containing | 57523 | NA |
| NA | ENSG00000100441 | KHNYN | KH and NYN domain containing | 23351 | This gene encodes a protein containing a ribonuclease NYN domain. The function of this protein has yet to be determined. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100445 | SDR39U1 | short chain dehydrogenase/reductase family 39U member 1 | 56948 | This gene encodes a member of the short-chain dehydrogenases/reductases (SDR) superfamily, which includes both classical and extended types. The encoded protein represents an extended type, with similarity to epimerases. Alternatively spliced transcript variants that encode different protein isoforms have been described. |
| NA | ENSG00000168952 | STXBP6 | syntaxin binding protein 6 | 29091 | STXBP6 binds components of the SNARE complex (see MIM 603215) and may be involved in regulating SNARE complex formation (Scales et al., 2002 [PubMed 12145319]). |
| NA | ENSG00000139910 | NOVA1 | neuro-oncological ventral antigen 1 | 4857 | This gene encodes a neuron-specific RNA-binding protein, a member of the Nova family of paraneoplastic disease antigens, that is recognized and inhibited by paraneoplastic antibodies. These antibodies are found in the sera of patients with paraneoplastic opsoclonus-ataxia, breast cancer, and small cell lung cancer. Alternatively spliced transcripts encoding distinct isoforms have been described. |
| NA | ENSG00000184304 | PRKD1 | protein kinase D1 | 5587 | PRKD1 is a serine/threonine kinase that regulates a variety of cellular functions, including membrane receptor signaling, transport at the Golgi, protection from oxidative stress at the mitochondria, gene transcription, and regulation of cell shape, motility, and adhesion (summary by Eiseler et al., 2009 [PubMed 19329994]). |
| NA | ENSG00000100473 | COCH | cochlin | 1690 | The protein encoded by this gene is highly conserved in human, mouse, and chicken, showing 94% and 79% amino acid identity of human to mouse and chicken sequences, respectively. Hybridization to this gene was detected in spindle-shaped cells located along nerve fibers between the auditory ganglion and sensory epithelium. These cells accompany neurites at the habenula perforata, the opening through which neurites extend to innervate hair cells. This and the pattern of expression of this gene in chicken inner ear paralleled the histologic findings of acidophilic deposits, consistent with mucopolysaccharide ground substance, in temporal bones from DFNA9 (autosomal dominant nonsyndromic sensorineural deafness 9) patients. Mutations that cause DFNA9 have been reported in this gene. Alternative splicing results in multiple transcript variants encoding the same protein. Additional splice variants encoding distinct isoforms have been described but their biological validities have not been demonstrated. |
| NA | ENSG00000100478 | AP4S1 | adaptor related protein complex 4 sigma 1 subunit | 11154 | This gene encodes a member of the adaptor complexes small subunit protein family. These proteins are components of the heterotetrameric adaptor protein complexes, which play important roles in the secretory and endocytic pathways by mediating vesicle formation and sorting of integral membrane proteins. The encoded protein is the small subunit of adaptor protein complex-4, which is associated with both clathrin- and nonclathrin-coated vesicles. Mutations in this gene are associated with spastic quadriplegic cerebral palsy-6. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 6. |
| NA | ENSG00000092148 | HECTD1 | HECT domain E3 ubiquitin protein ligase 1 | 25831 | NA |
| NA | ENSG00000129493 | HEATR5A | HEAT repeat containing 5A | 25938 | NA |
| NA | ENSG00000129480 | DTD2 | D-tyrosyl-tRNA deacylase 2 (putative) | 112487 | NA |
| NA | ENSG00000151413 | NUBPL | nucleotide binding protein like | 80224 | This gene encodes a member of the Mrp/NBP35 ATP-binding proteins family. The encoded protein is required for the assembly of the respiratory chain NADH dehydrogenase (complex I), an oligomeric enzymatic complex located in the inner mitochondrial membrane. Mutations in this gene cause mitochondrial complex I deficiency. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100852 | ARHGAP5 | Rho GTPase activating protein 5 | 394 | Rho GTPase activating protein 5 negatively regulates RHO GTPases, a family which may mediate cytoskeleton changes by stimulating the hydrolysis of bound GTP. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000129521 | EGLN3 | egl-9 family hypoxia-inducible factor 3 | 112399 | NA |
| NA | ENSG00000165389 | SPTSSA | serine palmitoyltransferase small subunit A | 171546 | Serine palmitoyltransferase (SPT; EC 2.3.1.50) catalyzes the first committed and rate-limiting step in sphingolipid biosynthesis. SSSPTA is a small SPT subunit that stimulates SPT activity and confers acyl-CoA preference to the SPT catalytic heterodimer of SPTLC1 (MIM 605712) and either SPTLC2 (MIM 605713) or SPTLC3 (MIM 611120) (Han et al., 2009 [PubMed 19416851]). |
| NA | ENSG00000165410 | CFL2 | cofilin 2 | 1073 | This gene encodes an intracellular protein that is involved in the regulation of actin-filament dynamics. This protein is a major component of intranuclear and cytoplasmic actin rods. It can bind G- and F-actin in a 1:1 ratio of cofilin to actin, and it reversibly controls actin polymerization and depolymerization in a pH-dependent manner. Mutations in this gene cause nemaline myopathy type 7, a form of congenital myopathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000198604 | BAZ1A | bromodomain adjacent to zinc finger domain 1A | 11177 | The BAZ1A gene encodes the accessory subunit of the ATP-dependent chromatin assembly factor (ACF), a member of the ISWI (‘imitation switch’) family of chromatin remodeling complexes (summarized by Racki et al., 2009 [PubMed 20033039]). |
| NA | ENSG00000100883 | SRP54 | signal recognition particle 54kDa | 6729 | NA |
| NA | ENSG00000151327 | FAM177A1 | family with sequence similarity 177 member A1 | 283635 | NA |
| NA | ENSG00000092020 | PPP2R3C | protein phosphatase 2 regulatory subunit B’’, gamma | 55012 | This gene encodes a regulatory subunit of the serine/threonine phosphatase, protein phosphatase 2. This protein is localized to both nuclear and cytoplasmic regions depending on cell cycle phase. Homozygous conditional knockout mice for this gene exhibit reduced numbers and impaired proliferation of immune system B cells. This protein may regulate the expression of the P-glycoprotein ATP-binding cassette transporter through its phosphatase activity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100890 | KIAA0391 | KIAA0391 | 9692 | NA |
| NA | ENSG00000100902 | PSMA6 | proteasome subunit alpha 6 | 5687 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the peptidase T1A family, that is a 20S core alpha subunit. Multiple transcript variants encoding several different isoforms have been found for this gene. A pseudogene has been identified on the Y chromosome. |
| NA | ENSG00000174373 | RALGAPA1 | Ral GTPase activating protein catalytic alpha subunit 1 | 253959 | NA |
| NA | ENSG00000100916 | BRMS1L | breast cancer metastasis-suppressor 1-like | 84312 | The protein encoded by this gene shows sequence similarity to the human breast carcinoma metastasis suppressor (BRMS1) protein and the mammalian Sds3 (suppressor of defective silencing 3) proteins. This protein is a component of the mSin3a family of histone deacetylase complexes (HDAC). |
| NA | ENSG00000151332 | MBIP | MAP3K12 binding inhibitory protein 1 | 51562 | NA |
| NA | ENSG00000183032 | SLC25A21 | solute carrier family 25 member 21 | 89874 | SLC25A21 is a homolog of the S. cerevisiae ODC proteins, mitochondrial carriers that transport C5-C7 oxodicarboxylates across inner mitochondrial membranes. One of the species transported by ODC is 2-oxoadipate, a common intermediate in the catabolism of lysine, tryptophan, and hydroxylysine in mammals. Within mitochondria, 2-oxoadipate is converted into acetyl-CoA. |
| NA | ENSG00000151338 | MIPOL1 | mirror-image polydactyly 1 | 145282 | This gene encodes a coiled-coil domain-containing protein. The encoded protein may function as a tumor suppressor. A translocation that results in truncation of the protein encoded by this locus has been associated with mirror-image polydactyly, also known as Laurin-Sandrow Syndrome. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000100934 | SEC23A | Sec23 homolog A, COPII coat complex component | 10484 | The protein encoded by this gene is a member of the SEC23 subfamily of the SEC23/SEC24 family. It is part of a protein complex and found in the ribosome-free transitional face of the endoplasmic reticulum (ER) and associated vesicles. This protein has similarity to yeast Sec23p component of COPII. COPII is the coat protein complex responsible for vesicle budding from the ER. The encoded protein is suggested to play a role in the ER-Golgi protein trafficking. |
| NA | ENSG00000092208 | GEMIN2 | gem nuclear organelle associated protein 2 | 8487 | This gene encodes one of the proteins found in the SMN complex, which consists of several gemin proteins and the protein known as the survival of motor neuron protein. The SMN complex is localized to a subnuclear compartment called gems (gemini of coiled bodies) and is required for assembly of spliceosomal snRNPs and for pre-mRNA splicing. This protein interacts directly with the survival of motor neuron protein and it is required for formation of the SMN complex. A knockout mouse targeting the mouse homolog of this gene exhibited disrupted snRNP assembly and motor neuron degeneration. |
| NA | ENSG00000182400 | TRAPPC6B | trafficking protein particle complex 6B | 122553 | TRAPPC6B is a component of TRAPP complexes, which are tethering complexes involved in vesicle transport (Kummel et al., 2005 [PubMed 16025134]). |
| NA | ENSG00000100941 | PNN | pinin, desmosome associated protein | 5411 | NA |
| NA | ENSG00000150527 | CTAGE5 | CTAGE family member 5 | 4253 | The protein encoded by this gene is a tumor-associated antigen found in cutaneous T-cell lymphoma and several other cancers. Autoantibodies against the encoded protein have been found in some cancers. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165355 | FBXO33 | F-box protein 33 | 254170 | This locus represents an member of the F-box gene family. The encoded protein contains an F-box motif and a domain that might form a structure similar to a leucine-rich repeat found in placental RNAse inhibitor. This locus may be associated with copy number variation of UGT2B17 (GeneID 7367), which has been associated with susceptibility to osteoporosis. |
| NA | ENSG00000179454 | KLHL28 | kelch like family member 28 | 54813 | NA |
| NA | ENSG00000198718 | FAM179B | family with sequence similarity 179 member B | 23116 | NA |
| NA | ENSG00000185246 | PRPF39 | pre-mRNA processing factor 39 | 55015 | NA |
| NA | ENSG00000100442 | FKBP3 | FK506 binding protein 3 | 2287 | The protein encoded by this gene is a member of the immunophilin protein family, which play a role in immunoregulation and basic cellular processes involving protein folding and trafficking. This encoded protein is a cis-trans prolyl isomerase that binds the immunosuppressants FK506 and rapamycin, as well as histone deacetylases, the transcription factor YY1, casein kinase II, and nucleolin. It has a higher affinity for rapamycin than for FK506 and thus may be an important target molecule for immunosuppression by rapamycin. |
| NA | ENSG00000187790 | FANCM | Fanconi anemia complementation group M | 57697 | The Fanconi anemia complementation group (FANC) currently includes FANCA, FANCB, FANCC, FANCD1 (also called BRCA2), FANCD2, FANCE, FANCF, FANCG, FANCI, FANCJ (also called BRIP1), FANCL, FANCM and FANCN (also called PALB2). The previously defined group FANCH is the same as FANCA. Fanconi anemia is a genetically heterogeneous recessive disorder characterized by cytogenetic instability, hypersensitivity to DNA crosslinking agents, increased chromosomal breakage, and defective DNA repair. The members of the Fanconi anemia complementation group do not share sequence similarity; they are related by their assembly into a common nuclear protein complex. This gene encodes the protein for complementation group M. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000129534 | MIS18BP1 | MIS18 binding protein 1 | 55320 | NA |
| NA | ENSG00000165496 | RPL10L | ribosomal protein L10 like | 140801 | This gene encodes a protein sharing sequence similarity with ribosomal protein L10. It is not currently known whether the encoded protein is a functional ribosomal protein or whether it has evolved a function that is independent of the ribosome. This gene is intronless. |
| NA | ENSG00000213741 | RPS29 | ribosomal protein S29 | 6235 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit and a member of the S14P family of ribosomal proteins. The protein, which contains a C2-C2 zinc finger-like domain that can bind to zinc, can enhance the tumor suppressor activity of Ras-related protein 1A (KREV1). It is located in the cytoplasm. Variable expression of this gene in colorectal cancers compared to adjacent normal tissues has been observed, although no correlation between the level of expression and the severity of the disease has been found. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165501 | LRR1 | leucine rich repeat protein 1 | 122769 | The protein encoded by this gene contains a leucine-rich repeat (LRR). It specifically interacts with TNFRSF9/4-1BB, a member of the tumor necrosis factor receptor (TNFR) superfamily. Overexpression of this gene suppresses the activation of NF-kappa B induced by TNFRSF9 or TNF receptor-associated factor 2 (TRAF2), which suggests that this protein is a negative regulator of TNFRSF9-mediated signaling cascades. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165502 | RPL36AL | ribosomal protein L36a like | 6166 | Cytoplasmic ribosomes, organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein, which shares sequence similarity with yeast ribosomal protein L44, belongs to the L44E (L36AE) family of ribosomal proteins. This gene and the human gene officially named ribosomal protein L36a (RPL36A) encode nearly identical proteins; however, they are distinct genes. Although the name of this gene has been referred to as ribosomal protein L36a (RPL36A), its official name is ribosomal protein L36a-like (RPL36AL). As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000168282 | MGAT2 | mannosyl (alpha-1,6-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase | 4247 | The product of this gene is a Golgi enzyme catalyzing an essential step in the conversion of oligomannose to complex N-glycans. The enzyme has the typical glycosyltransferase domains: a short N-terminal cytoplasmic domain, a hydrophobic non-cleavable signal-anchor domain, and a C-terminal catalytic domain. Mutations in this gene may lead to carbohydrate-deficient glycoprotein syndrome, type II. The coding region of this gene is intronless. Transcript variants with a spliced 5’ UTR may exist, but their biological validity has not been determined. |
| NA | ENSG00000100479 | POLE2 | polymerase (DNA) epsilon 2, accessory subunit | 5427 | NA |
| NA | ENSG00000165525 | NEMF | nuclear export mediator factor | 9147 | NA |
| NA | ENSG00000165527 | ARF6 | ADP ribosylation factor 6 | 382 | This gene encodes a member of the human ARF gene family, which is part of the RAS superfamily. The ARF genes encode small guanine nucleotide-binding proteins that stimulate the ADP-ribosyltransferase activity of cholera toxin and play a role in vesicular trafficking and as activators of phospholipase D. The product of this gene is localized to the plasma membrane, and regulates vesicular trafficking, remodelling of membrane lipids, and signaling pathways that lead to actin remodeling. A pseudogene of this gene is located on chromosome 7. |
| NA | ENSG00000100483 | VCPKMT | valosin containing protein lysine methyltransferase | 79609 | NA |
| NA | ENSG00000100485 | SOS2 | SOS Ras/Rho guanine nucleotide exchange factor 2 | 6655 | NA |
| NA | ENSG00000087299 | L2HGDH | L-2-hydroxyglutarate dehydrogenase | 79944 | This gene encodes L-2-hydroxyglutarate dehydrogenase, a FAD-dependent enzyme that oxidizes L-2-hydroxyglutarate to alpha-ketoglutarate in a variety of mammalian tissues. Mutations in this gene cause L-2-hydroxyglutaric aciduria, a rare autosomal recessive neurometabolic disorder resulting in moderate to severe mental retardation. |
| NA | ENSG00000125375 | ATP5S | ATP synthase, H+ transporting, mitochondrial Fo complex subunit s (factor B) | 27109 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. This gene encodes the subunit s, also known as factor B, of the proton channel. This subunit is necessary for the energy transduction activity of the ATP synthase complexes. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000012983 | MAP4K5 | mitogen-activated protein kinase kinase kinase kinase 5 | 11183 | This gene encodes a member of the serine/threonine protein kinase family, that is highly similar to yeast SPS1/STE20 kinase. Yeast SPS1/STE20 functions near the beginning of the MAP kinase signal cascades that is essential for yeast pheromone response. This kinase was shown to activate Jun kinase in mammalian cells, which suggested a role in stress response. Two alternatively spliced transcript variants encoding the same protein have been described for this gene. |
| NA | ENSG00000198513 | ATL1 | atlastin GTPase 1 | 51062 | The protein encoded by this gene is a GTPase and a Golgi body transmembrane protein. The encoded protein can form a homotetramer and has been shown to interact with spastin and with mitogen-activated protein kinase kinase kinase kinase 4. This protein may be involved in axonal maintenance as evidenced by the fact that defects in this gene are a cause of spastic paraplegia type 3. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000151748 | SAV1 | salvador family WW domain containing protein 1 | 60485 | WW domain-containing proteins are found in all eukaryotes and play an important role in the regulation of a wide variety of cellular functions such as protein degradation, transcription, and RNA splicing. This gene encodes a protein with two WW domains, a SARAH domain, and a coiled-coil region and is ubiquitously expressed in adult tissues. This protein binds to MST1 (mammalian sterile 20-like kinase 1) and promotes MST1-induced apoptosis. It has also been shown to bind to HAX1 (hematopoietic cell-specific protein 1 (HS1)-associated protein X-1) and to attenuate the anti-apoptotic effects of HAX1. Studies in human and mouse suggest this gene acts as a tumor suppressor. |
| NA | ENSG00000100503 | NIN | ninein | 51199 | This gene encodes one of the proteins important for centrosomal function. This protein is important for positioning and anchoring the microtubules minus-ends in epithelial cells. Localization of this protein to the centrosome requires three leucine zippers in the central coiled-coil domain. Multiple alternatively spliced transcript variants that encode different isoforms have been reported. |
| NA | ENSG00000100504 | PYGL | phosphorylase, glycogen, liver | 5836 | This gene encodes a homodimeric protein that catalyses the cleavage of alpha-1,4-glucosidic bonds to release glucose-1-phosphate from liver glycogen stores. This protein switches from inactive phosphorylase B to active phosphorylase A by phosphorylation of serine residue 15. Activity of this enzyme is further regulated by multiple allosteric effectors and hormonal controls. Humans have three glycogen phosphorylase genes that encode distinct isozymes that are primarily expressed in liver, brain and muscle, respectively. The liver isozyme serves the glycemic demands of the body in general while the brain and muscle isozymes supply just those tissues. In glycogen storage disease type VI, also known as Hers disease, mutations in liver glycogen phosphorylase inhibit the conversion of glycogen to glucose and results in moderate hypoglycemia, mild ketosis, growth retardation and hepatomegaly. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000131969 | ABHD12B | abhydrolase domain containing 12B | 145447 | NA |
| NA | ENSG00000100505 | TRIM9 | tripartite motif containing 9 | 114088 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The protein localizes to cytoplasmic bodies. Its function has not been identified. Alternate splicing of this gene generates two transcript variants encoding different isoforms. |
| NA | ENSG00000139921 | TMX1 | thioredoxin related transmembrane protein 1 | 81542 | TXNDC1 is a thioredoxin (TXN; see MIM 187700)-related protein with disulfide reductase activity (Matsuo et al., 2001 [PubMed 11152479]). |
| NA | ENSG00000139926 | FRMD6 | FERM domain containing 6 | 122786 | NA |
| NA | ENSG00000186469 | GNG2 | G protein subunit gamma 2 | 54331 | This gene encodes one of the gamma subunits of a guanine nucleotide-binding protein. Such proteins are involved in signaling mechanisms across membranes. Various subunits forms heterodimers which then interact with the different signal molecules. |
| NA | ENSG00000087302 | C14orf166 | chromosome 14 open reading frame 166 | 51637 | NA |
| NA | ENSG00000087303 | NID2 | nidogen 2 | 22795 | This gene encodes a member of the nidogen family of basement membrane proteins. This protein is a cell-adhesion protein that binds collagens I and IV and laminin and may be involved in maintaining the structure of the basement membrane. |
| NA | ENSG00000087301 | TXNDC16 | thioredoxin domain containing 16 | 57544 | NA |
| NA | ENSG00000180998 | GPR137C | G protein-coupled receptor 137C | 283554 | NA |
| NA | ENSG00000197930 | ERO1A | endoplasmic reticulum oxidoreductase alpha | 30001 | NA |
| NA | ENSG00000100519 | PSMC6 | proteasome 26S subunit, ATPase 6 | 5706 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes one of the ATPase subunits, a member of the triple-A family of ATPases which have a chaperone-like activity. Pseudogenes have been identified on chromosomes 8 and 12. |
| NA | ENSG00000198252 | STYX | serine/threonine/tyrosine interacting protein | 6815 | The protein encoded by this gene is a pseudophosphatase, able to bind potential substrates but lacking an active catalytic loop. The encoded protein may be involved in spermiogenesis. Two transcript variants encoding the same protein have been found for these genes. |
| NA | ENSG00000100522 | GNPNAT1 | glucosamine-phosphate N-acetyltransferase 1 | 64841 | NA |
| NA | ENSG00000073712 | FERMT2 | fermitin family member 2 | 10979 | NA |
| NA | ENSG00000100523 | DDHD1 | DDHD domain containing 1 | 80821 | This gene is a member of the intracellular phospholipase A1 gene family. The protein encoded by this gene preferentially hydrolyzes phosphatidic acid. It is a cytosolic protein with some mitochondrial localization, and is thought to be involved in the regulation of mitochondrial dynamics. Overexpression of this gene causes fragmentation of the tubular structures in mitochondria, while depletion of the gene results in mitochondrial tubule elongation. Deletion of this gene in male mice caused fertility defects, resulting from disruption in the organization of the mitochondria during spermiogenesis. In humans, mutations in this gene have been associated with hereditary spastic paraplegia (HSP), also known as Strumpell-Lorrain disease, or, familial spastic paraparesis (FSP). This inherited disorder is characterized by progressive weakness and spasticity of the legs. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000125378 | BMP4 | bone morphogenetic protein 4 | 652 | This gene encodes a member of the bone morphogenetic protein (BMP) family of proteins, which is part of the transforming growth factor-beta (TGF-beta) superfamily. Members of the BMP family play an important role in bone and cartilage development. The encoded preproprotein is proteolytically processed to generate each subunit of the disulfide-linked homodimer. Mutations in this gene are associated with orofacial cleft and microphthalmia in human patients. The encoded protein may also be involved in the pathology of multiple cardiovascular diseases and human cancers. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100526 | CDKN3 | cyclin-dependent kinase inhibitor 3 | 1033 | The protein encoded by this gene belongs to the dual specificity protein phosphatase family. It was identified as a cyclin-dependent kinase inhibitor, and has been shown to interact with, and dephosphorylate CDK2 kinase, thus prevent the activation of CDK2 kinase. This gene was reported to be deleted, mutated, or overexpressed in several kinds of cancers. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197045 | GMFB | glia maturation factor beta | 2764 | NA |
| NA | ENSG00000100532 | CGRRF1 | cell growth regulator with ring finger domain 1 | 10668 | NA |
| NA | ENSG00000020577 | SAMD4A | sterile alpha motif domain containing 4A | 23034 | Sterile alpha motifs (SAMs) in proteins such as SAMD4A are part of an RNA-binding domain that functions as a posttranscriptional regulator by binding to an RNA sequence motif known as the Smaug recognition element, which was named after the Drosophila Smaug protein (Baez and Boccaccio, 2005 [PubMed 16221671]). |
| NA | ENSG00000131979 | GCH1 | GTP cyclohydrolase 1 | 2643 | This gene encodes a member of the GTP cyclohydrolase family. The encoded protein is the first and rate-limiting enzyme in tetrahydrobiopterin (BH4) biosynthesis, catalyzing the conversion of GTP into 7,8-dihydroneopterin triphosphate. BH4 is an essential cofactor required by aromatic amino acid hydroxylases as well as nitric oxide synthases. Mutations in this gene are associated with malignant hyperphenylalaninemia and dopa-responsive dystonia. Several alternatively spliced transcript variants encoding different isoforms have been described; however, not all variants give rise to a functional enzyme. |
| NA | ENSG00000198554 | WDHD1 | WD repeat and HMG-box DNA binding protein 1 | 11169 | The protein encoded by this gene contains multiple N-terminal WD40 domains and a C-terminal high mobility group (HMG) box. WD40 domains are found in a variety of eukaryotic proteins and may function as adaptor/regulatory modules in signal transduction, pre-mRNA processing and cytoskeleton assembly. HMG boxes are found in many eukaryotic proteins involved in chromatin assembly, transcription and replication. Alternative splicing results in two transcript variants encoding different isoforms. |
| NA | ENSG00000168175 | MAPK1IP1L | mitogen-activated protein kinase 1 interacting protein 1-like | 93487 | NA |
| NA | ENSG00000131981 | LGALS3 | lectin, galactoside-binding, soluble, 3 | 3958 | This gene encodes a member of the galectin family of carbohydrate binding proteins. Members of this protein family have an affinity for beta-galactosides. The encoded protein is characterized by an N-terminal proline-rich tandem repeat domain and a single C-terminal carbohydrate recognition domain. This protein can self-associate through the N-terminal domain allowing it to bind to multivalent saccharide ligands. This protein localizes to the extracellular matrix, the cytoplasm and the nucleus. This protein plays a role in numerous cellular functions including apoptosis, innate immunity, cell adhesion and T-cell regulation. The protein exhibits antimicrobial activity against bacteria and fungi. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000126787 | DLGAP5 | discs large homolog associated protein 5 | 9787 | NA |
| NA | ENSG00000178974 | FBXO34 | F-box protein 34 | 55030 | Members of the F-box protein family, such as FBXO34, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000126775 | ATG14 | autophagy related 14 | 22863 | NA |
| NA | ENSG00000182521 | TBPL2 | TATA-box binding protein like 2 | 387332 | NA |
| NA | ENSG00000126777 | KTN1 | kinectin 1 | 3895 | This gene encodes an integral membrane protein that is a member of the kinectin protein family. The encoded protein is primarily localized to the endoplasmic reticulum membrane. This protein binds kinesin and may be involved in intracellular organelle motility. This protein also binds translation elongation factor-delta and may be involved in the assembly of the elongation factor-1 complex. Alternate splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000139946 | PELI2 | pellino E3 ubiquitin protein ligase family member 2 | 57161 | NA |
| NA | ENSG00000070269 | TMEM260 | transmembrane protein 260 | 54916 | NA |
| NA | ENSG00000070367 | EXOC5 | exocyst complex component 5 | 10640 | The protein encoded by this gene is a component of the exocyst complex, a multiple protein complex essential for targeting exocytic vesicles to specific docking sites on the plasma membrane. Though best characterized in yeast, the component proteins and functions of exocyst complex have been demonstrated to be highly conserved in higher eukaryotes. At least eight components of the exocyst complex, including this protein, are found to interact with the actin cytoskeletal remodeling and vesicle transport machinery. The complex is also essential for the biogenesis of epithelial cell surface polarity. |
| NA | ENSG00000053770 | AP5M1 | adaptor related protein complex 5 mu 1 subunit | 55745 | NA |
| NA | ENSG00000139977 | NAA30 | N(alpha)-acetyltransferase 30, NatC catalytic subunit | 122830 | NA |
| NA | ENSG00000139971 | C14orf37 | chromosome 14 open reading frame 37 | 145407 | NA |
| NA | ENSG00000131966 | ACTR10 | actin-related protein 10 homolog (S. cerevisiae) | 55860 | NA |
| NA | ENSG00000100567 | PSMA3 | proteasome subunit alpha 3 | 5684 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the peptidase T1A family, that is a 20S core alpha subunit. Two alternative transcripts encoding different isoforms have been identified. |
| NA | ENSG00000032219 | ARID4A | AT-rich interaction domain 4A | 5926 | The protein encoded by this gene is a ubiquitously expressed nuclear protein. It binds directly, with several other proteins, to retinoblastoma protein (pRB) which regulates cell proliferation. pRB represses transcription by recruiting the encoded protein. This protein, in turn, serves as a bridging molecule to recruit HDACs and, in addition, provides a second HDAC-independent repression function. The encoded protein possesses transcriptional repression activity. Multiple alternatively spliced transcripts have been observed for this gene, although not all transcript variants have been fully described. |
| NA | ENSG00000100578 | KIAA0586 | KIAA0586 | 9786 | NA |
| NA | ENSG00000165617 | DACT1 | dishevelled-binding antagonist of beta-catenin 1 | 51339 | The protein encoded by this gene belongs to the dapper family, characterized by the presence of PDZ-binding motif at the C-terminus. It interacts with, and positively regulates dishevelled-mediated signaling pathways during development. Depletion of this mRNA from xenopus embryos resulted in loss of notochord and head structures, and mice lacking this gene died shortly after birth from severe posterior malformations. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000100592 | DAAM1 | dishevelled associated activator of morphogenesis 1 | 23002 | Cell motility, adhesion, cytokinesis, and other functions of the cell cortex are mediated by reorganization of the actin cytoskeleton and several formin homology (FH) proteins have been associated with these processes. The protein encoded by this gene contains two FH domains and belongs to a novel FH protein subfamily implicated in cell polarity. A key regulator of cytoskeletal architecture, the small GTPase Rho, is activated during development by Wnt/Fz signaling to control cell polarity and movement. The protein encoded by this gene is thought to function as a scaffolding protein for the Wnt-induced assembly of a disheveled (Dvl)-Rho complex. This protein also promotes the nucleation and elongation of new actin filaments and regulates cell growth through the stabilization of microtubules. Alternative splicing results in multiple transcript variants encoding distinct proteins. |
| NA | ENSG00000126790 | L3HYPDH | trans-L-3-hydroxyproline dehydratase | 112849 | NA |
| NA | ENSG00000050130 | JKAMP | JNK1/MAPK8-associated membrane protein | 51528 | NA |
| NA | ENSG00000139970 | RTN1 | reticulon 1 | 6252 | This gene belongs to the family of reticulon encoding genes. Reticulons are associated with the endoplasmic reticulum, and are involved in neuroendocrine secretion or in membrane trafficking in neuroendocrine cells. This gene is considered to be a specific marker for neurological diseases and cancer, and is a potential molecular target for therapy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000131951 | LRRC9 | leucine rich repeat containing 9 | ENSG00000131951 | NA |
| NA | ENSG00000126773 | PCNX4 | pecanex homolog 4 (Drosophila) | 64430 | NA |
| NA | ENSG00000100614 | PPM1A | protein phosphatase, Mg2+/Mn2+ dependent 1A | 5494 | The protein encoded by this gene is a member of the PP2C family of Ser/Thr protein phosphatases. PP2C family members are known to be negative regulators of cell stress response pathways. This phosphatase dephosphorylates, and negatively regulates the activities of, MAP kinases and MAP kinase kinases. It has been shown to inhibit the activation of p38 and JNK kinase cascades induced by environmental stresses. This phosphatase can also dephosphorylate cyclin-dependent kinases, and thus may be involved in cell cycle control. Overexpression of this phosphatase is reported to activate the expression of the tumor suppressor gene TP53/p53, which leads to G2/M cell cycle arrest and apoptosis. Three alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000100625 | SIX4 | SIX homeobox 4 | 51804 | This gene encodes a member of the homeobox family, subfamily SIX. The drosophila homolog is a nuclear homeoprotein required for eye development. Studies in mouse show that this gene product functions as a transcription factor, and may have a role in the differentiation or maturation of neuronal cells. |
| NA | ENSG00000126814 | TRMT5 | tRNA methyltransferase 5 | 57570 | tRNAs contain as many as 13 or 14 nucleotides that are modified posttranscriptionally by enzymes that are highly specific for particular nucleotides in the tRNA structure. TRMT5 methylates the N1 position of guanosine-37 (G37) in selected tRNAs using S-adenosyl methionine (Brule et al., 2004 [PubMed 15248782]). |
| NA | ENSG00000139974 | SLC38A6 | solute carrier family 38 member 6 | 145389 | NA |
| NA | ENSG00000027075 | PRKCH | protein kinase C eta | 5583 | Protein kinase C (PKC) is a family of serine- and threonine-specific protein kinases that can be activated by calcium and the second messenger diacylglycerol. PKC family members phosphorylate a wide variety of protein targets and are known to be involved in diverse cellular signaling pathways. PKC family members also serve as major receptors for phorbol esters, a class of tumor promoters. Each member of the PKC family has a specific expression profile and is believed to play a distinct role in cells. The protein encoded by this gene is one of the PKC family members. It is a calcium-independent and phospholipids-dependent protein kinase. It is predominantly expressed in epithelial tissues and has been shown to reside specifically in the cell nucleus. This protein kinase can regulate keratinocyte differentiation by activating the MAP kinase MAPK13 (p38delta)-activated protein kinase cascade that targets CCAAT/enhancer-binding protein alpha (CEBPA). It is also found to mediate the transcription activation of the transglutaminase 1 (TGM1) gene. Mutations in this gene are associated with susceptibility to cerebral infarction. |
| NA | ENSG00000182107 | TMEM30B | transmembrane protein 30B | 161291 | NA |
| NA | ENSG00000100644 | HIF1A | hypoxia inducible factor 1 alpha subunit | 3091 | This gene encodes the alpha subunit of transcription factor hypoxia-inducible factor-1 (HIF-1), which is a heterodimer composed of an alpha and a beta subunit. HIF-1 functions as a master regulator of cellular and systemic homeostatic response to hypoxia by activating transcription of many genes, including those involved in energy metabolism, angiogenesis, apoptosis, and other genes whose protein products increase oxygen delivery or facilitate metabolic adaptation to hypoxia. HIF-1 thus plays an essential role in embryonic vascularization, tumor angiogenesis and pathophysiology of ischemic disease. Alternatively spliced transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000154001 | PPP2R5E | protein phosphatase 2 regulatory subunit B’, epsilon | 5529 | The protein encoded by this gene belongs to the phosphatase 2A regulatory subunit B family. Protein phosphatase 2A is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The B regulatory subunit might modulate substrate selectivity and catalytic activity. This gene encodes an epsilon isoform of the regulatory subunit B56 subfamily. Multiple transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000140006 | WDR89 | WD repeat domain 89 | 112840 | NA |
| NA | ENSG00000126821 | SGPP1 | sphingosine-1-phosphate phosphatase 1 | 81537 | Sphingosine-1-phosphate (S1P) is a bioactive sphingolipid metabolite that regulates diverse biologic processes. SGPP1 catalyzes the degradation of S1P via salvage and recycling of sphingosine into long-chain ceramides (Mandala et al., 2000 [PubMed 10859351]; Le Stunff et al., 2007 [PubMed 17895250]). |
| NA | ENSG00000054654 | SYNE2 | spectrin repeat containing, nuclear envelope 2 | 23224 | The protein encoded by this gene is a nuclear outer membrane protein that binds cytoplasmic F-actin. This binding tethers the nucleus to the cytoskeleton and aids in the maintenance of the structural integrity of the nucleus. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100714 | MTHFD1 | methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase | 4522 | This gene encodes a protein that possesses three distinct enzymatic activities, 5,10-methylenetetrahydrofolate dehydrogenase, 5,10-methenyltetrahydrofolate cyclohydrolase and 10-formyltetrahydrofolate synthetase. Each of these activities catalyzes one of three sequential reactions in the interconversion of 1-carbon derivatives of tetrahydrofolate, which are substrates for methionine, thymidylate, and de novo purine syntheses. The trifunctional enzymatic activities are conferred by two major domains, an aminoterminal portion containing the dehydrogenase and cyclohydrolase activities and a larger synthetase domain. |
| NA | ENSG00000089775 | ZBTB25 | zinc finger and BTB domain containing 25 | 7597 | NA |
| NA | ENSG00000179841 | AKAP5 | A-kinase anchoring protein 5 | 9495 | The A-kinase anchor proteins (AKAPs) are a group of structurally diverse proteins, which have the common function of binding to the regulatory subunit of protein kinase A (PKA) and confining the holoenzyme to discrete locations within the cell. This gene encodes a member of the AKAP family. The encoded protein binds to the RII-beta regulatory subunit of PKA, and also to protein kinase C and the phosphatase calcineurin. It is predominantly expressed in cerebral cortex and may anchor the PKA protein at postsynaptic densities (PSD) and be involved in the regulation of postsynaptic events. It is also expressed in T lymphocytes and may function to inhibit interleukin-2 transcription by disrupting calcineurin-dependent dephosphorylation of NFAT. |
| NA | ENSG00000126804 | ZBTB1 | zinc finger and BTB domain containing 1 | 22890 | NA |
| NA | ENSG00000126803 | HSPA2 | heat shock protein family A (Hsp70) member 2 | 3306 | NA |
| NA | ENSG00000126822 | PLEKHG3 | pleckstrin homology and RhoGEF domain containing G3 | 26030 | NA |
| NA | ENSG00000258289 | CHURC1 | churchill domain containing 1 | 91612 | NA |
| NA | ENSG00000257365 | FNTB | farnesyltransferase, CAAX box, beta | 2342 | NA |
| NA | ENSG00000139998 | RAB15 | RAB15, member RAS oncogene family | 376267 | NA |
| NA | ENSG00000125952 | MAX | MYC associated factor X | 4149 | The protein encoded by this gene is a member of the basic helix-loop-helix leucine zipper (bHLHZ) family of transcription factors. It is able to form homodimers and heterodimers with other family members, which include Mad, Mxi1 and Myc. Myc is an oncoprotein implicated in cell proliferation, differentiation and apoptosis. The homodimers and heterodimers compete for a common DNA target site (the E box) and rearrangement among these dimer forms provides a complex system of transcriptional regulation. Mutations of this gene have been reported to be associated with hereditary pheochromocytoma. A pseudogene of this gene is located on the long arm of chromosome 7. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171723 | GPHN | gephyrin | 10243 | This gene encodes a neuronal assembly protein that anchors inhibitory neurotransmitter receptors to the postsynaptic cytoskeleton via high affinity binding to a receptor subunit domain and tubulin dimers. In nonneuronal tissues, the encoded protein is also required for molybdenum cofactor biosynthesis. Mutations in this gene may be associated with the neurological condition hyperplexia and also lead to molybdenum cofactor deficiency. Numerous alternatively spliced transcript variants encoding different isoforms have been described; however, the full-length nature of all transcript variants is not currently known. |
| NA | ENSG00000172717 | FAM71D | family with sequence similarity 71 member D | 161142 | NA |
| NA | ENSG00000072415 | MPP5 | membrane protein, palmitoylated 5 | 64398 | This gene encodes a member of the p55-like subfamily of the membrane-associated guanylate kinase (MAGUK) gene superfamily. The encoded protein participates in the polarization of differentiating cells, has been shown to regulate myelinating Schwann cells (PMID: 20237282), and is one of the components of the Crumbs complex in the retina. Mice which express lower levels of the orthologous protein have retinal degeneration and impaired vision (PMID: 22114289). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000134001 | EIF2S1 | eukaryotic translation initiation factor 2 subunit alpha | 1965 | The translation initiation factor EIF2 catalyzes the first regulated step of protein synthesis initiation, promoting the binding of the initiator tRNA to 40S ribosomal subunits. Binding occurs as a ternary complex of methionyl-tRNA, EIF2, and GTP. EIF2 is composed of 3 nonidentical subunits, the 36-kD EIF2-alpha subunit (EIF2S1), the 38-kD EIF2-beta subunit (EIF2S2; MIM 603908), and the 52-kD EIF2-gamma subunit (EIF2S3; MIM 300161). The rate of formation of the ternary complex is modulated by the phosphorylation state of EIF2-alpha (Ernst et al., 1987 [PubMed 2948954]). |
| NA | ENSG00000054690 | PLEKHH1 | pleckstrin homology, MyTH4 and FERM domain containing H1 | 57475 | NA |
| NA | ENSG00000100564 | PIGH | phosphatidylinositol glycan anchor biosynthesis class H | 5283 | This gene encodes an endoplasmic reticulum associated protein that is involved in glycosylphosphatidylinositol (GPI)-anchor biosynthesis. The GPI anchor is a glycolipid found on many blood cells and which serves to anchor proteins to the cell surface. The protein encoded by this gene is a subunit of the GPI N-acetylglucosaminyl (GlcNAc) transferase that transfers GlcNAc to phosphatidylinositol (PI) on the cytoplasmic side of the endoplasmic reticulum. |
| NA | ENSG00000081181 | ARG2 | arginase 2 | 384 | Arginase catalyzes the hydrolysis of arginine to ornithine and urea. At least two isoforms of mammalian arginase exists (types I and II) which differ in their tissue distribution, subcellular localization, immunologic crossreactivity and physiologic function. The type II isoform encoded by this gene, is located in the mitochondria and expressed in extra-hepatic tissues, especially kidney. The physiologic role of this isoform is poorly understood; it is thought to play a role in nitric oxide and polyamine metabolism. Transcript variants of the type II gene resulting from the use of alternative polyadenylation sites have been described. |
| NA | ENSG00000100568 | VTI1B | vesicle transport through interaction with t-SNAREs 1B | 10490 | NA |
| NA | ENSG00000072042 | RDH11 | retinol dehydrogenase 11 (all-trans/9-cis/11-cis) | 51109 | The protein encoded by this gene is an NADPH-dependent retinal reductase and a short-chain dehydrogenase/reductase. The encoded protein has no steroid dehydrogenase activity. |
| NA | ENSG00000139988 | RDH12 | retinol dehydrogenase 12 (all-trans/9-cis/11-cis) | 145226 | The protein encoded by this gene is an NADPH-dependent retinal reductase whose highest activity is toward 9-cis and all-trans-retinol. The encoded enzyme also plays a role in the metabolism of short-chain aldehydes but does not exhibit steroid dehydrogenase activity. Defects in this gene are a cause of Leber congenital amaurosis type 13 and Retinitis Pigmentosa 53. |
| NA | ENSG00000072121 | ZFYVE26 | zinc finger FYVE-type containing 26 | 23503 | This gene encodes a protein which contains a FYVE zinc finger binding domain. The presence of this domain is thought to target these proteins to membrane lipids through interaction with phospholipids in the membrane. Mutations in this gene are associated with autosomal recessive spastic paraplegia-15. |
| NA | ENSG00000182185 | RAD51B | RAD51 paralog B | 5890 | The protein encoded by this gene is a member of the RAD51 protein family. RAD51 family members are evolutionarily conserved proteins essential for DNA repair by homologous recombination. This protein has been shown to form a stable heterodimer with the family member RAD51C, which further interacts with the other family members, such as RAD51, XRCC2, and XRCC3. Overexpression of this gene was found to cause cell cycle G1 delay and cell apoptosis, which suggested a role of this protein in sensing DNA damage. At least three alternatively spliced transcript variants encoding distinct isoforms have been observed. Rearrangements between this locus and high mobility group AT-hook 2 (HMGA2, GeneID 8091) have been observed in uterine leiomyomata. |
| NA | ENSG00000185650 | ZFP36L1 | ZFP36 ring finger protein-like 1 | 677 | This gene is a member of the TIS11 family of early response genes, which are induced by various agonists such as the phorbol ester TPA and the polypeptide mitogen EGF. This gene is well conserved across species and has a promoter that contains motifs seen in other early-response genes. The encoded protein contains a distinguishing putative zinc finger domain with a repeating cys-his motif. This putative nuclear transcription factor most likely functions in regulating the response to growth factors. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000072110 | ACTN1 | actinin alpha 1 | 87 | Alpha actinins belong to the spectrin gene superfamily which represents a diverse group of cytoskeletal proteins, including the alpha and beta spectrins and dystrophins. Alpha actinin is an actin-binding protein with multiple roles in different cell types. In nonmuscle cells, the cytoskeletal isoform is found along microfilament bundles and adherens-type junctions, where it is involved in binding actin to the membrane. In contrast, skeletal, cardiac, and smooth muscle isoforms are localized to the Z-disc and analogous dense bodies, where they help anchor the myofibrillar actin filaments. This gene encodes a nonmuscle, cytoskeletal, alpha actinin isoform and maps to the same site as the structurally similar erythroid beta spectrin gene. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000139990 | DCAF5 | DDB1 and CUL4 associated factor 5 | 8816 | NA |
| NA | ENSG00000081177 | EXD2 | exonuclease 3’-5’ domain containing 2 | 55218 | NA |
| NA | ENSG00000100626 | GALNT16 | polypeptide N-acetylgalactosaminyltransferase 16 | 57452 | NA |
| NA | ENSG00000100632 | ERH | enhancer of rudimentary homolog (Drosophila) | 2079 | NA |
| NA | ENSG00000100647 | SUSD6 | sushi domain containing 6 | 9766 | NA |
| NA | ENSG00000100650 | SRSF5 | serine/arginine-rich splicing factor 5 | 6430 | The protein encoded by this gene is a member of the serine/arginine (SR)-rich family of pre-mRNA splicing factors, which constitute part of the spliceosome. Each of these factors contains an RNA recognition motif (RRM) for binding RNA and an RS domain for binding other proteins. The RS domain is rich in serine and arginine residues and facilitates interaction between different SR splicing factors. In addition to being critical for mRNA splicing, the SR proteins have also been shown to be involved in mRNA export from the nucleus and in translation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000133983 | COX16 | COX16 cytochrome c oxidase assembly homolog | 51241 | NA |
| NA | ENSG00000213463 | SYNJ2BP | synaptojanin 2 binding protein | 55333 | NA |
| NA | ENSG00000133997 | MED6 | mediator complex subunit 6 | 10001 | NA |
| NA | ENSG00000133985 | TTC9 | tetratricopeptide repeat domain 9 | 23508 | This gene encodes a protein that contains three tetratricopeptide repeats. The gene has been shown to be hormonally regulated in breast cancer cells and may play a role in cancer cell invasion and metastasis. |
| NA | ENSG00000006432 | MAP3K9 | mitogen-activated protein kinase kinase kinase 9 | 4293 | NA |
| NA | ENSG00000100731 | PCNX1 | pecanex homolog 1 (Drosophila) | 22990 | NA |
| NA | ENSG00000197555 | SIPA1L1 | signal-induced proliferation-associated 1 like 1 | 26037 | NA |
| NA | ENSG00000119599 | DCAF4 | DDB1 and CUL4 associated factor 4 | 26094 | This gene encodes a WD repeat-containing protein that interacts with the Cul4-Ddb1 E3 ligase macromolecular complex. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000165861 | ZFYVE1 | zinc finger FYVE-type containing 1 | 53349 | The FYVE domain mediates the recruitment of proteins involved in membrane trafficking and cell signaling to phosphatidylinositol 3-phosphate-containing membranes. This protein contains two zinc-binding FYVE domains in tandem and is reported to localize to the Golgi apparatus. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000119707 | RBM25 | RNA binding motif protein 25 | 58517 | NA |
| NA | ENSG00000080815 | PSEN1 | presenilin 1 | 5663 | Alzheimer’s disease (AD) patients with an inherited form of the disease carry mutations in the presenilin proteins (PSEN1; PSEN2) or in the amyloid precursor protein (APP). These disease-linked mutations result in increased production of the longer form of amyloid-beta (main component of amyloid deposits found in AD brains). Presenilins are postulated to regulate APP processing through their effects on gamma-secretase, an enzyme that cleaves APP. Also, it is thought that the presenilins are involved in the cleavage of the Notch receptor, such that they either directly regulate gamma-secretase activity or themselves are protease enzymes. Several alternatively spliced transcript variants encoding different isoforms have been identified for this gene, the full-length nature of only some have been determined. |
| NA | ENSG00000133961 | LOC101928143 | uncharacterized LOC101928143 | 101928143 | NA |
| NA | ENSG00000133961 | NUMB | numb homolog (Drosophila) | 8650 | The protein encoded by this gene plays a role in the determination of cell fates during development. The encoded protein, whose degradation is induced in a proteasome-dependent manner by MDM2, is a membrane-bound protein that has been shown to associate with EPS15, LNX1, and NOTCH1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000119673 | ACOT2 | acyl-CoA thioesterase 2 | 10965 | This gene encodes a member of the acyl-CoA thioesterase protein family, and is one of four acyl-CoA hydrolase genes located in a cluster on chromosome 14. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000119661 | DNAL1 | dynein axonemal light chain 1 | 83544 | This gene encodes an axonemal dynein light chain which functions as a component of the outer dynein arms complex. This complex acts as the molecular motor that provides the force to move cilia in an ATP-dependent manner. The encoded protein is expressed in tissues with motile cilia or flagella and may be involved in the movement of sperm flagella. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000176903 | PNMA1 | paraneoplastic Ma antigen 1 | 9240 | This gene encodes a neuron- and testis-specific protein that is also expressed in some paraneoplastic syndromes affecting the nervous system. Some patients with neurologic disorders develop antibodies against the protein encoded by this gene. The identification of the antineuronal antibodies in the sera of these patients has facilitated the diagnosis of paraneoplastic neurological disorders and the early detection of the associated tumors. |
| NA | ENSG00000156030 | ELMSAN1 | ELM2 and Myb/SANT domain containing 1 | 91748 | NA |
| NA | ENSG00000140043 | PTGR2 | prostaglandin reductase 2 | 145482 | This gene encodes an enzyme involved in the metabolism of prostaglandins. The encoded protein catalyzes the NADPH-dependent conversion of 15-keto-prostaglandin E2 to 15-keto-13,14-dihydro-prostaglandin E2. This protein may also be involved in regulating activation of the peroxisome proliferator-activated receptor. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000119725 | ZNF410 | zinc finger protein 410 | 57862 | NA |
| NA | ENSG00000119723 | COQ6 | coenzyme Q6, monooxygenase | 51004 | The protein encoded by this gene belongs to the ubiH/COQ6 family. It is an evolutionarily conserved monooxygenase required for the biosynthesis of coenzyme Q10 (or ubiquinone), which is an essential component of the mitochondrial electron transport chain, and one of the most potent lipophilic antioxidants implicated in the protection of cell damage by reactive oxygen species. Knockdown of this gene in mouse and zebrafish results in decreased growth due to increased apoptosis. Mutations in this gene are associated with autosomal recessive coenzyme Q10 deficiency-6 (COQ10D6), which manifests as nephrotic syndrome with sensorineural deafness. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000187097 | ENTPD5 | ectonucleoside triphosphate diphosphohydrolase 5 | 957 | The protein encoded by this gene is similar to E-type nucleotidases (NTPases)/ecto-ATPase/apyrases. NTPases, such as CD39, mediate catabolism of extracellular nucleotides. ENTPD5 contains 4 apyrase-conserved regions which is characteristic of NTPases. |
| NA | ENSG00000119711 | ALDH6A1 | aldehyde dehydrogenase 6 family member A1 | 4329 | This gene encodes a member of the aldehyde dehydrogenase protein family. The encoded protein is a mitochondrial methylmalonate semialdehyde dehydrogenase that plays a role in the valine and pyrimidine catabolic pathways. This protein catalyzes the irreversible oxidative decarboxylation of malonate and methylmalonate semialdehydes to acetyl- and propionyl-CoA. Methylmalonate semialdehyde dehydrogenase deficiency is characterized by elevated beta-alanine, 3-hydroxypropionic acid, and both isomers of 3-amino and 3-hydroxyisobutyric acids in urine organic acids. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000119688 | ABCD4 | ATP binding cassette subfamily D member 4 | 5826 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the ALD subfamily, which is involved in peroxisomal import of fatty acids and/or fatty acyl-CoAs in the organelle. All known peroxisomal ABC transporters are half transporters which require a partner half transporter molecule to form a functional homodimeric or heterodimeric transporter. The function of this peroxisomal membrane protein is unknown. However, it is speculated that it may function as a heterodimer for another peroxisomal ABC transporter and, therefore, may modify the adrenoleukodystrophy phenotype. It may also play a role in the process of peroxisome biogenesis. Alternative splicing results in at least two different transcript variants, one which is protein-coding and one which is probably not protein-coding. |
| NA | ENSG00000133980 | VRTN | vertebrae development associated | 55237 | NA |
| NA | ENSG00000183379 | SYNDIG1L | synapse differentiation inducing 1 like | 646658 | NA |
| NA | ENSG00000119655 | NPC2 | Niemann-Pick disease, type C2 | 10577 | This gene encodes a protein containing a lipid recognition domain. The encoded protein may function in regulating the transport of cholesterol through the late endosomal/lysosomal system. Mutations in this gene have been associated with Niemann-Pick disease, type C2 and frontal lobe atrophy. |
| NA | ENSG00000119682 | AREL1 | apoptosis resistant E3 ubiquitin protein ligase 1 | 9870 | NA |
| NA | ENSG00000119616 | FCF1 | FCF1 rRNA-processing protein | 51077 | NA |
| NA | ENSG00000119596 | YLPM1 | YLP motif containing 1 | 56252 | NA |
| NA | ENSG00000119689 | DLST | dihydrolipoamide S-succinyltransferase | 1743 | This gene encodes a mitochondrial protein that belongs to the 2-oxoacid dehydrogenase family. This protein is one of the three components (the E2 component) of the 2-oxoglutarate dehydrogenase complex that catalyzes the overall conversion of 2-oxoglutarate to succinyl-CoA and CO(2). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000198208 | RPS6KL1 | ribosomal protein S6 kinase like 1 | 83694 | NA |
| NA | ENSG00000119630 | PGF | placental growth factor | 5228 | This gene encodes a growth factor found in placenta which is homologous to vascular endothelial growth factor. Alternatively spliced transcripts encoding different isoforms have been found for this gene. |
| NA | ENSG00000119718 | EIF2B2 | eukaryotic translation initiation factor 2B subunit beta | 8892 | This gene encodes the beta subunit of eukaryotic initiation factor-2B (EIF2B). EIF2B is involved in protein synthesis and exchanges GDP and GTP for its activation and deactivation. |
| NA | ENSG00000119684 | MLH3 | mutL homolog 3 | 27030 | This gene is a member of the MutL-homolog (MLH) family of DNA mismatch repair (MMR) genes. MLH genes are implicated in maintaining genomic integrity during DNA replication and after meiotic recombination. The protein encoded by this gene functions as a heterodimer with other family members. Somatic mutations in this gene frequently occur in tumors exhibiting microsatellite instability, and germline mutations have been linked to hereditary nonpolyposis colorectal cancer type 7 (HNPCC7). Several alternatively spliced transcript variants have been identified, but the full-length nature of only two transcript variants has been determined. |
| NA | ENSG00000119638 | NEK9 | NIMA related kinase 9 | 91754 | NA |
| NA | ENSG00000170348 | TMED10 | transmembrane p24 trafficking protein 10 | 10972 | This gene is a member of the EMP24/GP25L/p24 family and encodes a protein with a GOLD domain. This type I membrane protein is localized to the plasma membrane and golgi cisternae and is involved in vesicular protein trafficking. The protein is also a member of a heteromeric secretase complex and regulates the complex’s gamma-secretase activity without affecting its epsilon-secretase activity. Mutations in this gene have been associated with early-onset familial Alzheimer’s disease. This gene has a pseudogene on chromosome 8. |
| NA | ENSG00000170345 | FOS | FBJ murine osteosarcoma viral oncogene homolog | 2353 | The Fos gene family consists of 4 members: FOS, FOSB, FOSL1, and FOSL2. These genes encode leucine zipper proteins that can dimerize with proteins of the JUN family, thereby forming the transcription factor complex AP-1. As such, the FOS proteins have been implicated as regulators of cell proliferation, differentiation, and transformation. In some cases, expression of the FOS gene has also been associated with apoptotic cell death. |
| NA | ENSG00000140044 | JDP2 | Jun dimerization protein 2 | 122953 | NA |
| NA | ENSG00000119686 | FLVCR2 | feline leukemia virus subgroup C cellular receptor family member 2 | 55640 | This gene encodes a member of the major facilitator superfamily. The encoded transmembrane protein is a calcium transporter. Unlike the related protein feline leukemia virus subgroup C receptor 1, the protein encoded by this locus does not bind to feline leukemia virus subgroup C envelope protein. The encoded protein may play a role in development of brain vascular endothelial cells, as mutations at this locus have been associated with proliferative vasculopathy and hydranencephaly-hydrocephaly syndrome. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000119685 | TTLL5 | tubulin tyrosine ligase like 5 | 23093 | This gene encodes a member of the tubulin tyrosine ligase like protein family. This protein interacts with two glucocorticoid receptor coactivators, transcriptional intermediary factor 2 and steroid receptor coactivator 1. This protein may function as a coregulator of glucocorticoid receptor mediated gene induction and repression. This protein may also function as an alpha tubulin polyglutamylase. |
| NA | ENSG00000133935 | C14orf1 | chromosome 14 open reading frame 1 | 11161 | NA |
| NA | ENSG00000119650 | IFT43 | intraflagellar transport 43 | 112752 | This gene encodes a subunit of the intraflagellar transport complex A (IFT-A). IFT-A is a multiprotein complex that plays an important role in cilia assembly and maintenance by mediating retrograde ciliary transport. Mutations in this gene are a cause of cranioectodermal dysplasia-3 (CED3), also known as Sensenbrenner syndrome. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000089916 | GPATCH2L | G-patch domain containing 2 like | 55668 | NA |
| NA | ENSG00000071246 | VASH1 | vasohibin 1 | 22846 | NA |
| NA | ENSG00000013523 | ANGEL1 | angel homolog 1 (Drosophila) | 23357 | NA |
| NA | ENSG00000119669 | IRF2BPL | interferon regulatory factor 2 binding protein like | 64207 | This gene encodes a transcription factor that may play a role in regulating female reproductive function. |
| NA | ENSG00000198894 | CIPC | CLOCK-interacting pacemaker | 85457 | NA |
| NA | ENSG00000165548 | TMEM63C | transmembrane protein 63C | 57156 | NA |
| NA | ENSG00000177108 | ZDHHC22 | zinc finger DHHC-type containing 22 | 283576 | NA |
| NA | ENSG00000009830 | POMT2 | protein O-mannosyltransferase 2 | 29954 | The protein encoded by this gene is an O-mannosyltransferase that requires interaction with the product of the POMT1 gene for enzymatic function. The encoded protein is found in the membrane of the endoplasmic reticulum. Defects in this gene are a cause of Walker-Warburg syndrome (WWS). |
| NA | ENSG00000100577 | GSTZ1 | glutathione S-transferase zeta 1 | 2954 | This gene is a member of the glutathione S-transferase (GSTs) super-family which encodes multifunctional enzymes important in the detoxification of electrophilic molecules, including carcinogens, mutagens, and several therapeutic drugs, by conjugation with glutathione. This enzyme catalyzes the conversion of maleylacetoacetate to fumarylacetoacatate, which is one of the steps in the phenylalanine/tyrosine degradation pathway. Deficiency of a similar gene in mouse causes oxidative stress. Several transcript variants of this gene encode multiple protein isoforms. |
| NA | ENSG00000100580 | TMED8 | transmembrane p24 trafficking protein family member 8 | 283578 | NA |
| NA | ENSG00000151445 | VIPAS39 | VPS33B interacting protein, apical-basolateral polarity regulator, spe-39 homolog | 63894 | This gene encodes a protein involved in the sorting of lysosomal proteins. Mutations in this gene are associated with ARCS2 (arthrogryposis, renal dysfunction, and cholestasis-2). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100591 | AHSA1 | AHA1, activator of heat shock 90kDa protein ATPase homolog 1 (yeast) | 10598 | NA |
| NA | ENSG00000100601 | ALKBH1 | alkB homolog 1, histone H2A dioxygenase | 8846 | This gene encodes a homolog to the E. coli alkB gene product. The E. coli alkB protein is part of the adaptive response mechanism of DNA alkylation damage repair. It is involved in damage reversal by oxidative demethylation of 1-methyladenine and 3-methylcytosine. |
| NA | ENSG00000119705 | SLIRP | SRA stem-loop interacting RNA binding protein | 81892 | Steroid receptor RNA activator (SRA, or SRA1; MIM 603819) is a complex RNA molecule containing multiple stable stem-loop structures that functions in coactivation of nuclear receptors. SLIRP interacts with stem-loop structure-7 of SRA (STR7) and modulates nuclear receptor transactivation (Hatchell et al., 2006 [PubMed 16762838]). |
| NA | ENSG00000100603 | SNW1 | SNW domain containing 1 | 22938 | This gene, a member of the SNW gene family, encodes a coactivator that enhances transcription from some Pol II promoters. This coactivator can bind to the ligand-binding domain of the vitamin D receptor and to retinoid receptors to enhance vitamin D-, retinoic acid-, estrogen-, and glucocorticoid-mediated gene expression. It can also function as a splicing factor by interacting with poly(A)-binding protein 2 to directly control the expression of muscle-specific genes at the transcriptional level. Finally, the protein may be involved in oncogenesis since it interacts with a region of SKI oncoproteins that is required for transforming activity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000063761 | ADCK1 | aarF domain containing kinase 1 | 57143 | NA |
| NA | ENSG00000021645 | NRXN3 | neurexin 3 | 9369 | This gene encodes a member of a family of proteins that function in the nervous system as receptors and cell adhesion molecules. Extensive alternative splicing and the use of alternative promoters results in multiple transcript variants and protein isoforms for this gene, but the full-length nature of many of these variants has not been determined. Transcripts that initiate from an upstream promoter encode alpha isoforms, which contain epidermal growth factor-like (EGF-like) sequences and laminin G domains. Transcripts initiating from the downstream promoter encode beta isoforms, which lack EGF-like sequences. Genetic variation at this locus has been associated with a range of behavioral phenotypes, including alcohol dependence and autism spectrum disorder. |
| NA | ENSG00000100629 | CEP128 | centrosomal protein 128kDa | 145508 | NA |
| NA | ENSG00000165417 | GTF2A1 | general transcription factor IIA 1 | 2957 | Accurate transcription initiation on TATA-containing class II genes involves the ordered assembly of RNA polymerase II (POLR2A; MIM 180660) and several general initiation factors (summarized by DeJong and Roeder, 1993 [PubMed 8224848]). One of these factors is TFIIA, which when purified from HeLa extracts consists of 35-, 19-, and 12-kD subunits. |
| NA | ENSG00000140022 | STON2 | stonin 2 | 85439 | This gene encodes a protein which is a membrane protein involved in regulating endocytotic complexes. The protein product is described as one of the clathrin-associated sorting proteins, adaptor molecules which ensure specific proteins are internalized. The encoded protein has also been shown to participate in synaptic vesicle recycling through interaction with synaptotagmin 1 required for neurotransmission. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000071537 | SEL1L | SEL1L ERAD E3 ligase adaptor subunit | 6400 | The protein encoded by this gene is part of a protein complex required for the retrotranslocation or dislocation of misfolded proteins from the endoplasmic reticulum lumen to the cytosol, where they are degraded by the proteasome in a ubiquitin-dependent manner. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000185070 | FLRT2 | fibronectin leucine rich transmembrane protein 2 | 23768 | This gene encodes a member of the fibronectin leucine rich transmembrane protein (FLRT) family. FLRT family members may function in cell adhesion and/or receptor signalling. Their protein structures resemble small leucine-rich proteoglycans found in the extracellular matrix. |
| NA | ENSG00000054983 | GALC | galactosylceramidase | 2581 | This gene encodes a lysosomal protein which hydrolyzes the galactose ester bonds of galactosylceramide, galactosylsphingosine, lactosylceramide, and monogalactosyldiglyceride. Mutations in this gene have been associated with Krabbe disease, also known as globoid cell leukodystrophy. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000042317 | SPATA7 | spermatogenesis associated 7 | 55812 | This gene, originally isolated from testis, is also expressed in retina. Mutations in this gene are associated with Leber congenital amaurosis and juvenile retinitis pigmentosa. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000070778 | PTPN21 | protein tyrosine phosphatase, non-receptor type 21 | 11099 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP contains an N-terminal domain, similar to cytoskeletal- associated proteins including band 4.1, ezrin, merlin, and radixin. This PTP was shown to specially interact with BMX/ETK, a member of Tec tyrosine kinase family characterized by a multimodular structures including PH, SH3, and SH2 domains. The interaction of this PTP with BMX kinase was found to increase the activation of STAT3, but not STAT2 kinase. Studies of the similar gene in mice suggested the possible roles of this PTP in liver regeneration and spermatogenesis. |
| NA | ENSG00000100722 | ZC3H14 | zinc finger CCCH-type containing 14 | 79882 | ZC3H14 belongs to a family of poly(A)-binding proteins that influence gene expression by regulating mRNA stability, nuclear export, and translation (Kelly et al., 2007 [PubMed 17630287]). |
| NA | ENSG00000165533 | TTC8 | tetratricopeptide repeat domain 8 | 123016 | This gene encodes a protein that has been directly linked to Bardet-Biedl syndrome. The primary features of this syndrome include retinal dystrophy, obesity, polydactyly, renal abnormalities and learning disabilities. Experimentation in non-human eukaryotes suggests that this gene is expressed in ciliated cells and that it is involved in the formation of cilia. A mutation in this gene has also been implicated in nonsyndromic retinitis pigmentosa. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000053254 | FOXN3 | forkhead box N3 | 1112 | This gene is a member of the forkhead/winged helix transcription factor family. Checkpoints are eukaryotic DNA damage-inducible cell cycle arrests at G1 and G2. Checkpoint suppressor 1 suppresses multiple yeast checkpoint mutations including mec1, rad9, rad53 and dun1 by activating a MEC1-independent checkpoint pathway. Alternative splicing is observed at the locus, resulting in distinct isoforms. |
| NA | ENSG00000100764 | PSMC1 | proteasome 26S subunit, ATPase 1 | 5700 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes one of the ATPase subunits, a member of the triple-A family of ATPases which have a chaperone-like activity. This subunit and a 20S core alpha subunit interact specifically with the hepatitis B virus X protein, a protein critical to viral replication. This subunit also interacts with the adenovirus E1A protein and this interaction alters the activity of the proteasome. Finally, this subunit interacts with ataxin-7, suggesting a role for the proteasome in the development of spinocerebellar ataxia type 7, a progressive neurodegenerative disorder. |
| NA | ENSG00000119720 | NRDE2 | NRDE-2, necessary for RNA interference, domain containing | 55051 | NA |
| NA | ENSG00000198668 | CALM1 | calmodulin 1 (phosphorylase kinase, delta) | 801 | This gene encodes a member of the EF-hand calcium-binding protein family. It is one of three genes which encode an identical calcium binding protein which is one of the four subunits of phosphorylase kinase. Two pseudogenes have been identified on chromosome 7 and X. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198668 | CALM2 | calmodulin 2 (phosphorylase kinase, delta) | 805 | This gene is a member of the calmodulin gene family. There are three distinct calmodulin genes dispersed throughout the genome that encode the identical protein, but differ at the nucleotide level. Calmodulin is a calcium binding protein that plays a role in signaling pathways, cell cycle progression and proliferation. Several infants with severe forms of long-QT syndrome (LQTS) who displayed life-threatening ventricular arrhythmias together with delayed neurodevelopment and epilepsy were found to have mutations in either this gene or another member of the calmodulin gene family (PMID:23388215). Mutations in this gene have also been identified in patients with less severe forms of LQTS (PMID:24917665), while mutations in another calmodulin gene family member have been associated with catecholaminergic polymorphic ventricular tachycardia (CPVT)(PMID:23040497), a rare disorder thought to be the cause of a significant fraction of sudden cardiac deaths in young individuals. Pseudogenes of this gene are found on chromosomes 10, 13, and 17. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000165914 | TTC7B | tetratricopeptide repeat domain 7B | 145567 | NA |
| NA | ENSG00000100784 | RPS6KA5 | ribosomal protein S6 kinase A5 | 9252 | NA |
| NA | ENSG00000133943 | C14orf159 | chromosome 14 open reading frame 159 | 80017 | NA |
| NA | ENSG00000015133 | CCDC88C | coiled-coil domain containing 88C | 440193 | This gene encodes a ubiquitously expressed coiled-coil domain-containing protein that interacts with the dishevelled protein and is a negative regulator of the Wnt signalling pathway. The protein encoded by this gene has a PDZ-domain binding motif in its C-terminus with which it interacts with the dishevelled protein. Dishevelled is a scaffold protein involved in the regulation of the Wnt signaling pathway. The Wnt signaling pathway plays an important role in embryonic development, tissue maintenance, and cancer progression. Mutations in this gene cause autosomal recessive, primary non-syndromic congenital hydrocephalus; a condition characterized by excessive accumulation of cerebrospinal fluid in the ventricles of the brain. |
| NA | ENSG00000100796 | PPP4R3A | protein phosphatase 4 regulatory subunit 3A | 55671 | NA |
| NA | ENSG00000165929 | TC2N | tandem C2 domains, nuclear | 123036 | NA |
| NA | ENSG00000100815 | TRIP11 | thyroid hormone receptor interactor 11 | 9321 | This gene was identified based on the interaction of its protein product with thyroid hormone receptor beta. This protein is associated with the Golgi apparatus. The N-terminal region of the protein binds Golgi membranes and the C-terminal region binds the minus ends of microtubules; thus, the protein is thought to play a role in assembly and maintenance of the Golgi ribbon structure around the centrosome. Mutations in this gene cause achondrogenesis type IA. |
| NA | ENSG00000066427 | ATXN3 | ataxin 3 | 4287 | Machado-Joseph disease, also known as spinocerebellar ataxia-3, is an autosomal dominant neurologic disorder. The protein encoded by this gene contains (CAG)n repeats in the coding region, and the expansion of these repeats from the normal 13-36 to 68-79 is one cause of Machado-Joseph disease. There is a negative correlation between the age of onset and CAG repeat numbers. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000183648 | NDUFB1 | NADH:ubiquinone oxidoreductase subunit B1 | 4707 | NA |
| NA | ENSG00000100600 | LGMN | legumain | 5641 | This gene encodes a cysteine protease that has a strict specificity for hydrolysis of asparaginyl bonds. This enzyme may be involved in the processing of bacterial peptides and endogenous proteins for MHC class II presentation in the lysosomal/endosomal systems. Enzyme activation is triggered by acidic pH and appears to be autocatalytic. Protein expression occurs after monocytes differentiate into dendritic cells. A fully mature, active enzyme is produced following lipopolysaccharide expression in mature dendritic cells. Overexpression of this gene may be associated with the majority of solid tumor types. This gene has a pseudogene on chromosome 13. Several alternatively spliced transcript variants have been described, but the biological validity of only two has been determined. These two variants encode the same isoform. |
| NA | ENSG00000066455 | GOLGA5 | golgin A5 | 9950 | The Golgi apparatus, which participates in glycosylation and transport of proteins and lipids in the secretory pathway, consists of a series of stacked cisternae (flattened membrane sacs). Interactions between the Golgi and microtubules are thought to be important for the reorganization of the Golgi after it fragments during mitosis. This gene encodes one of the golgins, a family of proteins localized to the Golgi. This protein is a coiled-coil membrane protein that has been postulated to play a role in vesicle tethering and docking. Translocations involving this gene and the ret proto-oncogene have been found in tumor tissues; the chimeric sequences have been designated RET-II and PTC5. A pseudogene of this gene is located on the short arm of chromosome 5. |
| NA | ENSG00000100605 | ITPK1 | inositol-tetrakisphosphate 1-kinase | 3705 | NA |
| NA | ENSG00000165943 | MOAP1 | modulator of apoptosis 1 | 64112 | The protein encoded by this gene was identified by its interaction with apoptosis regulator BAX protein. This protein contains a Bcl-2 homology 3 (BH3)-like motif, which is required for the association with BAX. When overexpressed, this gene has been shown to mediate caspase-dependent apoptosis. |
| NA | ENSG00000153485 | TMEM251 | transmembrane protein 251 | 26175 | NA |
| NA | ENSG00000012963 | UBR7 | ubiquitin protein ligase E3 component n-recognin 7 (putative) | 55148 | NA |
| NA | ENSG00000011114 | BTBD7 | BTB domain containing 7 | 55727 | NA |
| NA | ENSG00000133958 | UNC79 | unc-79 homolog (C. elegans) | 57578 | NA |
| NA | ENSG00000175785 | PRIMA1 | proline rich membrane anchor 1 | 145270 | The product of this gene functions to organize acetylcholinesterase (AChE) into tetramers, and to anchor AChE at neural cell membranes. |
| NA | ENSG00000100628 | ASB2 | ankyrin repeat and SOCS box containing 2 | 51676 | This gene encodes a member of the ankyrin repeat and SOCS box-containing (ASB) protein family. These proteins play a role in protein degradation by coupling suppressor of cytokine signalling (SOCS) proteins with the elongin BC complex. The encoded protein is a subunit of a multimeric E3 ubiquitin ligase complex that mediates the degradation of actin-binding proteins. This gene plays a role in retinoic acid-induced growth inhibition and differentiation of myeloid leukemia cells. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000089737 | DDX24 | DEAD-box helicase 24 | 57062 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which shows little similarity to any of the other known human DEAD box proteins, but shows a high similarity to mouse Ddx24 at the amino acid level. |
| NA | ENSG00000165948 | IFI27L1 | interferon alpha inducible protein 27 like 1 | 122509 | NA |
| NA | ENSG00000119632 | IFI27L2 | interferon alpha inducible protein 27 like 2 | 83982 | NA |
| NA | ENSG00000119698 | PPP4R4 | protein phosphatase 4, regulatory subunit 4 | 57718 | The protein encoded by this gene is a HEAT-like repeat-containing protein. The HEAT repeat is a tandemly repeated, 37-47 amino acid long module occurring in a number of cytoplasmic proteins. Arrays of HEAT repeats form a rod-like helical structure and appear to function as protein-protein interaction surfaces. The repeat-containing region of this protein has some similarity to the constant regulatory domain of the protein phosphatase 2A PR65/A subunit. The function of this particular gene product has not been determined. Alternative splicing has been observed for this gene and two transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000188488 | SERPINA5 | serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5 | 5104 | The protein encoded by this gene is a member of the serpin family of proteins, a group of proteins that inhibit serine proteases. This gene is one in a cluster of serpin genes located on the q arm of chromosome 14. This family member is a glycoprotein that can inhibit several serine proteases, including protein C and various plasminogen activators and kallikreins, and it thus plays diverse roles in hemostasis and thrombosis in multiple organs. |
| NA | ENSG00000100697 | DICER1 | dicer 1, ribonuclease III | 23405 | This gene encodes a protein possessing an RNA helicase motif containing a DEXH box in its amino terminus and an RNA motif in the carboxy terminus. The encoded protein functions as a ribonuclease and is required by the RNA interference and small temporal RNA (stRNA) pathways to produce the active small RNA component that represses gene expression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165959 | CLMN | calmin (calponin-like, transmembrane) | 79789 | NA |
| NA | ENSG00000182512 | GLRX5 | glutaredoxin 5 | 51218 | This gene encodes a mitochondrial protein, which is evolutionarily conserved. It is involved in the biogenesis of iron-sulfur clusters, which are required for normal iron homeostasis. Mutations in this gene are associated with autosomal recessive pyridoxine-refractory sideroblastic anemia. |
| NA | ENSG00000213231 | TCL1B | T-cell leukemia/lymphoma 1B | 9623 | NA |
| NA | ENSG00000227051 | C14orf132 | chromosome 14 open reading frame 132 | ENSG00000227051 | NA |
| NA | ENSG00000066739 | ATG2B | autophagy related 2B | 55102 | NA |
| NA | ENSG00000140057 | AK7 | adenylate kinase 7 | 122481 | NA |
| NA | ENSG00000090060 | PAPOLA | poly(A) polymerase alpha | 10914 | The protein encoded by this gene belongs to the poly(A) polymerase family. It is required for the addition of adenosine residues for the creation of the 3’-poly(A) tail of mRNAs. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000127152 | BCL11B | B-cell CLL/lymphoma 11B | 64919 | This gene encodes a C2H2-type zinc finger protein and is closely related to BCL11A, a gene whose translocation may be associated with B-cell malignancies. Although the specific function of this gene has not been determined, the encoded protein is known to be a transcriptional repressor, and is regulated by the NURD nucleosome remodeling and histone deacetylase complex. Four alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000183576 | SETD3 | SET domain containing 3 | 84193 | NA |
| NA | ENSG00000090061 | CCNK | cyclin K | 8812 | The protein encoded by this gene is a member of the transcription cyclin family. These cyclins may regulate transcription through their association with and activation of cyclin-dependent kinases (CDK) that phosphorylate the C-terminal domain (CTD) of the large subunit of RNA polymerase II. This gene product may play a dual role in regulating CDK and RNA polymerase II activities. |
| NA | ENSG00000205476 | CCDC85C | coiled-coil domain containing 85C | 317762 | NA |
| NA | ENSG00000036530 | CYP46A1 | cytochrome P450 family 46 subfamily A member 1 | 10858 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. This endoplasmic reticulum protein is expressed in the brain, where it converts cholesterol to 24S-hydroxycholesterol. While cholesterol cannot pass the blood-brain barrier, 24S-hydroxycholesterol can be secreted in the brain into the circulation to be returned to the liver for catabolism. |
| NA | ENSG00000066629 | EML1 | echinoderm microtubule associated protein like 1 | 2009 | Human echinoderm microtubule-associated protein-like is a strong candidate for the Usher syndrome type 1A gene. Usher syndromes (USHs) are a group of genetic disorders consisting of congenital deafness, retinitis pigmentosa, and vestibular dysfunction of variable onset and severity depending on the genetic type. The disease process in USHs involves the entire brain and is not limited to the posterior fossa or auditory and visual systems. The USHs are catagorized as type I (USH1A, USH1B, USH1C, USH1D, USH1E and USH1F), type II (USH2A and USH2B) and type III (USH3). The type I is the most severe form. Gene loci responsible for these three types are all mapped. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000196405 | EVL | Enah/Vasp-like | 51466 | NA |
| NA | ENSG00000100811 | YY1 | YY1 transcription factor | 7528 | YY1 is a ubiquitously distributed transcription factor belonging to the GLI-Kruppel class of zinc finger proteins. The protein is involved in repressing and activating a diverse number of promoters. YY1 may direct histone deacetylases and histone acetyltransferases to a promoter in order to activate or repress the promoter, thus implicating histone modification in the function of YY1. |
| NA | ENSG00000197119 | SLC25A29 | solute carrier family 25 member 29 | 123096 | This gene encodes a nuclear-encoded mitochondrial protein that is a member of the large family of solute carrier family 25 (SLC25) mitochondrial transporters. The members of this superfamily are involved in numerous metabolic pathways and cell functions. This gene product was previously reported to be a mitochondrial carnitine-acylcarnitine-like (CACL) translocase (PMID:128829710) or an ornithine transporter (designated ORNT3, PMID:19287344), however, a recent study characterized the main role of this protein as a mitochondrial transporter of basic amino acids, with a preference for arginine and lysine (PMID:24652292). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000140105 | WARS | tryptophanyl-tRNA synthetase | 7453 | Aminoacyl-tRNA synthetases catalyze the aminoacylation of tRNA by their cognate amino acid. Because of their central role in linking amino acids with nucleotide triplets contained in tRNAs, aminoacyl-tRNA synthetases are thought to be among the first proteins that appeared in evolution. Two forms of tryptophanyl-tRNA synthetase exist, a cytoplasmic form, named WARS, and a mitochondrial form, named WARS2. Tryptophanyl-tRNA synthetase (WARS) catalyzes the aminoacylation of tRNA(trp) with tryptophan and is induced by interferon. Tryptophanyl-tRNA synthetase belongs to the class I tRNA synthetase family. Four transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000176473 | WDR25 | WD repeat domain 25 | 79446 | NA |
| NA | ENSG00000185559 | DLK1 | delta-like 1 homolog (Drosophila) | 8788 | This gene encodes a transmembrane protein that contains multiple epidermal growth factor repeats that functions as a regulator of cell growth. The encoded protein is involved in the differentiation of several cell types including adipocytes. This gene is located in a region of chromosome 14 frequently showing unparental disomy, and is imprinted and expressed from the paternal allele. A single nucleotide variant in this gene is associated with child and adolescent obesity and shows polar overdominance, where heterozygotes carrying an active paternal allele express the phenotype, while mutant homozygotes are normal. |
| NA | ENSG00000078304 | PPP2R5C | protein phosphatase 2 regulatory subunit B’, gamma | 5527 | The product of this gene belongs to the phosphatase 2A regulatory subunit B family. Protein phosphatase 2A is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The B regulatory subunit might modulate substrate selectivity and catalytic activity. This gene encodes a gamma isoform of the regulatory subunit B56 subfamily. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000080824 | HSP90AA1 | heat shock protein 90kDa alpha family class A member 1 | 3320 | The protein encoded by this gene is an inducible molecular chaperone that functions as a homodimer. The encoded protein aids in the proper folding of specific target proteins by use of an ATPase activity that is modulated by co-chaperones. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000140153 | WDR20 | WD repeat domain 20 | 91833 | This gene encodes a WD repeat-containing protein that functions to preserve and regulate the activity of the USP12-UAF1 deubiquitinating enzyme complex. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000022976 | ZNF839 | zinc finger protein 839 | 55778 | NA |
| NA | ENSG00000100865 | CINP | cyclin-dependent kinase 2 interacting protein | 51550 | The protein encoded by this gene is reported to be a component of the DNA replication complex as well as a genome-maintenance protein. It may interact with proteins important for replication initiation and has been shown to bind chromatin at the G1 phase of the cell cycle and dissociate from chromatin with replication initiation. It may also serve to regulate checkpoint signaling as part of the DNA damage response. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196663 | TECPR2 | tectonin beta-propeller repeat containing 2 | 9895 | The protein encoded by this gene is a member of the tectonin beta-propeller repeat-containing (TECPR) family, and contains both TECPR and tryptophan-aspartic acid repeat (WD repeat) domains. This gene has been implicated in autophagy, as reduced expression levels of this gene have been associated with impaired autophagy. Recessive mutations in this gene have been associated with a hereditary form of spastic paraparesis (HSP). HSP is characterized by progressive spasticity and paralysis of the legs. There is also some evidence linking mutations in this gene with birdshot chorioretinopathy (BSCR), which results in inflammation of the choroid and retina. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000156381 | ANKRD9 | ankyrin repeat domain 9 | 122416 | NA |
| NA | ENSG00000089902 | RCOR1 | REST corepressor 1 | 23186 | This gene encodes a protein that is well-conserved, downregulated at birth, and with a specific role in determining neural cell differentiation. The encoded protein binds to the C-terminal domain of REST (repressor element-1 silencing transcription factor). |
| NA | ENSG00000198752 | CDC42BPB | CDC42 binding protein kinase beta | 9578 | This gene encodes a member of the serine/threonine protein kinase family. The encoded protein contains a Cdc42/Rac-binding p21 binding domain resembling that of PAK kinase. The kinase domain of this protein is most closely related to that of myotonic dystrophy kinase-related ROK. Studies of the similar gene in rat suggested that this kinase may act as a downstream effector of Cdc42 in cytoskeletal reorganization. |
| NA | ENSG00000185215 | TNFAIP2 | TNF alpha induced protein 2 | 7127 | This gene was identified as a gene whose expression can be induced by the tumor necrosis factor alpha (TNF) in umbilical vein endothelial cells. The expression of this gene was shown to be induced by retinoic acid in a cell line expressing a oncogenic version of the retinoic acid receptor alpha fusion protein, which suggested that this gene may be a retinoic acid target gene in acute promyelocytic leukemia. |
| NA | ENSG00000100664 | EIF5 | eukaryotic translation initiation factor 5 | 1983 | Eukaryotic translation initiation factor-5 (EIF5) interacts with the 40S initiation complex to promote hydrolysis of bound GTP with concomitant joining of the 60S ribosomal subunit to the 40S initiation complex. The resulting functional 80S ribosomal initiation complex is then active in peptidyl transfer and chain elongations (summary by Si et al., 1996 [PubMed 8663286]). |
| NA | ENSG00000166165 | CKB | creatine kinase B | 1152 | The protein encoded by this gene is a cytoplasmic enzyme involved in energy homeostasis. The encoded protein reversibly catalyzes the transfer of phosphate between ATP and various phosphogens such as creatine phosphate. It acts as a homodimer in brain as well as in other tissues, and as a heterodimer with a similar muscle isozyme in heart. The encoded protein is a member of the ATP:guanido phosphotransferase protein family. A pseudogene of this gene has been characterized. |
| NA | ENSG00000166166 | TRMT61A | tRNA methyltransferase 61A | 115708 | NA |
| NA | ENSG00000166170 | BAG5 | BCL2 associated athanogene 5 | 9529 | The protein encoded by this gene is a member of the BAG1-related protein family. BAG1 is an anti-apoptotic protein that functions through interactions with a variety of cell apoptosis and growth related proteins including BCL-2, Raf-protein kinase, steroid hormone receptors, growth factor receptors and members of the heat shock protein 70 kDa family. This protein contains a BAG domain near the C-terminus, which could bind and inhibit the chaperone activity of Hsc70/Hsp70. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000126214 | KLC1 | kinesin light chain 1 | 3831 | Conventional kinesin is a tetrameric molecule composed of two heavy chains and two light chains, and transports various cargos along microtubules toward their plus ends. The heavy chains provide the motor activity, while the light chains bind to various cargos. This gene encodes a member of the kinesin light chain family. It associates with kinesin heavy chain through an N-terminal domain, and six tetratricopeptide repeat (TPR) motifs are thought to be involved in binding of cargos such as vesicles, mitochondria, and the Golgi complex. Thus, kinesin light chains function as adapter molecules and not motors per se. Although previously named ‘kinesin 2’, this gene is not a member of the kinesin-2 / kinesin heavy chain subfamily of kinesin motor proteins. Extensive alternative splicing produces isoforms with different C-termini that are proposed to bind to different cargos; however, the full-length nature and/or biological validity of most of these variants have not been determined. |
| NA | ENSG00000256053 | APOPT1 | apoptogenic 1, mitochondrial | 84334 | This gene encodes a protein that localizes to the mitochondria, where it stimulates the release of cytochrome c, thereby promoting programmed cell death. Mutations in this gene have been found in individuals with mitochondrial complex IV deficiency. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000126215 | XRCC3 | X-ray repair complementing defective repair in Chinese hamster cells 3 | 7517 | This gene encodes a member of the RecA/Rad51-related protein family that participates in homologous recombination to maintain chromosome stability and repair DNA damage. This gene functionally complements Chinese hamster irs1SF, a repair-deficient mutant that exhibits hypersensitivity to a number of different DNA-damaging agents and is chromosomally unstable. A rare microsatellite polymorphism in this gene is associated with cancer in patients of varying radiosensitivity. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000100711 | ZFYVE21 | zinc finger FYVE-type containing 21 | 79038 | NA |
| NA | ENSG00000088808 | PPP1R13B | protein phosphatase 1 regulatory subunit 13B | 23368 | This gene encodes a member of the ASPP (apoptosis-stimulating protein of p53) family of p53 interacting proteins. The protein contains four ankyrin repeats and an SH3 domain involved in protein-protein interactions. ASPP proteins are required for the induction of apoptosis by p53-family proteins. They promote DNA binding and transactivation of p53-family proteins on the promoters of proapoptotic genes. Expression of this gene is regulated by the E2F transcription factor. |
| NA | ENSG00000156411 | C14orf2 | chromosome 14 open reading frame 2 | 9556 | NA |
| NA | ENSG00000066735 | KIF26A | kinesin family member 26A | 26153 | NA |
| NA | ENSG00000203485 | INF2 | inverted formin, FH2 and WH2 domain containing | 64423 | This gene represents a member of the formin family of proteins. It is considered a diaphanous formin due to the presence of a diaphanous inhibitory domain located at the N-terminus of the encoded protein. Studies of a similar mouse protein indicate that the protein encoded by this locus may function in polymerization and depolymerization of actin filaments. Mutations at this locus have been associated with focal segmental glomerulosclerosis 5. |
| NA | ENSG00000185100 | ADSSL1 | adenylosuccinate synthase like 1 | 122622 | This gene encodes a member of the adenylosuccinate synthase family of proteins. The encoded muscle-specific enzyme plays a role in the purine nucleotide cycle by catalyzing the first step in the conversion of inosine monophosphate (IMP) to adenosine monophosphate (AMP). Mutations in this gene may cause adolescent onset distal myopathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000184990 | SIVA1 | SIVA1 apoptosis inducing factor | 10572 | This gene encodes a protein with an important role in the apoptotic (programmed cell death) pathway induced by the CD27 antigen, a member of the tumor necrosis factor receptor (TFNR) superfamily. The CD27 antigen cytoplasmic tail binds to the N-terminus of this protein. Two alternatively spliced transcript variants encoding distinct proteins have been described. |
| NA | ENSG00000142208 | AKT1 | v-akt murine thymoma viral oncogene homolog 1 | 207 | The serine-threonine protein kinase encoded by the AKT1 gene is catalytically inactive in serum-starved primary and immortalized fibroblasts. AKT1 and the related AKT2 are activated by platelet-derived growth factor. The activation is rapid and specific, and it is abrogated by mutations in the pleckstrin homology domain of AKT1. It was shown that the activation occurs through phosphatidylinositol 3-kinase. In the developing nervous system AKT is a critical mediator of growth factor-induced neuronal survival. Survival factors can suppress apoptosis in a transcription-independent manner by activating the serine/threonine kinase AKT1, which then phosphorylates and inactivates components of the apoptotic machinery. Mutations in this gene have been associated with the Proteus syndrome. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000099814 | CEP170B | centrosomal protein 170B | 283638 | NA |
| NA | ENSG00000170779 | CDCA4 | cell division cycle associated 4 | 55038 | This gene encodes a protein that belongs to the E2F family of transcription factors. This protein regulates E2F-dependent transcriptional activation and cell proliferation, mainly through the E2F/retinoblastoma protein pathway. It also functions in the regulation of JUN oncogene expression. This protein shows distinctive nuclear-mitotic apparatus distribution, it is involved in spindle organization from prometaphase, and may also play a role as a midzone factor involved in chromosome segregation or cytokinesis. Two alternatively spliced transcript variants encoding the same protein have been noted for this gene. Two pseudogenes have also been identified on chromosome 1. |
| NA | ENSG00000183828 | NUDT14 | nudix hydrolase 14 | 256281 | The protein encoded by this gene is a member of the Nudix hydrolase family. Nudix hydrolases eliminate potentially toxic nucleotide metabolites from the cell and regulate the concentrations and availability of many different nucleotide substrates, cofactors, and signaling molecules. This enzyme contains a Nudix hydrolase domain and is a UDPG pyrophosphatase that hydrolyzes UDPG to produce glucose 1-phosphate and UMP. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000185024 | BRF1 | BRF1, RNA polymerase III transcription initiation factor 90 kDa subunit | 2972 | This gene encodes one of the three subunits of the RNA polymerase III transcription factor complex. This complex plays a central role in transcription initiation by RNA polymerase III on genes encoding tRNA, 5S rRNA, and other small structural RNAs. The gene product belongs to the TF2B family. Several alternatively spliced variants encoding different isoforms, that function at different promoters transcribed by RNA polymerase III, have been identified. |
| NA | ENSG00000184887 | BTBD6 | BTB domain containing 6 | 90135 | NA |
| NA | ENSG00000179364 | PACS2 | phosphofurin acidic cluster sorting protein 2 | 23241 | NA |
| NA | ENSG00000182979 | MTA1 | metastasis associated 1 | 9112 | This gene encodes a protein that was identified in a screen for genes expressed in metastatic cells, specifically, mammary adenocarcinoma cell lines. Expression of this gene has been correlated with the metastatic potential of at least two types of carcinomas although it is also expressed in many normal tissues. The role it plays in metastasis is unclear. It was initially thought to be the 70kD component of a nucleosome remodeling deacetylase complex, NuRD, but it is more likely that this component is a different but very similar protein. These two proteins are so closely related, though, that they share the same types of domains. These domains include two DNA binding domains, a dimerization domain, and a domain commonly found in proteins that methylate DNA. The profile and activity of this gene product suggest that it is involved in regulating transcription and that this may be accomplished by chromatin remodeling. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000182809 | CRIP2 | cysteine rich protein 2 | 1397 | This gene encodes a putative transcription factor with two LIM zinc-binding domains. The encoded protein may participate in the differentiation of smooth muscle tissue. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000185347 | C14orf80 | chromosome 14 open reading frame 80 | 283643 | NA |
| TRUE | ENSG00000153575 | NA | NA | NA | NA |
| TRUE | ENSG00000068793 | NA | NA | NA | NA |
| NA | ENSG00000140157 | NIPA2 | non imprinted in Prader-Willi/Angelman syndrome 2 | 81614 | This gene encodes a possible magnesium transporter. This gene is located adjacent to the imprinted domain in the Prader-Willi syndrome deletion region of chromosome 15. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 3, 7 and 21. |
| NA | ENSG00000170113 | NIPA1 | non imprinted in Prader-Willi/Angelman syndrome 1 | 123606 | This gene encodes a magnesium transporter that associates with early endosomes and the cell surface in a variety of neuronal and epithelial cells. This protein may play a role in nervous system development and maintenance. Multiple transcript variants encoding different isoforms have been found for this gene. Mutations in this gene have been associated with autosomal dominant spastic paraplegia 6. |
| NA | ENSG00000254585 | MAGEL2 | MAGE family member L2 | 54551 | Prader-Willi syndrome (PWS) is caused by the loss of expression of imprinted genes in chromosome 15q11-q13 region. Affected individuals exhibit neonatal hypotonia, developmental delay, and childhood-onset obesity. Necdin (NDN), a gene involved in the terminal differentiation of neurons, localizes to this region of the genome and has been implicated as one of the genes responsible for the etiology of PWS. This gene is structurally similar to NDN, is also localized to the PWS chromosomal region, and is paternally imprinted, suggesting a possible role for it in PWS. |
| NA | ENSG00000182636 | NDN | necdin, MAGE family member | 4692 | This intronless gene is located in the Prader-Willi syndrome deletion region. It is an imprinted gene and is expressed exclusively from the paternal allele. Studies in mouse suggest that the protein encoded by this gene may suppress growth in postmitotic neurons. |
| NA | ENSG00000128739 | SNRPN | small nuclear ribonucleoprotein polypeptide N | 6638 | The protein encoded by this gene is one polypeptide of a small nuclear ribonucleoprotein complex and belongs to the snRNP SMB/SMN family. The protein plays a role in pre-mRNA processing, possibly tissue-specific alternative splicing events. Although individual snRNPs are believed to recognize specific nucleic acid sequences through RNA-RNA base pairing, the specific role of this family member is unknown. The protein arises from a bicistronic transcript that also encodes a protein identified as the SNRPN upstream reading frame (SNURF). Multiple transcription initiation sites have been identified and extensive alternative splicing occurs in the 5’ untranslated region. Additional splice variants have been described but sequences for the complete transcripts have not been determined. The 5’ UTR of this gene has been identified as an imprinting center. Alternative splicing or deletion caused by a translocation event in this paternally-expressed region is responsible for Angelman syndrome or Prader-Willi syndrome due to parental imprint switch failure. |
| NA | ENSG00000214265 | RP11-701H24.9 | SNRPN upstream reading frame protein | ENSG00000214265 | NA |
| NA | ENSG00000114062 | UBE3A | ubiquitin protein ligase E3A | 7337 | This gene encodes an E3 ubiquitin-protein ligase, part of the ubiquitin protein degradation system. This imprinted gene is maternally expressed in brain and biallelically expressed in other tissues. Maternally inherited deletion of this gene causes Angelman Syndrome, characterized by severe motor and intellectual retardation, ataxia, hypotonia, epilepsy, absence of speech, and characteristic facies. The protein also interacts with the E6 protein of human papillomavirus types 16 and 18, resulting in ubiquitination and proteolysis of tumor protein p53. Alternative splicing of this gene results in three transcript variants encoding three isoforms with different N-termini. Additional transcript variants have been described, but their full length nature has not been determined. |
| NA | ENSG00000186297 | GABRA5 | gamma-aminobutyric acid type A receptor alpha5 subunit | 2558 | GABA is the major inhibitory neurotransmitter in the mammalian brain where it acts at GABA-A receptors, which are ligand-gated chloride channels. Chloride conductance of these channels can be modulated by agents such as benzodiazepines that bind to the GABA-A receptor. At least 16 distinct subunits of GABA-A receptors have been identified. Transcript variants utilizing three different alternative non-coding first exons have been described. |
| NA | ENSG00000034053 | APBA2 | amyloid beta precursor protein binding family A member 2 | 321 | The protein encoded by this gene is a member of the X11 protein family. It is a neuronal adapter protein that interacts with the Alzheimer’s disease amyloid precursor protein (APP). It stabilizes APP and inhibits production of proteolytic APP fragments including the A beta peptide that is deposited in the brains of Alzheimer’s disease patients. This gene product is believed to be involved in signal transduction processes. It is also regarded as a putative vesicular trafficking protein in the brain that can form a complex with the potential to couple synaptic vesicle exocytosis to neuronal cell adhesion. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000104059 | FAM189A1 | family with sequence similarity 189 member A1 | 23359 | NA |
| NA | ENSG00000185115 | NSMCE3 | NSE3 homolog, SMC5-SMC6 complex component | 56160 | The protein encoded by this gene is part of the SMC5-6 chromatin reorganizing complex and is a member of the MAGE superfamily. This is an intronless gene. |
| NA | ENSG00000104067 | TJP1 | tight junction protein 1 | 7082 | This gene encodes a protein located on a cytoplasmic membrane surface of intercellular tight junctions. The encoded protein may be involved in signal transduction at cell-cell junctions. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000198690 | FAN1 | FANCD2/FANCI-associated nuclease 1 | 22909 | This gene plays a role in DNA interstrand cross-link repair and encodes a protein with 5’ flap endonuclease and 5’-3’ exonuclease activity. Mutations in this gene cause karyomegalic interstitial nephritis. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000166912 | MTMR10 | myotubularin related protein 10 | 54893 | NA |
| NA | ENSG00000169926 | KLF13 | Kruppel-like factor 13 | 51621 | KLF13 belongs to a family of transcription factors that contain 3 classical zinc finger DNA-binding domains consisting of a zinc atom tetrahedrally coordinated by 2 cysteines and 2 histidines (C2H2 motif). These transcription factors bind to GC-rich sequences and related GT and CACCC boxes (Scohy et al., 2000 [PubMed 11087666]). |
| NA | ENSG00000175344 | CHRNA7 | cholinergic receptor nicotinic alpha 7 subunit | 1139 | The nicotinic acetylcholine receptors (nAChRs) are members of a superfamily of ligand-gated ion channels that mediate fast signal transmission at synapses. The nAChRs are thought to be hetero-pentamers composed of homologous subunits. The proposed structure for each subunit is a conserved N-terminal extracellular domain followed by three conserved transmembrane domains, a variable cytoplasmic loop, a fourth conserved transmembrane domain, and a short C-terminal extracellular region. The protein encoded by this gene forms a homo-oligomeric channel, displays marked permeability to calcium ions and is a major component of brain nicotinic receptors that are blocked by, and highly sensitive to, alpha-bungarotoxin. Once this receptor binds acetylcholine, it undergoes an extensive change in conformation that affects all subunits and leads to opening of an ion-conducting channel across the plasma membrane. This gene is located in a region identified as a major susceptibility locus for juvenile myoclonic epilepsy and a chromosomal location involved in the genetic transmission of schizophrenia. An evolutionarily recent partial duplication event in this region results in a hybrid containing sequence from this gene and a novel FAM7A gene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166922 | SCG5 | secretogranin V | 6447 | NA |
| NA | ENSG00000169857 | AVEN | apoptosis and caspase activation inhibitor | 57099 | NA |
| NA | ENSG00000134153 | EMC7 | ER membrane protein complex subunit 7 | 56851 | NA |
| NA | ENSG00000134152 | KATNBL1 | katanin regulatory subunit B1 like 1 | 79768 | NA |
| NA | ENSG00000128463 | EMC4 | ER membrane protein complex subunit 4 | 51234 | NA |
| NA | ENSG00000140199 | SLC12A6 | solute carrier family 12 member 6 | 9990 | This gene is a member of the K-Cl cotransporter (KCC) family. K-Cl cotransporters are integral membrane proteins that lower intracellular chloride concentrations below the electrochemical equilibrium potential. The proteins encoded by this gene are activated by cell swelling induced by hypotonic conditions. Alternate splicing results in multiple transcript variants encoding different isoforms. Mutations in this gene are associated with agenesis of the corpus callosum with peripheral neuropathy. |
| NA | ENSG00000182117 | NOP10 | NOP10 ribonucleoprotein | 55505 | This gene is a member of the H/ACA snoRNPs (small nucleolar ribonucleoproteins) gene family. snoRNPs are involved in various aspects of rRNA processing and modification and have been classified into two families: C/D and H/ACA. The H/ACA snoRNPs also include the DKC1, NOLA1 and NOLA2 proteins. These four H/ACA snoRNP proteins localize to the dense fibrillar components of nucleoli and to coiled (Cajal) bodies in the nucleus. Both 18S rRNA production and rRNA pseudouridylation are impaired if any one of the four proteins is depleted. The four H/ACA snoRNP proteins are also components of the telomerase complex. This gene encodes a protein related to Saccharomyces cerevisiae Nop10p. |
| NA | ENSG00000176454 | LPCAT4 | lysophosphatidylcholine acyltransferase 4 | 254531 | Members of the 1-acylglycerol-3-phosphate O-acyltransferase (EC 2.3.1.51) family, such as AGPAT7, catalyze the conversion of lysophosphatidic acid (LPA) to phosphatidic acid (PA), a precursor in the biosynthesis of all glycerolipids. Both LPA and PA are involved in signal transduction (Ye et al., 2005 [PubMed 16243729]). |
| NA | ENSG00000175265 | GOLGA8A | golgin A8 family member A | 23015 | The Golgi apparatus, which participates in glycosylation and transport of proteins and lipids in the secretory pathway, consists of a series of stacked, flattened membrane sacs referred to as cisternae. Interactions between the Golgi and microtubules are thought to be important for the reorganization of the Golgi after it fragments during mitosis. The golgins constitute a family of proteins which are localized to the Golgi. This gene encodes a golgin which structurally resembles its family member GOLGA2, suggesting that they may share a similar function. There are many similar copies of this gene on chromosome 15. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000215252 | GOLGA8B | golgin A8 family member B | 440270 | NA |
| NA | ENSG00000215252 | GOLGA8A | golgin A8 family member A | 23015 | The Golgi apparatus, which participates in glycosylation and transport of proteins and lipids in the secretory pathway, consists of a series of stacked, flattened membrane sacs referred to as cisternae. Interactions between the Golgi and microtubules are thought to be important for the reorganization of the Golgi after it fragments during mitosis. The golgins constitute a family of proteins which are localized to the Golgi. This gene encodes a golgin which structurally resembles its family member GOLGA2, suggesting that they may share a similar function. There are many similar copies of this gene on chromosome 15. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000159251 | ACTC1 | actin, alpha, cardiac muscle 1 | 70 | Actins are highly conserved proteins that are involved in various types of cell motility. Polymerization of globular actin (G-actin) leads to a structural filament (F-actin) in the form of a two-stranded helix. Each actin can bind to four others. The protein encoded by this gene belongs to the actin family which is comprised of three main groups of actin isoforms, alpha, beta, and gamma. The alpha actins are found in muscle tissues and are a major constituent of the contractile apparatus. Defects in this gene have been associated with idiopathic dilated cardiomyopathy (IDC) and familial hypertrophic cardiomyopathy (FHC). |
| NA | ENSG00000021776 | AQR | aquarius intron-binding spliceosomal factor | 9716 | NA |
| NA | ENSG00000134146 | DPH6 | diphthamine biosynthesis 6 | 89978 | NA |
| NA | ENSG00000186073 | C15orf41 | chromosome 15 open reading frame 41 | 84529 | This gene encodes a protein with two predicted helix-turn-helix domains. Mutations in this gene were found in families with congenital dyserythropoietic anemia type Ib. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000166068 | SPRED1 | sprouty related, EVH1 domain containing 1 | 161742 | The protein encoded by this gene is a member of the Sprouty family of proteins and is phosphorylated by tyrosine kinase in response to several growth factors. The encoded protein can act as a homodimer or as a heterodimer with SPRED2 to regulate activation of the MAP kinase cascade. Defects in this gene are a cause of neurofibromatosis type 1-like syndrome (NFLS). |
| NA | ENSG00000171262 | FAM98B | family with sequence similarity 98 member B | 283742 | NA |
| NA | ENSG00000172575 | RASGRP1 | RAS guanyl releasing protein 1 | 10125 | This gene is a member of a family of genes characterized by the presence of a Ras superfamily guanine nucleotide exchange factor (GEF) domain. It functions as a diacylglycerol (DAG)-regulated nucleotide exchange factor specifically activating Ras through the exchange of bound GDP for GTP. It activates the Erk/MAP kinase cascade and regulates T-cells and B-cells development, homeostasis and differentiation. Alternatively spliced transcript variants encoding different isoforms have been identified. Altered expression of the different isoforms of this protein may be a cause of susceptibility to systemic lupus erythematosus (SLE). |
| NA | ENSG00000137801 | THBS1 | thrombospondin 1 | 7057 | The protein encoded by this gene is a subunit of a disulfide-linked homotrimeric protein. This protein is an adhesive glycoprotein that mediates cell-to-cell and cell-to-matrix interactions. This protein can bind to fibrinogen, fibronectin, laminin, type V collagen and integrins alpha-V/beta-1. This protein has been shown to play roles in platelet aggregation, angiogenesis, and tumorigenesis. |
| NA | ENSG00000150667 | FSIP1 | fibrous sheath interacting protein 1 | 161835 | NA |
| NA | ENSG00000128829 | EIF2AK4 | eukaryotic translation initiation factor 2 alpha kinase 4 | 440275 | This gene encodes a member of a family of kinases that phosphorylate the alpha subunit of eukaryotic translation initiation factor-2 (EIF2), resulting in the downregulaton of protein synthesis. The encoded protein responds to amino acid deprivation by binding uncharged transfer RNAs. It may also be activated by glucose deprivation and viral infection. Mutations in this gene have been found in individuals suffering from autosomal recessive pulmonary venoocclusive-disease-2. |
| NA | ENSG00000140319 | SRP14 | signal recognition particle 14kDa | 6727 | NA |
| NA | ENSG00000104081 | BMF | Bcl2 modifying factor | 90427 | The protein encoded by this gene belongs to the BCL2 protein family. BCL2 family members form hetero- or homodimers and act as anti- or pro-apoptotic regulators that are involved in a wide variety of cellular activities. This protein contains a single BCL2 homology domain 3 (BH3), and has been shown to bind BCL2 proteins and function as an apoptotic activator. This protein is found to be sequestered to myosin V motors by its association with dynein light chain 2, which may be important for sensing intracellular damage and triggering apoptosis. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000156970 | BUB1B | BUB1 mitotic checkpoint serine/threonine kinase B | 701 | This gene encodes a kinase involved in spindle checkpoint function. The protein has been localized to the kinetochore and plays a role in the inhibition of the anaphase-promoting complex/cyclosome (APC/C), delaying the onset of anaphase and ensuring proper chromosome segregation. Impaired spindle checkpoint function has been found in many forms of cancer. |
| NA | ENSG00000137843 | PAK6 | p21 protein (Cdc42/Rac)-activated kinase 6 | 56924 | This gene encodes a member of a family of p21-stimulated serine/threonine protein kinases, which contain an amino-terminal Cdc42/Rac interactive binding (CRIB) domain and a carboxyl-terminal kinase domain. These kinases function in a number of cellular processes, including cytoskeleton rearrangement, apoptosis, and the mitogen-activated protein (MAP) kinase signaling pathway. The protein encoded by this gene interacts with androgen receptor (AR) and translocates to the nucleus, where it is involved in transcriptional regulation. Changes in expression of this gene have been linked to prostate cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000137843 | BUB1B-PAK6 | BUB1B-PAK6 readthrough | 106821730 | This gene represents readthrough transcription between the genes BUB1B (mitotic checkpoint serine/threonine-protein kinase BUB1 beta) and PAK6 (serine/threonine-protein kinase PAK 6). The protein encoded by the readthrough transcripts is the same as the product of the downstream gene (PAK6). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000137841 | PLCB2 | phospholipase C beta 2 | 5330 | NA |
| NA | ENSG00000140320 | BAHD1 | bromo adjacent homology domain containing 1 | 22893 | NA |
| NA | ENSG00000169105 | CHST14 | carbohydrate (dermatan 4) sulfotransferase 14 | 113189 | This gene encodes a member of the HNK-1 family of sulfotransferases. The encoded protein transfers sulfate to the C-4 hydroxyl of N-acetylgalactosamine residues in dermatan sulfate. Mutations in this gene have been associated with adducted thumb-clubfoot syndrome. |
| NA | ENSG00000166133 | RPUSD2 | RNA pseudouridylate synthase domain containing 2 | 27079 | NA |
| NA | ENSG00000137812 | CASC5 | cancer susceptibility candidate 5 | 57082 | The protein encoded by this gene is a component of the multiprotein assembly that is required for creation of kinetochore-microtubule attachments and chromosome segregation. The encoded protein functions as a scaffold for proteins that influence the spindle assembly checkpoint during the eukaryotic cell cycle and it interacts with at least five different kinetochore proteins and two checkpoint kinases. In adults, this gene is predominantly expressed in normal testes, various cancer cell lines and primary tumors from other tissues and is ubiquitously expressed in fetal tissues. This gene was originally identified as a fusion partner with the mixed-lineage leukemia (MLL) gene in t(11;15)(q23;q14). Mutations in this gene cause autosomal recessive primary microcephaly-4 (MCPH4). Alternative splicing results in multiple transcript variants encoding different isoforms. Additional splice variants have been described but their biological validity has not been confirmed. |
| NA | ENSG00000051180 | RAD51 | RAD51 recombinase | 5888 | The protein encoded by this gene is a member of the RAD51 protein family. RAD51 family members are highly similar to bacterial RecA and Saccharomyces cerevisiae Rad51, and are known to be involved in the homologous recombination and repair of DNA. This protein can interact with the ssDNA-binding protein RPA and RAD52, and it is thought to play roles in homologous pairing and strand transfer of DNA. This protein is also found to interact with BRCA1 and BRCA2, which may be important for the cellular response to DNA damage. BRCA2 is shown to regulate both the intracellular localization and DNA-binding ability of this protein. Loss of these controls following BRCA2 inactivation may be a key event leading to genomic instability and tumorigenesis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137824 | RMDN3 | regulator of microtubule dynamics 3 | 55177 | NA |
| NA | ENSG00000137880 | GCHFR | GTP cyclohydrolase I feedback regulator | 2644 | GTP cyclohydrolase I feedback regulatory protein binds to and mediates tetrahydrobiopterin inhibition of GTP cyclohydrolase I. The regulatory protein, GCHFR, consists of a homodimer. It is postulated that GCHFR may play a role in regulating phenylalanine metabolism in the liver and in the production of biogenic amine neurotransmitters and nitric oxide. |
| NA | ENSG00000104129 | DNAJC17 | DnaJ heat shock protein family (Hsp40) member C17 | 55192 | NA |
| NA | ENSG00000166140 | ZFYVE19 | zinc finger FYVE-type containing 19 | 84936 | NA |
| NA | ENSG00000166145 | SPINT1 | serine peptidase inhibitor, Kunitz type 1 | 6692 | The protein encoded by this gene is a member of the Kunitz family of serine protease inhibitors. The protein is a potent inhibitor specific for HGF activator and is thought to be involved in the regulation of the proteolytic activation of HGF in injured tissues. Alternative splicing results in multiple variants encoding different isoforms. |
| NA | ENSG00000104140 | RHOV | ras homolog family member V | 171177 | NA |
| NA | ENSG00000104142 | VPS18 | VPS18, CORVET/HOPS core subunit | 57617 | Vesicle mediated protein sorting plays an important role in segregation of intracellular molecules into distinct organelles. Genetic studies in yeast have identified more than 40 vacuolar protein sorting (VPS) genes involved in vesicle transport to vacuoles. This gene encodes the human homolog of yeast class C Vps18 protein. The mammalian class C Vps proteins are predominantly associated with late endosomes/lysosomes, and like their yeast counterparts, may mediate vesicle trafficking steps in the endosome/lysosome pathway. |
| NA | ENSG00000128965 | CHAC1 | ChaC glutathione-specific gamma-glutamylcyclotransferase 1 | 79094 | NA |
| NA | ENSG00000128908 | INO80 | INO80 complex subunit | 54617 | This gene encodes a subunit of the chromatin remodeling complex, which is classified into subfamilies depending on sequence features apart from the conserved ATPase domain. This protein is the catalytic ATPase subunit of the INO80 chromatin remodeling complex, which is characterized by a DNA-binding domain. This protein is proposed to bind DNA and be recruited by the YY1 transcription factor to activate certain genes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000187446 | CHP1 | calcineurin like EF-hand protein 1 | 11261 | This gene encodes a phosphoprotein that binds to the Na+/H+ exchanger NHE1. This protein serves as an essential cofactor which supports the physiological activity of NHE family members and may play a role in the mitogenic regulation of NHE1. The protein shares similarity with calcineurin B and calmodulin and it is also known to be an endogenous inhibitor of calcineurin activity. |
| NA | ENSG00000104147 | OIP5 | Opa interacting protein 5 | 11339 | The protein encoded by this gene localizes to centromeres, where it is essential for recruitment of CENP-A through the mediator Holliday junction recognition protein. Expression of this gene is upregulated in several cancers, making it a putative therapeutic target. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137806 | NDUFAF1 | NADH:ubiquinone oxidoreductase complex assembly factor 1 | 51103 | This gene encodes a complex I assembly factor protein. Complex I (NADH-ubiquinone oxidoreductase) catalyzes the transfer of electrons from NADH to ubiquinone (coenzyme Q) in the first step of the mitochondrial respiratory chain, resulting in the translocation of protons across the inner mitochondrial membrane. The encoded protein is required for assembly of complex I, and mutations in this gene are a cause of mitochondrial complex I deficiency. Alternatively spliced transcript variants have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 19. |
| NA | ENSG00000137815 | RTF1 | RTF1 homolog, Paf1/RNA polymerase II complex component | 23168 | This locus may represent a gene involved in regulation of transcription elongation and chromatin remodeling, based on studies of similar proteins in other organisms. The encoded protein may bind single-stranded DNA. |
| NA | ENSG00000103932 | RPAP1 | RNA polymerase II associated protein 1 | 26015 | This protein forms part of the RNA polymerase II (RNAPII) enzyme complex and may recruit RNAPII to chromatin through its interaction with acetylated histones. |
| NA | ENSG00000174197 | MGA | MGA, MAX dimerization protein | 23269 | NA |
| NA | ENSG00000137802 | MAPKBP1 | mitogen-activated protein kinase binding protein 1 | 23005 | NA |
| NA | ENSG00000103966 | EHD4 | EH domain containing 4 | 30844 | NA |
| NA | ENSG00000166887 | VPS39 | VPS39, HOPS complex subunit | 23339 | This gene encodes a protein that may promote clustering and fusion of late endosomes and lysosomes. The protein may also act as an adaptor protein that modulates the transforming growth factor-beta response by coupling the transforming growth factor-beta receptor complex to the Smad pathway. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000103978 | TMEM87A | transmembrane protein 87A | 25963 | NA |
| NA | ENSG00000214013 | GANC | glucosidase, alpha; neutral C | 2595 | Glycosyl hydrolase enzymes hydrolyse the glycosidic bond between two or more carbohydrates, or between a carbohydrate and a non-carbohydrate moiety. This gene encodes a member of glycosyl hydrolases family 31. This enzyme hydrolyses terminal, non-reducing 1,4-linked alpha-D-glucose residues and releases alpha-D-glucose. This is a key enzyme in glycogen metabolism and its gene localizes to a chromosomal region (15q15) that is associated with susceptibility to diabetes. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000103994 | ZNF106 | zinc finger protein 106 | 64397 | NA |
| NA | ENSG00000092531 | SNAP23 | synaptosome associated protein 23kDa | 8773 | Specificity of vesicular transport is regulated, in part, by the interaction of a vesicle-associated membrane protein termed synaptobrevin/VAMP with a target compartment membrane protein termed syntaxin. These proteins, together with SNAP25 (synaptosome-associated protein of 25 kDa), form a complex which serves as a binding site for the general membrane fusion machinery. Synaptobrevin/VAMP and syntaxin are believed to be involved in vesicular transport in most, if not all cells, while SNAP25 is present almost exclusively in the brain, suggesting that a ubiquitously expressed homolog of SNAP25 exists to facilitate transport vesicle/target membrane fusion in other tissues. The protein encoded by this gene is structurally and functionally similar to SNAP25 and binds tightly to multiple syntaxins and synaptobrevins/VAMPs. It is an essential component of the high affinity receptor for the general membrane fusion machinery and is an important regulator of transport vesicle docking and fusion. Two alternative transcript variants encoding different protein isoforms have been described for this gene. |
| NA | ENSG00000180979 | LRRC57 | leucine rich repeat containing 57 | 255252 | NA |
| NA | ENSG00000137814 | HAUS2 | HAUS augmin like complex subunit 2 | 55142 | HAUS2 is 1 of 8 subunits of the 390-kD human augmin complex, or HAUS complex. The augmin complex was first identified in Drosophila, and its name comes from the Latin verb ‘augmentare,’ meaning ‘to increase.’ The augmin complex is a microtubule-binding complex involved in microtubule generation within the mitotic spindle and is vital to mitotic spindle assembly (Goshima et al., 2008 [PubMed 18443220]; Uehara et al., 2009 [PubMed 19369198]). |
| NA | ENSG00000159433 | STARD9 | StAR related lipid transfer domain containing 9 | 57519 | NA |
| NA | ENSG00000140326 | CDAN1 | codanin 1 | 146059 | This gene encodes a protein that appears to play a role in nuclear envelope integrity, possibly related to microtubule attachments. Mutations in this gene cause congenital dyserythropoietic anemia type I, a disease resulting in morphological and functional abnormalities of erythropoiesis. |
| NA | ENSG00000128881 | TTBK2 | tau tubulin kinase 2 | 146057 | This gene encodes a serine-threonine kinase that putatively phosphorylates tau and tubulin proteins. Mutations in this gene cause spinocerebellar ataxia type 11 (SCA11); a neurodegenerative disease characterized by progressive ataxia and atrophy of the cerebellum and brainstem. |
| NA | ENSG00000159459 | UBR1 | ubiquitin protein ligase E3 component n-recognin 1 | 197131 | The N-end rule pathway is one proteolytic pathway of the ubiquitin system. The recognition component of this pathway, encoded by this gene, binds to a destabilizing N-terminal residue of a substrate protein and participates in the formation of a substrate-linked multiubiquitin chain. This leads to the eventual degradation of the substrate protein. The protein described in this record has a RING-type zinc finger and a UBR-type zinc finger. Mutations in this gene have been associated with Johanson-Blizzard syndrome. |
| NA | ENSG00000168806 | LCMT2 | leucine carboxyl methyltransferase 2 | 9836 | The protein encoded by this intronless gene belongs to the highly variable methyltransferase superfamily. This gene is the inferred homolog of the Saccharomyces cerevisiae carboxymethyltransferase gene PPM2 that is essential for the synthesis of the hypermodified guanosine Wybutosine (yW). |
| NA | ENSG00000168803 | ADAL | adenosine deaminase-like | 161823 | NA |
| NA | ENSG00000140265 | ZSCAN29 | zinc finger and SCAN domain containing 29 | 146050 | NA |
| NA | ENSG00000137822 | TUBGCP4 | tubulin gamma complex associated protein 4 | 27229 | This gene encodes a component of the gamma-tubulin ring complex, which is required for microtubule nucleation. In mammalian cells, the protein localizes to centrosomes in association with gamma-tubulin. Crystal structure analysis revealed a structure composed of five helical bundles arranged around conserved hydrophobic cores. An exposed surface area located in the C-terminal domain is essential and sufficient for direct binding to gamma-tubulin. Mutations in this gene that alter microtubule organization are associated with microcephaly and chorioretinopathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000067369 | TP53BP1 | tumor protein p53 binding protein 1 | 7158 | NA |
| NA | ENSG00000166963 | MAP1A | microtubule associated protein 1A | 4130 | This gene encodes a protein that belongs to the microtubule-associated protein family. The proteins of this family are thought to be involved in microtubule assembly, which is an essential step in neurogenesis. The product of this gene is a precursor polypeptide that presumably undergoes proteolytic processing to generate the final MAP1A heavy chain and LC2 light chain. Expression of this gene is almost exclusively in the brain. Studies of the rat microtubule-associated protein 1A gene suggested a role in early events of spinal cord development. |
| NA | ENSG00000168781 | PPIP5K1 | diphosphoinositol pentakisphosphate kinase 1 | 9677 | This gene encodes a dual functional inositol kinase. The encoded enzyme converts inositol hexakisphosphate to diphosphoinositol pentakisphosphate and diphosphoinositol pentakisphosphate to bis-diphosphoinositol tetrakisphosphate. This protein may be important for intracellular signaling pathways. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 15. |
| NA | ENSG00000237289 | CKMT1B | creatine kinase, mitochondrial 1B | 1159 | Mitochondrial creatine (MtCK) kinase is responsible for the transfer of high energy phosphate from mitochondria to the cytosolic carrier, creatine. It belongs to the creatine kinase isoenzyme family. It exists as two isoenzymes, sarcomeric MtCK and ubiquitous MtCK, encoded by separate genes. Mitochondrial creatine kinase occurs in two different oligomeric forms: dimers and octamers, in contrast to the exclusively dimeric cytosolic creatine kinase isoenzymes. Many malignant cancers with poor prognosis have shown overexpression of ubiquitous mitochondrial creatine kinase; this may be related to high energy turnover and failure to eliminate cancer cells via apoptosis. Ubiquitous mitochondrial creatine kinase has 80% homology with the coding exons of sarcomeric mitochondrial creatine kinase. Two genes located near each other on chromosome 15 have been identified which encode identical mitochondrial creatine kinase proteins. |
| NA | ENSG00000223572 | CKMT1A | creatine kinase, mitochondrial 1A | 548596 | Mitochondrial creatine (MtCK) kinase is responsible for the transfer of high energy phosphate from mitochondria to the cytosolic carrier, creatine. It belongs to the creatine kinase isoenzyme family. It exists as two isoenzymes, sarcomeric MtCK and ubiquitous MtCK, encoded by separate genes. Mitochondrial creatine kinase occurs in two different oligomeric forms: dimers and octamers, in contrast to the exclusively dimeric cytosolic creatine kinase isoenzymes. Many malignant cancers with poor prognosis have shown overexpression of ubiquitous mitochondrial creatine kinase; this may be related to high energy turnover and failure to eliminate cancer cells via apoptosis. Ubiquitous mitochondrial creatine kinase has 80% homology with the coding exons of sarcomeric mitochondrial creatine kinase. Two genes located near each other on chromosome 15 have been identified which encode identical mitochondrial creatine kinase proteins. |
| NA | ENSG00000167004 | PDIA3 | protein disulfide isomerase family A member 3 | 2923 | This gene encodes a protein of the endoplasmic reticulum that interacts with lectin chaperones calreticulin and calnexin to modulate folding of newly synthesized glycoproteins. The protein was once thought to be a phospholipase; however, it has been demonstrated that the protein actually has protein disulfide isomerase activity. It is thought that complexes of lectins and this protein mediate protein folding by promoting formation of disulfide bonds in their glycoprotein substrates. |
| NA | ENSG00000128886 | ELL3 | elongation factor for RNA polymerase II 3 | 80237 | NA |
| NA | ENSG00000140264 | SERF2 | small EDRK-rich factor 2 | 10169 | NA |
| NA | ENSG00000140259 | MFAP1 | microfibrillar associated protein 1 | 4236 | NA |
| NA | ENSG00000092470 | WDR76 | WD repeat domain 76 | 79968 | NA |
| NA | ENSG00000171877 | FRMD5 | FERM domain containing 5 | 84978 | NA |
| NA | ENSG00000166734 | CASC4 | cancer susceptibility candidate 4 | 113201 | The increased expression level of this gene is associated with HER-2/neu proto-oncogene overexpression. Amplification and resulting overexpression of this proto-oncogene are found in approximately 30% of human breast and 20% of human ovarian cancers. Alternatively spliced variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000104133 | SPG11 | spastic paraplegia 11 (autosomal recessive) | 80208 | The protein encoded by this gene is a potential transmembrane protein that is phosphorylated upon DNA damage. Defects in this gene are a cause of spastic paraplegia type 11 (SPG11). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000166710 | B2M | beta-2-microglobulin | 567 | This gene encodes a serum protein found in association with the major histocompatibility complex (MHC) class I heavy chain on the surface of nearly all nucleated cells. The protein has a predominantly beta-pleated sheet structure that can form amyloid fibrils in some pathological conditions. The encoded antimicrobial protein displays antibacterial activity in amniotic fluid. A mutation in this gene has been shown to result in hypercatabolic hypoproteinemia. |
| NA | ENSG00000185880 | TRIM69 | tripartite motif containing 69 | 140691 | This gene encodes a member of the RING-B-box-coiled-coil (RBCC) family and encodes a protein with an N-terminal RING finger motif, a PRY domain and a C-terminal SPRY domain. The mouse ortholog of this gene is specifically expressed in germ cells at the round spermatid stages during spermatogenesis and, when overexpressed, induces apoptosis. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000140263 | SORD | sorbitol dehydrogenase | 6652 | Sorbitol dehydrogenase (SORD; EC 1.1.1.14) catalyzes the interconversion of polyols and their corresponding ketoses, and together with aldose reductase (ALDR1; MIM 103880), makes up the sorbitol pathway that is believed to play an important role in the development of diabetic complications (summarized by Carr and Markham, 1995 [PubMed 8535074]). The first reaction of the pathway (also called the polyol pathway) is the reduction of glucose to sorbitol by ALDR1 with NADPH as the cofactor. SORD then oxidizes the sorbitol to fructose using NAD(+) cofactor. |
| NA | ENSG00000138606 | SHF | Src homology 2 domain containing F | 90525 | NA |
| NA | ENSG00000171766 | GATM | glycine amidinotransferase | 2628 | This gene encodes a mitochondrial enzyme that belongs to the amidinotransferase family. This enzyme is involved in creatine biosynthesis, whereby it catalyzes the transfer of a guanido group from L-arginine to glycine, resulting in guanidinoacetic acid, the immediate precursor of creatine. Mutations in this gene cause arginine:glycine amidinotransferase deficiency, an inborn error of creatine synthesis characterized by mental retardation, language impairment, and behavioral disorders. |
| NA | ENSG00000171763 | SPATA5L1 | spermatogenesis associated 5 like 1 | 79029 | NA |
| NA | ENSG00000137872 | SEMA6D | semaphorin 6D | 80031 | Semaphorins are a large family, including both secreted and membrane associated proteins, many of which have been implicated as inhibitors or chemorepellents in axon pathfinding, fasciculation and branching, and target selection. All semaphorins possess a semaphorin (Sema) domain and a PSI domain (found in plexins, semaphorins and integrins) in the N-terminal extracellular portion. Additional sequence motifs C-terminal to the semaphorin domain allow classification into distinct subfamilies. Results demonstrate that transmembrane semaphorins, like the secreted ones, can act as repulsive axon guidance cues. This gene encodes a class 6 vertebrate transmembrane semaphorin that demonstrates alternative splicing. Several transcript variants have been identified and expression of the distinct encoded isoforms is thought to be regulated in a tissue- and development-dependent manner. |
| NA | ENSG00000074803 | SLC12A1 | solute carrier family 12 member 1 | 6557 | This gene encodes a kidney-specific sodium-potassium-chloride cotransporter that is expressed on the luminal membrane of renal epithelial cells of the thick ascending limb of Henle’s loop and the macula densa. It plays a key role in concentrating urine and accounts for most of the NaCl resorption. It is sensitive to such diuretics as furosemide and bumetanide. Some Bartter-like syndromes result from defects in this gene. Alternative splicing results in multiple transcript variants encoding distinct isoforms. Additional splice variants have been described but their biological validity in humans has not been experimentally proven. |
| NA | ENSG00000128951 | DUT | deoxyuridine triphosphatase | 1854 | This gene encodes an essential enzyme of nucleotide metabolism. The encoded protein forms a ubiquitous, homotetrameric enzyme that hydrolyzes dUTP to dUMP and pyrophosphate. This reaction serves two cellular purposes: providing a precursor (dUMP) for the synthesis of thymine nucleotides needed for DNA replication, and limiting intracellular pools of dUTP. Elevated levels of dUTP lead to increased incorporation of uracil into DNA, which induces extensive excision repair mediated by uracil glycosylase. This repair process, resulting in the removal and reincorporation of dUTP, is self-defeating and leads to DNA fragmentation and cell death. Alternative splicing of this gene leads to different isoforms that localize to either the mitochondrion or nucleus. A related pseudogene is located on chromosome 19. |
| NA | ENSG00000103995 | CEP152 | centrosomal protein 152kDa | 22995 | This gene encodes a protein that is thought to be involved with centrosome function. Mutations in this gene have been associated with primary microcephaly (MCPH4). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000255302 | EID1 | EP300 interacting inhibitor of differentiation 1 | 23741 | NA |
| NA | ENSG00000138593 | SECISBP2L | SECIS binding protein 2 like | 9728 | NA |
| NA | ENSG00000166200 | COPS2 | COP9 signalosome subunit 2 | 9318 | NA |
| NA | ENSG00000156958 | GALK2 | galactokinase 2 | 2585 | This gene encodes a highly efficient N-acetylgalactosamine (GalNAc) kinase, which has galactokinase activity when galactose is present at high concentrations. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000166262 | FAM227B | family with sequence similarity 227 member B | 196951 | NA |
| NA | ENSG00000104047 | DTWD1 | DTW domain containing 1 | 56986 | NA |
| NA | ENSG00000140284 | SLC27A2 | solute carrier family 27 member 2 | 11001 | The protein encoded by this gene is an isozyme of long-chain fatty-acid-coenzyme A ligase family. Although differing in substrate specificity, subcellular localization, and tissue distribution, all isozymes of this family convert free long-chain fatty acids into fatty acyl-CoA esters, and thereby play a key role in lipid biosynthesis and fatty acid degradation. This isozyme activates long-chain, branched-chain and very-long-chain fatty acids containing 22 or more carbons to their CoA derivatives. It is expressed primarily in liver and kidney, and is present in both endoplasmic reticulum and peroxisomes, but not in mitochondria. Its decreased peroxisomal enzyme activity is in part responsible for the biochemical pathology in X-linked adrenoleukodystrophy. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000104064 | FLJ10038 | uncharacterized protein FLJ10038 | 55056 | NA |
| NA | ENSG00000104064 | GABPB1 | GA binding protein transcription factor beta subunit 1 | 2553 | This gene encodes the GA-binding protein transcription factor, beta subunit. This protein forms a tetrameric complex with the alpha subunit, and stimulates transcription of target genes. The encoded protein may be involved in activation of cytochrome oxidase expression and nuclear control of mitochondrial function. The crystal structure of a similar protein in mouse has been resolved as a ternary protein complex. Multiple transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000138592 | USP8 | ubiquitin specific peptidase 8 | 9101 | This gene encodes a protein that belongs to the ubiquitin-specific processing protease family of proteins. The encoded protein is thought to regulate the morphology of the endosome by ubiquitination of proteins on this organelle and is involved in cargo sorting and membrane trafficking at the early endosome stage. This protein is required for the cell to enter the S phase of the cell cycle and also functions as a positive regulator in the Hedgehog signaling pathway in development. Pseudogenes of this gene are present on chromosomes 2 and 6. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000092439 | TRPM7 | transient receptor potential cation channel subfamily M member 7 | 54822 | The protein encoded by this gene is both an ion channel and a serine/threonine protein kinase. The kinase activity is essential for the ion channel function, which serves to increase intracellular calcium levels and to help regulate magnesium ion homeostasis. Defects in this gene are a cause of amyotrophic lateral sclerosis-parkinsonism/dementia complex of Guam. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000138600 | SPPL2A | signal peptide peptidase like 2A | 84888 | This gene encodes a member of the GXGD family of aspartic proteases, which are transmembrane proteins with two conserved catalytic motifs localized within the membrane-spanning regions, as well as a member of the signal peptide peptidase-like protease (SPPL) family. This protein is expressed in all major adult human tissues and localizes to late endosomal compartments and lysosomal membranes. A pseudogene of this gene also lies on chromosome 15. |
| NA | ENSG00000081014 | AP4E1 | adaptor related protein complex 4 epsilon 1 subunit | 23431 | This gene encodes a member of the adaptor complexes large subunit protein family. These proteins are components of the heterotetrameric adaptor protein complexes, which play important roles in the secretory and endocytic pathways by mediating vesicle formation and sorting of integral membrane proteins. The encoded protein is a large subunit of adaptor protein complex-4, which is associated with both clathrin- and nonclathrin-coated vesicles. Disruption of this gene may be associated with cerebral palsy. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000104093 | DMXL2 | Dmx like 2 | 23312 | This gene encodes a protein with 12 WD domains. Proteins with WD domains are involved in many functions including participation in signal transduction pathways. Participation of the encoded protein in regulation of the Notch signaling pathway has been demonstrated in vitro using several human cell lines (PMID:20810660). A gene encoding a similar protein is located on chromosome 5. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000104112 | SCG3 | secretogranin III | 29106 | The protein encoded by this gene is a member of the chromogranin/secretogranin family of neuroendocrine secretory proteins. Granins may serve as precursors for biologically active peptides. Some granins have been shown to function as helper proteins in sorting and proteolytic processing of prohormones; however, the function of this protein is unknown. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000128872 | TMOD2 | tropomodulin 2 | 29767 | This gene encodes a neuronal-specific member of the tropomodulin family of actin-regulatory proteins. The encoded protein caps the pointed end of actin filaments preventing both elongation and depolymerization. The capping activity of this protein is dependent on its association with tropomyosin. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000138594 | TMOD3 | tropomodulin 3 | 29766 | NA |
| NA | ENSG00000166477 | LEO1 | LEO1 homolog, Paf1/RNA polymerase II complex component | 123169 | LEO1, parafibromin (CDC73; MIM 607393), CTR9 (MIM 609366), and PAF1 (MIM 610506) form the PAF protein complex that associates with the RNA polymerase II subunit POLR2A (MIM 180660) and with a histone methyltransferase complex (Rozenblatt-Rosen et al., 2005 [PubMed 15632063]). |
| NA | ENSG00000069956 | MAPK6 | mitogen-activated protein kinase 6 | 5597 | The protein encoded by this gene is a member of the Ser/Thr protein kinase family, and is most closely related to mitogen-activated protein kinases (MAP kinases). MAP kinases also known as extracellular signal-regulated kinases (ERKs), are activated through protein phosphorylation cascades and act as integration points for multiple biochemical signals. This kinase is localized in the nucleus, and has been reported to be activated in fibroblasts upon treatment with serum or phorbol esters. |
| NA | ENSG00000069966 | GNB5 | G protein subunit beta 5 | 10681 | Heterotrimeric guanine nucleotide-binding proteins (G proteins), which integrate signals between receptors and effector proteins, are composed of an alpha, a beta, and a gamma subunit. These subunits are encoded by families of related genes. This gene encodes a beta subunit. Beta subunits are important regulators of alpha subunits, as well as of certain signal transduction receptors and effectors. Alternatively spliced transcript variants encoding different isoforms exist. |
| NA | ENSG00000128833 | MYO5C | myosin VC | 55930 | NA |
| NA | ENSG00000197535 | MYO5A | myosin VA | 4644 | This gene is one of three myosin V heavy-chain genes, belonging to the myosin gene superfamily. Myosin V is a class of actin-based motor proteins involved in cytoplasmic vesicle transport and anchorage, spindle-pole alignment and mRNA translocation. The protein encoded by this gene is abundant in melanocytes and nerve cells. Mutations in this gene cause Griscelli syndrome type-1 (GS1), Griscelli syndrome type-3 (GS3) and neuroectodermal melanolysosomal disease, or Elejalde disease. Multiple alternatively spliced transcript variants encoding different isoforms have been reported, but the full-length nature of some variants has not been determined. |
| NA | ENSG00000128989 | ARPP19 | cAMP regulated phosphoprotein 19kDa | 10776 | The 19-kD cAMP-regulated phosphoprotein plays a role in regulating mitosis by inhibiting protein phosphatase-2A (PP2A; see MIM 176915) (summary by Gharbi-Ayachi et al., 2010 [PubMed 21164014]). |
| NA | ENSG00000047346 | FAM214A | family with sequence similarity 214 member A | 56204 | NA |
| NA | ENSG00000166415 | WDR72 | WD repeat domain 72 | 256764 | This gene encodes a protein with eight WD-40 repeats. Mutations in this gene have been associated with amelogenesis imperfecta hypomaturation type 2A3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000137876 | RSL24D1 | ribosomal L24 domain containing 1 | 51187 | This gene encodes a protein sharing a low level of sequence similarity with human ribosomal protein L24. Although this gene has been referred to as RPL24, L30, and 60S ribosomal protein L30 isolog in the sequence databases, it is distinct from the human genes officially named RPL24 (which itself has been referred to as ribosomal protein L30) and RPL30. The protein encoded by this gene localizes to the nucleolus and is thought to play a role in the biogenesis of the 60S ribosomal subunit. The precise function of this gene is currently unknown. This gene utilizes alternative polyadenylation signals and has multiple pseudogenes. |
| NA | ENSG00000069974 | RAB27A | RAB27A, member RAS oncogene family | 5873 | The protein encoded by this gene belongs to the small GTPase superfamily, Rab family. The protein is membrane-bound and may be involved in protein transport and small GTPase mediated signal transduction. Mutations in this gene are associated with Griscelli syndrome type 2. Alternative splicing occurs at this locus and four transcript variants encoding the same protein have been identified. |
| NA | ENSG00000069943 | PIGB | phosphatidylinositol glycan anchor biosynthesis class B | 9488 | This gene encodes a transmembrane protein that is located in the endoplasmic reticulum and is involved in GPI-anchor biosynthesis. The glycosylphosphatidylinositol (GPI) anchor is a glycolipid found on many blood cells and serves to anchor proteins to the cell surface. This gene is thought to encode a member of a family of dolichol-phosphate-mannose (Dol-P-Man) dependent mannosyltransferases. |
| NA | ENSG00000260916 | CCPG1 | cell cycle progression 1 | 9236 | NA |
| NA | ENSG00000261652 | C15orf65 | chromosome 15 open reading frame 65 | 145788 | NA |
| NA | ENSG00000256061 | DYX1C1 | dyslexia susceptibility 1 candidate 1 | 161582 | This gene encodes a tetratricopeptide repeat domain-containing protein. The encoded protein interacts with estrogen receptors and the heat shock proteins, Hsp70 and Hsp90. An homologous protein in rat has been shown to function in neuronal migration in the developing neocortex. A chromosomal translocation involving this gene is associated with a susceptibility to developmental dyslexia. Mutations in this gene are associated with deficits in reading and spelling. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the downstream cell cycle progression 1 (CCPG1) gene. |
| NA | ENSG00000166450 | PRTG | protogenin | 283659 | This gene encodes a member of the immunoglobulin superfamily. The encoded transmembrane protein has been associated with the development of various tissues, especially neurogenesis. It has been suggested that this gene may be associated with attention deficit hyperactivity disorder (ADHD). |
| NA | ENSG00000069869 | NEDD4 | neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase | 4734 | NA |
| NA | ENSG00000181827 | RFX7 | regulatory factor X7 | 64864 | RFX7 is a member of the regulatory factor X (RFX) family of transcription factors (see RFX1, MIM 600006) (Aftab et al., 2008 [PubMed 18673564]). |
| NA | ENSG00000151575 | TEX9 | testis expressed 9 | 374618 | NA |
| NA | ENSG00000138587 | MNS1 | meiosis specific nuclear structural 1 | 55329 | This gene encodes a protein highly similar to the mouse meiosis-specific nuclear structural 1 protein. The mouse protein was shown to be expressed at the pachytene stage during spermatogenesis and may function as a nuclear skeletal protein to regulate nuclear morphology during meiosis. |
| NA | ENSG00000137871 | LOC145783 | uncharacterized LOC145783 | 145783 | NA |
| NA | ENSG00000137871 | ZNF280D | zinc finger protein 280D | 54816 | NA |
| NA | ENSG00000128849 | CGNL1 | cingulin-like 1 | 84952 | This gene encodes a member of the cingulin family. The encoded protein localizes to both adherens and tight cell-cell junctions and mediates junction assembly and maintenance by regulating the activity of the small GTPases RhoA and Rac1. Heterozygous chromosomal rearrangements resulting in association of the promoter for this gene with the aromatase gene are a cause of aromatase excess syndrome. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000255529 | POLR2M | polymerase (RNA) II subunit M | 81488 | This gene encodes a subunit of a specific form of RNA polymerase II termed Pol II(G). The encoded protein may act as a negative regulator of transcriptional activation by the Mediator complex. Alternative splicing results in multiple transcript variants. There is a pseudogene for this gene on chromosome 4. Readthrough transcription between this gene and the neighboring upstream gene MYZAP (myocardial zonula adherens protein) is represented with GeneID 145781. |
| NA | ENSG00000137845 | ADAM10 | ADAM metallopeptidase domain 10 | 102 | Members of the ADAM family are cell surface proteins with a unique structure possessing both potential adhesion and protease domains. This gene encodes and ADAM family member that cleaves many proteins including TNF-alpha and E-cadherin. Alternate splicing results in multiple transcript variants encoding different proteins that may undergo similar processing. |
| NA | ENSG00000128923 | FAM63B | family with sequence similarity 63 member B | 54629 | NA |
| NA | ENSG00000157450 | RNF111 | ring finger protein 111 | 54778 | The protein encoded by this gene is a nuclear RING-domain containing E3 ubiquitin ligase. This protein interacts with the transforming growth factor (TGF) -beta/NODAL signaling pathway by promoting the ubiquitination and proteosomal degradation of negative regulators, like SMAD proteins, and thereby enhances TGF-beta target-gene transcription. As a modulator of the nodal signaling cascade, this gene plays a critical role in the induction of mesoderm during embryonic development. Alternative splicing of this gene results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000137776 | SLTM | SAFB like transcription modulator | 79811 | NA |
| NA | ENSG00000157483 | MYO1E | myosin IE | 4643 | This gene encodes a member of the nonmuscle class I myosins which are a subgroup of the unconventional myosin protein family. The unconventional myosin proteins function as actin-based molecular motors. Class I myosins are characterized by a head (motor) domain, a regulatory domain and a either a short or long tail domain. Among the class I myosins, this protein is distinguished by a long tail domain that is involved in crosslinking actin filaments. This protein localizes to the cytoplasm and may be involved in intracellular movement and membrane trafficking. Mutations in this gene are the cause of focal segmental glomerulosclerosis-6. This gene has been referred to as myosin IC in the literature but is distinct from the myosin IC gene located on chromosome 17. |
| NA | ENSG00000140299 | BNIP2 | BCL2/adenovirus E1B 19kDa interacting protein 2 | 663 | This gene is a member of the BCL2/adenovirus E1B 19 kd-interacting protein (BNIP) family. It interacts with the E1B 19 kDa protein, which protects cells from virally-induced cell death. The encoded protein also interacts with E1B 19 kDa-like sequences of BCL2, another apoptotic protector. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000182718 | ANXA2 | annexin A2 | 302 | This gene encodes a member of the annexin family. Members of this calcium-dependent phospholipid-binding protein family play a role in the regulation of cellular growth and in signal transduction pathways. This protein functions as an autocrine factor which heightens osteoclast formation and bone resorption. This gene has three pseudogenes located on chromosomes 4, 9 and 10, respectively. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000128915 | ICE2 | interactor of little elongation complex ELL subunit 2 | 79664 | NA |
| NA | ENSG00000069667 | RORA | RAR related orphan receptor A | 6095 | The protein encoded by this gene is a member of the NR1 subfamily of nuclear hormone receptors. It can bind as a monomer or as a homodimer to hormone response elements upstream of several genes to enhance the expression of those genes. The encoded protein has been shown to interact with NM23-2, a nucleoside diphosphate kinase involved in organogenesis and differentiation, as well as with NM23-1, the product of a tumor metastasis suppressor candidate gene. Also, it has been shown to aid in the transcriptional regulation of some genes involved in circadian rhythm. Four transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000129003 | VPS13C | vacuolar protein sorting 13 homolog C (S. cerevisiae) | 54832 | This gene encodes a member of the vacuolar protein sorting-associated 13 gene family. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000171914 | TLN2 | talin 2 | 83660 | This gene encodes a protein related to talin 1, a cytoskeletal protein that plays a significant role in the assembly of actin filaments and in spreading and migration of various cell types, including fibroblasts and osteoclasts. This protein has a different pattern of expression compared to talin 1 but, like talin 1, is thought to associate with unique transmembrane receptors to form novel linkages between extracellular matrices and the actin cytoskeleton. |
| NA | ENSG00000140416 | TPM1 | tropomyosin 1 (alpha) | 7168 | This gene is a member of the tropomyosin family of highly conserved, widely distributed actin-binding proteins involved in the contractile system of striated and smooth muscles and the cytoskeleton of non-muscle cells. Tropomyosin is composed of two alpha-helical chains arranged as a coiled-coil. It is polymerized end to end along the two grooves of actin filaments and provides stability to the filaments. The encoded protein is one type of alpha helical chain that forms the predominant tropomyosin of striated muscle, where it also functions in association with the troponin complex to regulate the calcium-dependent interaction of actin and myosin during muscle contraction. In smooth muscle and non-muscle cells, alternatively spliced transcript variants encoding a range of isoforms have been described. Mutations in this gene are associated with type 3 familial hypertrophic cardiomyopathy. |
| NA | ENSG00000103642 | LACTB | lactamase beta | 114294 | This gene encodes a mitochondrially-localized protein that has sequence similarity to prokaryotic beta-lactamases. Many of the residues responsible for beta-lactamase activity are not conserved in this protein, suggesting it may have a different enzymatic function. Increased expression of the related mouse gene was found to be associated with obesity. Alternative splicing results in multiple transcript variants encoding different protein isoforms. |
| NA | ENSG00000185088 | RPS27L | ribosomal protein S27 like | 51065 | This gene encodes a protein sharing 96% amino acid similarity with ribosomal protein S27, which suggests the encoded protein may be a component of the 40S ribosomal subunit. |
| NA | ENSG00000166128 | RAB8B | RAB8B, member RAS oncogene family | 51762 | RAB proteins, like RAB8B, are low molecular mass monomeric GTPases that localize on the cytoplasmic surfaces of distinct membrane-bound organelles. RAB proteins function in intracellular vesicle transport by aiding in the docking and/or fusion of vesicles with their target membranes (summary by Chen et al., 1997 [PubMed 9030196]). |
| NA | ENSG00000138613 | APH1B | aph-1 homolog B, gamma secretase subunit | 83464 | This gene encodes a multi-pass transmembrane protein that is a functional component of the gamma-secretase complex, which also contains presenilin and nicastrin. This protein represents a stabilizing cofactor for the presenilin holoprotein in the complex. The gamma-secretase complex catalyzes the cleavage of integral proteins such as notch receptors and beta-amyloid precursor protein. |
| NA | ENSG00000074410 | CA12 | carbonic anhydrase 12 | 771 | Carbonic anhydrases (CAs) are a large family of zinc metalloenzymes that catalyze the reversible hydration of carbon dioxide. They participate in a variety of biological processes, including respiration, calcification, acid-base balance, bone resorption, and the formation of aqueous humor, cerebrospinal fluid, saliva, and gastric acid. This gene product is a type I membrane protein that is highly expressed in normal tissues, such as kidney, colon and pancreas, and has been found to be overexpressed in 10% of clear cell renal carcinomas. Three transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000140455 | USP3 | ubiquitin specific peptidase 3 | 9960 | NA |
| NA | ENSG00000103657 | HERC1 | HECT and RLD domain containing E3 ubiquitin protein ligase family member 1 | 8925 | This gen encodes a member of the HERC protein family. This protein stimulates guanine nucleotide exchange on ARF1 and Rab proteins. This protein may be involved in membrane transport processes. |
| NA | ENSG00000028528 | SNX1 | sorting nexin 1 | 6642 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This endosomal protein regulates the cell-surface expression of epidermal growth factor receptor. This protein also has a role in sorting protease-activated receptor-1 from early endosomes to lysosomes. This protein may form oligomeric complexes with family members. This gene results in three transcript variants encoding distinct isoforms. |
| NA | ENSG00000157734 | SNX22 | sorting nexin 22 | 79856 | The protein encoded by this gene is a sorting nexin that is found in the cytoplasm, where it interacts with membrane-bound phosphatidylinositol 3-phosphate. The encoded protein may play a role in intracellular trafficking. Two transcript variants, one protein-coding and the other not protein-coding, have been found for this gene. |
| NA | ENSG00000169118 | CSNK1G1 | casein kinase 1 gamma 1 | 53944 | This gene encodes a member of the casein kinase I gene family. The encoded protein is a serine/threonine kinase that phosphorylates acidic proteins, and participates in pathways for cell growth. |
| NA | ENSG00000103671 | TRIP4 | thyroid hormone receptor interactor 4 | 9325 | NA |
| NA | ENSG00000180357 | ZNF609 | zinc finger protein 609 | 23060 | NA |
| NA | ENSG00000180304 | OAZ2 | ornithine decarboxylase antizyme 2 | 4947 | The protein encoded by this gene belongs to the ornithine decarboxylase antizyme family, which plays a role in cell growth and proliferation by regulating intracellular polyamines. Expression of antizymes requires +1 ribosomal frameshifting, which is enhanced by high levels of polyamines. Antizymes in turn bind to and inhibit ornithine decarboxylase (ODC), the key enzyme in polyamine biosynthesis; thus, completing the auto-regulatory circuit. This gene encodes antizyme 2, the second member of the antizyme family. Like antizyme 1, antizyme 2 has broad tissue distribution, inhibits ODC activity and polyamine uptake, and stimulates ODC degradation in vivo; however, it fails to promote ODC degradation in vitro. Antizyme 2 is expressed at lower levels than antizyme 1, but is evolutionary more conserved, suggesting it likely has an important biological role. Studies also show different subcellular localization of antizymes 1 and 2, indicating specific function for each antizyme in discrete compartments of the cell. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000166831 | RBPMS2 | RNA binding protein with multiple splicing 2 | 348093 | NA |
| NA | ENSG00000140451 | PIF1 | PIF1 5’-to-3’ DNA helicase | 80119 | This gene encodes a DNA-dependent adenosine triphosphate (ATP)-metabolizing enzyme that functions as a 5’ to 3’ DNA helicase. The encoded protein can resolve G-quadruplex structures and RNA-DNA hybrids at the ends of chromosomes. It also prevents telomere elongation by inhibiting the actions of telomerase. Alternative splicing and the use of alternative start codons results in multiple isoforms that are differentially localized to either the mitochondria or the nucleus. |
| NA | ENSG00000241839 | PLEKHO2 | pleckstrin homology domain containing O2 | 80301 | NA |
| NA | ENSG00000166839 | ANKDD1A | ankyrin repeat and death domain containing 1A | 348094 | NA |
| NA | ENSG00000090487 | SPG21 | spastic paraplegia 21 (autosomal recessive, Mast syndrome) | 51324 | The protein encoded by this gene binds to the hydrophobic C-terminal amino acids of CD4 which are involved in repression of T cell activation. The interaction with CD4 is mediated by the noncatalytic alpha/beta hydrolase fold domain of this protein. It is thus proposed that this gene product modulates the stimulatory activity of CD4. Mutations in this gene are associated with autosomal recessive spastic paraplegia 21 (SPG21), also known as mast syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000103707 | MTFMT | mitochondrial methionyl-tRNA formyltransferase | 123263 | The protein encoded by this nuclear gene localizes to the mitochondrion, where it catalyzes the formylation of methionyl-tRNA. |
| NA | ENSG00000103710 | RASL12 | RAS like family 12 | 51285 | NA |
| NA | ENSG00000090470 | PDCD7 | programmed cell death 7 | 10081 | This gene encodes a 59 kDa protein that is associated with the U11 small nuclear ribonucleoprotein (snRNP), which is a component of the minor U12-type spliceosome responsible for catalyzing pre-mRNA splicing of U12-type introns. |
| NA | ENSG00000166855 | CLPX | caseinolytic mitochondrial matrix peptidase chaperone subunit | 10845 | The protein encoded by this gene is part of a protease found in mitochondria. This protease is ATP-dependent and targets specific proteins for degradation. The protease consists of two heptameric rings of the CLPP catalytic subunit sandwiched between two hexameric rings of the chaperone subunit encoded by this gene. Targeted proteins are unwound by this protein and then passed on to the CLPP subunit for degradation. Two transcript variants, one protein-coding and the other non-protein coding, have been found for this gene. |
| NA | ENSG00000138617 | PARP16 | poly(ADP-ribose) polymerase family member 16 | 54956 | NA |
| NA | ENSG00000174498 | IGDCC3 | immunoglobulin superfamily, DCC subclass, member 3 | 9543 | NA |
| NA | ENSG00000103742 | IGDCC4 | immunoglobulin superfamily, DCC subclass, member 4 | 57722 | NA |
| NA | ENSG00000074603 | DPP8 | dipeptidyl peptidase 8 | 54878 | This gene encodes a member of the peptidase S9B family, a small family of dipeptidyl peptidases that are able to cleave peptide substrates at a prolyl bond. The encoded protein shares similarity with dipeptidyl peptidase IV in that it is ubiquitously expressed, and hydrolyzes the same substrates. These similarities suggest that, like dipeptidyl peptidase IV, this protein may play a role in T-cell activation and immune function. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000138614 | VWA9 | von Willebrand factor A domain containing 9 | 81556 | NA |
| NA | ENSG00000074621 | SLC24A1 | solute carrier family 24 member 1 | 9187 | This gene encodes a member of the potassium-dependent sodium/calcium exchanger protein family. The encoded protein plays an important role in sodium/calcium exchange in retinal rod and cone photoreceptors by mediating the extrusion of one calcium ion and one potassium ion in exchange for four sodium ions. Mutations in this gene may play a role in congenital stationary night blindness. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000174485 | DENND4A | DENN domain containing 4A | 10260 | This gene encodes a DENN domain-containing protein that may function as a guanine nucleotide exchange factor that specifically activates ras-related protein Rab-10. This protein also contains a interferon stimulated response element-binding domain and may be involved in regulating the v-myc avian myelocytomatosis viral (MYC) oncogene. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 8. |
| NA | ENSG00000103769 | RAB11A | RAB11A, member RAS oncogene family | 8766 | The protein encoded by this gene belongs to the Rab family of the small GTPase superfamily. It is associated with both constitutive and regulated secretory pathways, and may be involved in protein transport. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000075131 | TIPIN | TIMELESS interacting protein | 54962 | The protein encoded by this gene is part of the replisome complex, a group of proteins that support DNA replication. It binds TIM, which is involved in circadian rhythm regulation, and aids in protecting cells against DNA damage and stress. Two pseudogenes and two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169032 | MAP2K1 | mitogen-activated protein kinase kinase 1 | 5604 | The protein encoded by this gene is a member of the dual specificity protein kinase family, which acts as a mitogen-activated protein (MAP) kinase kinase. MAP kinases, also known as extracellular signal-regulated kinases (ERKs), act as an integration point for multiple biochemical signals. This protein kinase lies upstream of MAP kinases and stimulates the enzymatic activity of MAP kinases upon wide variety of extra- and intracellular signals. As an essential component of MAP kinase signal transduction pathway, this kinase is involved in many cellular processes such as proliferation, differentiation, transcription regulation and development. |
| NA | ENSG00000174446 | SNAPC5 | small nuclear RNA activating complex polypeptide 5 | 10302 | NA |
| NA | ENSG00000174444 | RPL4 | ribosomal protein L4 | 6124 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L4E family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000174442 | ZWILCH | zwilch kinetochore protein | 55055 | NA |
| NA | ENSG00000188501 | LCTL | lactase like | 197021 | This gene encodes a member of family 1 glycosidases. Glycosidases are enzymes that hydrolyze glycosidic bonds and are classified into families based on primary amino acid sequence. Most members of family 1 have two conserved glutamic acid residues, which are required for enzymatic activity. The mouse ortholog of this protein has been characterized and has a domain structure of an N-terminal signal peptide, glycosidase domain, transmembrane domain, and a short cytoplasmic tail. It lacks one of the conserved glutamic acid residues important for catalysis, and its function remains to be determined (PMID: 12084582). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166949 | SMAD3 | SMAD family member 3 | 4088 | The protein encoded by this gene belongs to the SMAD, a family of proteins similar to the gene products of the Drosophila gene ‘mothers against decapentaplegic’ (Mad) and the C. elegans gene Sma. SMAD proteins are signal transducers and transcriptional modulators that mediate multiple signaling pathways. This protein functions as a transcriptional modulator activated by transforming growth factor-beta and is thought to play a role in the regulation of carcinogenesis. |
| NA | ENSG00000103591 | AAGAB | alpha- and gamma-adaptin binding protein | 79719 | The protein encoded by this gene interacts with the gamma-adaptin and alpha-adaptin subunits of complexes involved in clathrin-coated vesicle trafficking. Mutations in this gene are associated with type I punctate palmoplantar keratoderma. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000103599 | IQCH | IQ motif containing H | 64799 | NA |
| NA | ENSG00000189227 | C15orf61 | chromosome 15 open reading frame 61 | 145853 | NA |
| NA | ENSG00000137764 | MAP2K5 | mitogen-activated protein kinase kinase 5 | 5607 | The protein encoded by this gene is a dual specificity protein kinase that belongs to the MAP kinase kinase family. This kinase specifically interacts with and activates MAPK7/ERK5. This kinase itself can be phosphorylated and activated by MAP3K3/MEKK3, as well as by atypical protein kinase C isoforms (aPKCs). The signal cascade mediated by this kinase is involved in growth factor stimulated cell proliferation and muscle cell differentiation. Three alternatively spliced transcript variants of this gene encoding distinct isoforms have been described. |
| NA | ENSG00000033800 | PIAS1 | protein inhibitor of activated STAT 1 | 8554 | This gene encodes a member of the protein inhibitor of activated STAT (PIAS) family. PIAS proteins function as SUMO E3 ligases and play important roles in many cellular processes by mediating the sumoylation of target proteins. This protein plays a central role as a transcriptional coregulator of numerous cellular pathways includign the STAT1 and nuclear factor kappaB pathways. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000129007 | CALML4 | calmodulin like 4 | 91860 | NA |
| NA | ENSG00000128973 | CLN6 | ceroid-lipofuscinosis, neuronal 6, late infantile, variant | 54982 | This gene is one of eight which have been associated with neuronal ceroid lipofuscinoses (NCL). Also referred to as Batten disease, NCL comprises a class of autosomal recessive, neurodegenerative disorders affecting children. The genes responsible likely encode proteins involved in the degradation of post-translationally modified proteins in lysosomes. The primary defect in NCL disorders is thought to be associated with lysosomal storage function. |
| NA | ENSG00000169018 | FEM1B | fem-1 homolog B | 10116 | This gene encodes an ankyrin repeat protein that belongs to the death receptor-associated family of proteins and plays a role in mediating apoptosis. The encoded protein is also thought to function in the replication stress-induced checkpoint signaling pathway via interaction with checkpoint kinase 1. |
| NA | ENSG00000103647 | CORO2B | coronin 2B | 10391 | NA |
| NA | ENSG00000140350 | ANP32A | acidic nuclear phosphoprotein 32 family member A | 8125 | NA |
| NA | ENSG00000138604 | GLCE | glucuronic acid epimerase | 26035 | Heparan sulfate (HS) is a negatively charged cell surface polysaccharide required for the biologic activities of circulating extracellular ligands. GLCE is responsible for epimerization of D-glucuronic acid (GlcA) to L-iduronic acid (IdoA) of HS, which endows the nascent polysaccharide chain with the ability to bind growth factors and cytokines (Ghiselli and Agrawal, 2005 [PubMed 15853773]). |
| NA | ENSG00000137819 | PAQR5 | progestin and adipoQ receptor family member V | 54852 | NA |
| NA | ENSG00000137807 | KIF23 | kinesin family member 23 | 9493 | The protein encoded by this gene is a member of kinesin-like protein family. This family includes microtubule-dependent molecular motors that transport organelles within cells and move chromosomes during cell division. This protein has been shown to cross-bridge antiparallel microtubules and drive microtubule movement in vitro. Alternate splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000137818 | RPLP1 | ribosomal protein lateral stalk subunit P1 | 6176 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal phosphoprotein that is a component of the 60S subunit. The protein, which is a functional equivalent of the E. coli L7/L12 ribosomal protein, belongs to the L12P family of ribosomal proteins. It plays an important role in the elongation step of protein synthesis. Unlike most ribosomal proteins, which are basic, the encoded protein is acidic. Its C-terminal end is nearly identical to the C-terminal ends of the ribosomal phosphoproteins P0 and P2. The P1 protein can interact with P0 and P2 to form a pentameric complex consisting of P1 and P2 dimers, and a P0 monomer. The protein is located in the cytoplasm. Two alternatively spliced transcript variants that encode different proteins have been observed. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000140332 | TLE3 | transducin like enhancer of split 3 | 7090 | This gene encodes a transcriptional co-repressor protein that belongs to the transducin-like enhancer family of proteins. The members of this family function in the Notch signaling pathway that regulates determination of cell fate during development. Expression of this gene has been associated with a favorable outcome to chemotherapy with taxanes for ovarian carcinoma. Alternate splicing results in multiple transcript variants. Additional alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000137831 | UACA | uveal autoantigen with coiled-coil domains and ankyrin repeats | 55075 | NA |
| NA | ENSG00000166173 | LARP6 | La ribonucleoprotein domain family member 6 | 55323 | NA |
| NA | ENSG00000137821 | LRRC49 | leucine rich repeat containing 49 | 54839 | NA |
| NA | ENSG00000129028 | THAP10 | THAP domain containing 10 | 56906 | This gene encodes a member of a family of proteins sharing an N-terminal Thanatos-associated domain. The Thanatos-associated domain contains a zinc finger signature similar to DNA-binding domains. This gene is part of a bidirectional gene pair on the long arm of chromosome 15 that is regulated by estrogen and may play a role in breast cancer. |
| NA | ENSG00000187720 | THSD4 | thrombospondin type 1 domain containing 4 | 79875 | NA |
| NA | ENSG00000066933 | MYO9A | myosin IXA | 4649 | This gene encodes a member of the myosin superfamily. The protein represents an unconventional myosin; it should not be confused with the conventional non-muscle myosin-9 (MYH9). Unconventional myosins contain the basic domains of conventional myosins and are further distinguished from class members by their tail domains. They function as actin-based molecular motors. Mutations in this gene have been associated with Bardet-Biedl Syndrome. |
| NA | ENSG00000166192 | SENP8 | SUMO/sentrin peptidase family member, NEDD8 specific | 123228 | This gene encodes a cysteine protease that is a member of the sentrin-specific protease family. The encoded protein is involved in processing and deconjugation of the ubiquitin-like protein termed, neural precursor cell expressed developmentally downregulated 8. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000067225 | PKM | pyruvate kinase, muscle | 5315 | This gene encodes a protein involved in glycolysis. The encoded protein is a pyruvate kinase that catalyzes the transfer of a phosphoryl group from phosphoenolpyruvate to ADP, generating ATP and pyruvate. This protein has been shown to interact with thyroid hormone and may mediate cellular metabolic effects induced by thyroid hormones. This protein has been found to bind Opa protein, a bacterial outer membrane protein involved in gonococcal adherence to and invasion of human cells, suggesting a role of this protein in bacterial pathogenesis. Several alternatively spliced transcript variants encoding a few distinct isoforms have been reported. |
| NA | ENSG00000137817 | PARP6 | poly(ADP-ribose) polymerase family member 6 | 56965 | NA |
| NA | ENSG00000166233 | ARIH1 | ariadne RBR E3 ubiquitin protein ligase 1 | 25820 | NA |
| NA | ENSG00000067141 | NEO1 | neogenin 1 | 4756 | This gene encodes a cell surface protein that is a member of the immunoglobulin superfamily. The encoded protein consists of four N-terminal immunoglobulin-like domains, six fibronectin type III domains, a transmembrane domain and a C-terminal internal domain that shares homology with the tumor suppressor candidate gene DCC. This protein may be involved in cell growth and differentiation and in cell-cell adhesion. Defects in this gene are associated with cell proliferation in certain cancers. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000138622 | HCN4 | hyperpolarization activated cyclic nucleotide gated potassium channel 4 | 10021 | This gene encodes a member of the hyperpolarization-activated cyclic nucleotide-gated potassium channels. The encoded protein shows slow kinetics of activation and inactivation, and is necessary for the cardiac pacemaking process. This channel may also mediate responses to sour stimuli. Mutations in this gene have been linked to sick sinus syndrome 2, also known as atrial fibrillation with bradyarrhythmia or familial sinus bradycardia. Two pseudogenes have been identified on chromosome 15. |
| NA | ENSG00000156642 | NPTN | neuroplastin | 27020 | This gene encodes a type I transmembrane protein belonging to the Ig superfamily. The protein is believed to be involved in cell-cell interactions or cell-substrate interactions. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000103855 | CD276 | CD276 molecule | 80381 | The protein encoded by this gene belongs to the immunoglobulin superfamily, and thought to participate in the regulation of T-cell-mediated immune response. Studies show that while the transcript of this gene is ubiquitously expressed in normal tissues and solid tumors, the protein is preferentially expressed only in tumor tissues. Additionally, it was observed that the 3’ UTR of this transcript contains a target site for miR29 microRNA, and there is an inverse correlation between the expression of this protein and miR29 levels, suggesting regulation of expression of this gene product by miR29. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000140464 | PML | promyelocytic leukemia | 5371 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. This phosphoprotein localizes to nuclear bodies where it functions as a transcription factor and tumor suppressor. Its expression is cell-cycle related and it regulates the p53 response to oncogenic signals. The gene is often involved in the translocation with the retinoic acid receptor alpha gene associated with acute promyelocytic leukemia (APL). Extensive alternative splicing of this gene results in several variations of the protein’s central and C-terminal regions; all variants encode the same N-terminus. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000137868 | STRA6 | stimulated by retinoic acid 6 | 64220 | The protein encoded by this gene is a membrane protein involved in the metabolism of retinol. The encoded protein acts as a receptor for retinol/retinol binding protein complexes. This protein removes the retinol from the complex and transports it across the cell membrane. Defects in this gene are a cause of syndromic microphthalmia type 9 (MCOPS9). Several transcript variants encoding a few different isoforms have been found for this gene. |
| NA | ENSG00000138623 | SEMA7A | semaphorin 7A (John Milton Hagen blood group) | 8482 | This gene encodes a member of the semaphorin family of proteins. The encoded preproprotein is proteolytically processed to generate the mature glycosylphosphatidylinositol (GPI)-anchored membrane glycoprotein. The encoded protein is found on activated lymphocytes and erythrocytes and may be involved in immunomodulatory and neuronal processes. The encoded protein carries the John Milton Hagen (JMH) blood group antigens. Mutations in this gene may be associated with reduced bone mineral density (BMD). Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000138629 | UBL7 | ubiquitin like 7 | 84993 | NA |
| NA | ENSG00000179361 | ARID3B | AT-rich interaction domain 3B | 10620 | This gene encodes a member of the ARID (AT-rich interaction domain) family of DNA-binding proteins. The encoded protein is homologous with two proteins that bind to the retinoblastoma gene product, and also with the mouse Bright and Drosophila dead ringer proteins. A pseudogene on chromosome 1p31 exists for this gene. Members of the ARID family have roles in embryonic patterning, cell lineage gene regulation, cell cycle control, transcriptional regulation and possibly in chromatin structure modification. |
| NA | ENSG00000179335 | CLK3 | CDC like kinase 3 | 1198 | This gene encodes a protein belonging to the serine/threonine type protein kinase family. This protein is a nuclear dual-specificity kinase that regulates the intranuclear distribution of the serine/arginine-rich (SR) family of splicing factors. Two transcript variants encoding different isoforms have been found for this gene. Related pseudogenes are located on chromosomes 1 and 9. |
| NA | ENSG00000179151 | EDC3 | enhancer of mRNA decapping 3 | 80153 | EDC3 is associated with an mRNA-decapping complex required for removal of the 5-prime cap from mRNA prior to its degradation from the 5-prime end (Fenger-Gron et al., 2005 [PubMed 16364915]). |
| NA | ENSG00000103653 | CSK | c-src tyrosine kinase | 1445 | NA |
| NA | ENSG00000140474 | ULK3 | unc-51 like kinase 3 | 25989 | NA |
| NA | ENSG00000140497 | SCAMP2 | secretory carrier membrane protein 2 | 10066 | This gene product belongs to the SCAMP family of proteins which are secretory carrier membrane proteins. They function as carriers to the cell surface in post-golgi recycling pathways. Different family members are highly related products of distinct genes, and are usually expressed together. These findings suggest that the SCAMPs may function at the same site during vesicular transport rather than in separate pathways. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000178802 | MPI | mannose phosphate isomerase | 4351 | Phosphomannose isomerase catalyzes the interconversion of fructose-6-phosphate and mannose-6-phosphate and plays a critical role in maintaining the supply of D-mannose derivatives, which are required for most glycosylation reactions. Mutations in the MPI gene were found in patients with carbohydrate-deficient glycoprotein syndrome, type Ib. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000178761 | FAM219B | family with sequence similarity 219 member B | 57184 | NA |
| NA | ENSG00000178741 | COX5A | cytochrome c oxidase subunit 5A | 9377 | Cytochrome c oxidase (COX) is the terminal enzyme of the mitochondrial respiratory chain. It is a multi-subunit enzyme complex that couples the transfer of electrons from cytochrome c to molecular oxygen and contributes to a proton electrochemical gradient across the inner mitochondrial membrane. The complex consists of 13 mitochondrial- and nuclear-encoded subunits. The mitochondrially-encoded subunits perform the electron transfer of proton pumping activities. The functions of the nuclear-encoded subunits are unknown but they may play a role in the regulation and assembly of the complex. This gene encodes the nuclear-encoded subunit Va of the human mitochondrial respiratory chain enzyme. A pseudogene COX5AP1 has been found in chromosome 14q22. |
| NA | ENSG00000178718 | RPP25 | ribonuclease P/MRP 25kDa subunit | 54913 | NA |
| NA | ENSG00000198794 | SCAMP5 | secretory carrier membrane protein 5 | 192683 | NA |
| NA | ENSG00000138621 | PPCDC | phosphopantothenoylcysteine decarboxylase | 60490 | Biosynthesis of coenzyme A (CoA) from pantothenic acid (vitamin B5) is an essential universal pathway in prokaryotes and eukaryotes. PPCDC (EC 4.1.1.36), one of the last enzymes in this pathway, converts phosphopantothenoylcysteine to 4-prime-phosphopantetheine (Daugherty et al., 2002 [PubMed 11923312]). |
| NA | ENSG00000167173 | C15orf39 | chromosome 15 open reading frame 39 | 56905 | NA |
| NA | ENSG00000140365 | COMMD4 | COMM domain containing 4 | 54939 | NA |
| NA | ENSG00000140400 | MAN2C1 | mannosidase alpha class 2C member 1 | 4123 | NA |
| NA | ENSG00000169375 | SIN3A | SIN3 transcription regulator family member A | 25942 | The protein encoded by this gene is a transcriptional regulatory protein. It contains paired amphipathic helix (PAH) domains, which are important for protein-protein interactions and may mediate repression by the Mad-Max complex. |
| NA | ENSG00000177971 | IMP3 | IMP3, U3 small nucleolar ribonucleoprotein | 55272 | This gene encodes the human homolog of the yeast Imp3 protein. The protein localizes to the nucleoli and interacts with the U3 snoRNP complex. The protein contains an S4 domain. |
| NA | ENSG00000173548 | SNX33 | sorting nexin 33 | 257364 | The protein encoded by this gene is involved in cytoskeletal reorganization, vesicle trafficking, endocytosis, and mitosis. The encoded protein is essential for the creation of the cleavage furrow during mitosis and for completion of mitosis. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000140367 | UBE2Q2 | ubiquitin conjugating enzyme E2 Q2 | 92912 | NA |
| NA | ENSG00000167196 | FBXO22 | F-box protein 22 | 26263 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class and, as a transcriptional target of the tumor protein p53, is thought to be involved in degradation of specific proteins in response to p53 induction. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169758 | TMEM266 | transmembrane protein 266 | 123591 | NA |
| NA | ENSG00000140386 | SCAPER | S-phase cyclin A-associated protein in the ER | 49855 | NA |
| NA | ENSG00000117906 | RCN2 | reticulocalbin 2 | 5955 | The protein encoded by this gene is a calcium-binding protein located in the lumen of the ER. The protein contains six conserved regions with similarity to a high affinity Ca(+2)-binding motif, the EF-hand. This gene maps to the same region as type 4 Bardet-Biedl syndrome, suggesting a possible causative role for this gene in the disorder. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000140391 | TSPAN3 | tetraspanin 3 | 10099 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. The use of alternate polyadenylation sites has been found for this gene. Multiple alternative transcripts encoding different isoforms have been described. |
| NA | ENSG00000169783 | LINGO1 | leucine rich repeat and Ig domain containing 1 | 84894 | NA |
| NA | ENSG00000167202 | TBC1D2B | TBC1 domain family member 2B | 23102 | NA |
| NA | ENSG00000136425 | CIB2 | calcium and integrin binding family member 2 | 10518 | The protein encoded by this gene is similar to that of KIP/CIB, calcineurin B, and calmodulin. The encoded protein is a calcium-binding regulatory protein that interacts with DNA-dependent protein kinase catalytic subunits (DNA-PKcs), and it is involved in photoreceptor cell maintenance. Mutations in this gene cause deafness, autosomal recessive, 48 (DFNB48), and also Usher syndrome 1J (USH1J). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000103740 | ACSBG1 | acyl-CoA synthetase bubblegum family member 1 | 23205 | The protein encoded by this gene possesses long-chain acyl-CoA synthetase activity. It is thought to play a central role in brain very long-chain fatty acids metabolism and myelinogenesis. |
| NA | ENSG00000140403 | DNAJA4 | DnaJ heat shock protein family (Hsp40) member A4 | 55466 | NA |
| NA | ENSG00000166426 | CRABP1 | cellular retinoic acid binding protein 1 | 1381 | This gene encodes a specific binding protein for a vitamin A family member and is thought to play an important role in retinoic acid-mediated differentiation and proliferation processes. It is structurally similar to the cellular retinol-binding proteins, but binds only retinoic acid at specific sites within the nucleus, which may contribute to vitamin A-directed differentiation in epithelial tissue. |
| NA | ENSG00000136381 | IREB2 | iron responsive element binding protein 2 | 3658 | NA |
| NA | ENSG00000169684 | CHRNA5 | cholinergic receptor nicotinic alpha 5 subunit | 1138 | The protein encoded by this gene is a nicotinic acetylcholine receptor subunit and a member of a superfamily of ligand-gated ion channels that mediate fast signal transmission at synapses. These receptors are thought to be heteropentamers composed of separate but similar subunits. Defects in this gene have been linked to susceptibility to lung cancer type 2 (LNCR2). |
| NA | ENSG00000080644 | CHRNA3 | cholinergic receptor nicotinic alpha 3 subunit | 1136 | This locus encodes a member of the nicotinic acetylcholine receptor family of proteins. Members of this family of proteins form pentameric complexes comprised of both alpha and beta subunits. This locus encodes an alpha-type subunit, as it contains characteristic adjacent cysteine residues. The encoded protein is a ligand-gated ion channel that likely plays a role in neurotransmission. Polymorphisms in this gene have been associated with an increased risk of smoking initiation and an increased susceptibility to lung cancer. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000136378 | ADAMTS7 | ADAM metallopeptidase with thrombospondin type 1 motif 7 | 11173 | The protein encoded by this gene is a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) family. Members of this family share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. The encoded preproprotein is proteolytically processed to generate the mature enzyme. This enzyme contains two C-terminal TS motifs and may regulate vascular smooth muscle cell (VSMC) migration. Mutations in this gene may be associated with susceptibility to coronary artery disease. |
| NA | ENSG00000185787 | MORF4L1 | mortality factor 4 like 1 | 10933 | NA |
| NA | ENSG00000103811 | CTSH | cathepsin H | 1512 | The protein encoded by this gene is a lysosomal cysteine proteinase important in the overall degradation of lysosomal proteins. It is composed of a dimer of disulfide-linked heavy and light chains, both produced from a single protein precursor. The encoded protein, which belongs to the peptidase C1 protein family, can act both as an aminopeptidase and as an endopeptidase. Increased expression of this gene has been correlated with malignant progression of prostate tumors. Alternate splicing of this gene results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000166557 | TMED3 | transmembrane p24 trafficking protein 3 | 23423 | NA |
| NA | ENSG00000136371 | MTHFS | 5,10-methenyltetrahydrofolate synthetase (5-formyltetrahydrofolate cyclo-ligase) | 10588 | The protein encoded by this gene is an enzyme that catalyzes the conversion of 5-formyltetrahydrofolate to 5,10-methenyltetrahydrofolate, a precursor of reduced folates involved in 1-carbon metabolism. An increased activity of the encoded protein can result in an increased folate turnover rate and folate depletion. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000180953 | ST20 | suppressor of tumorigenicity 20 | 400410 | NA |
| NA | ENSG00000103876 | FAH | fumarylacetoacetate hydrolase (fumarylacetoacetase) | 2184 | This gene encodes the last enzyme in the tyrosine catabolism pathway. FAH deficiency is associated with Type 1 hereditary tyrosinemia (HT). |
| NA | ENSG00000172379 | ARNT2 | aryl hydrocarbon receptor nuclear translocator 2 | 9915 | This gene encodes a member of the basic-helix-loop-helix-Per-Arnt-Sim (bHLH-PAS) superfamily of transcription factors. The encoded protein acts as a partner for several sensor proteins of the bHLH-PAS family, forming heterodimers with the sensor proteins that bind regulatory DNA sequences in genes responsive to developmental and environmental stimuli. Under hypoxic conditions, the encoded protein complexes with hypoxia-inducible factor 1alpha in the nucleus and this complex binds to hypoxia-responsive elements in enhancers and promoters of oxygen-responsive genes. A highly similar protein in mouse forms functional complexes with both aryl hydrocarbon receptors and Single-minded proteins, suggesting additional roles for the encoded protein in the metabolism of xenobiotic compounds and the regulation of neurogenesis, respectively. |
| NA | ENSG00000136379 | ABHD17C | abhydrolase domain containing 17C | 58489 | NA |
| NA | ENSG00000117899 | MESDC2 | mesoderm development candidate 2 | 23184 | NA |
| NA | ENSG00000140406 | MESDC1 | mesoderm development candidate 1 | 59274 | NA |
| NA | ENSG00000172345 | STARD5 | StAR related lipid transfer domain containing 5 | 80765 | Proteins containing a steroidogenic acute regulatory-related lipid transfer (START) domain are often involved in the trafficking of lipids and cholesterol between diverse intracellular membranes. This gene is a member of the StarD subfamily that encodes START-related lipid transfer proteins. The protein encoded by this gene is a cholesterol transporter and is also able to bind and transport other sterol-derived molecules related to the cholesterol/bile acid biosynthetic pathways such as 25-hydroxycholesterol. Its expression is upregulated during endoplasmic reticulum (ER) stress. The protein is thought to act as a cytosolic sterol transporter that moves cholesterol between intracellular membranes such as from the cytoplasm to the ER and from the ER to the Golgi apparatus. Alternative splicing of this gene produces multiple transcript variants. |
| NA | ENSG00000183496 | MEX3B | mex-3 RNA binding family member B | 84206 | This gene encodes an RNA-binding phosphoprotein that is part of the MEX3 (muscle excess 3) family of translational regulators. The encoded protein contains N-terminal nuclear export and nuclear localization signals and is exported from the cytoplasm to the nucleus. The protein binds to RNA via two KH domains and also colocalizes with MEX3A, Dcp1A decapping factor and Argonaute proteins within P (processing) bodies. |
| NA | ENSG00000140598 | EFL1 | elongation factor like GTPase 1 | 79631 | NA |
| NA | ENSG00000188659 | SAXO2 | stabilizer of axonemal microtubules 2 | 283726 | NA |
| NA | ENSG00000197978 | GOLGA6L9 | golgin A6 family-like 9 | 440295 | NA |
| TRUE | ENSG00000184779 | NA | NA | NA | NA |
| TRUE | ENSG00000196648 | NA | NA | NA | NA |
| NA | ENSG00000182774 | RPS17 | ribosomal protein S17 | 6218 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of four RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S17E family of ribosomal proteins and is located in the cytoplasm. Mutations in this gene cause Diamond-Blackfan anemia 4. Alternative splicing of this gene results in multiple transcript variants. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000103723 | AP3B2 | adaptor related protein complex 3 beta 2 subunit | 8120 | Adaptor protein-3 (AP3) is a heterotetrameric vesicle-coat protein complex. Some AP3 subunits are ubiquitously expressed, whereas others are expressed exclusively in neurons. The neuron-specific AP3 complex, which includes AP3B2, is thought to serve neuron-specific functions such as neurotransmitter release (Grabner et al., 2006 [PubMed 16788073]). |
| NA | ENSG00000156232 | WHAMM | WAS protein homolog associated with actin, golgi membranes and microtubules | 123720 | This gene encodes a protein that plays a role in actin nucleation, Golgi membrane association and microtubule binding. The encoded protein is a nucleation-promoting factor that regulates the Actin-related protein 2/3 complex. The activated complex initiates growth of new actin filaments by binding to existing actin filaments. The encoded protein also functions in regulation of transport from the endoplasmic reticulum to the Golgi complex and in maintenance of the Golgi complex near the centrosome. Four pseudogenes of this gene are present on the same arm of chromosome 15 as this gene. |
| NA | ENSG00000103942 | HOMER2 | homer scaffolding protein 2 | 9455 | This gene encodes a member of the homer family of dendritic proteins. Members of this family regulate group 1 metabotrophic glutamate receptor function. The encoded protein is a postsynaptic density scaffolding protein. Alternative splicing results in multiple transcript variants. Two related pseudogenes have been identified on chromosome 14. |
| NA | ENSG00000169612 | FAM103A1 | family with sequence similarity 103 member A1 | 83640 | NA |
| NA | ENSG00000169609 | C15orf40 | chromosome 15 open reading frame 40 | 123207 | NA |
| NA | ENSG00000064726 | BTBD1 | BTB domain containing 1 | 53339 | The C-terminus of the protein encoded by this gene binds topoisomerase I. The N-terminus contains a proline-rich region and a BTB/POZ domain (broad-complex, Tramtrack and bric a brac/Pox virus and Zinc finger), both of which are typically involved in protein-protein interactions. Subcellularly, the protein localizes to cytoplasmic bodies. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000140600 | SH3GL3 | SH3-domain GRB2-like 3 | 6457 | NA |
| NA | ENSG00000176371 | ZSCAN2 | zinc finger and SCAN domain containing 2 | 54993 | The protein encoded by this gene contains several copies of zinc finger motif, which is commonly found in transcriptional regulatory proteins. Studies in mice show that this gene is expressed during embryonic development, and specifically in the testis in adult mice, suggesting that it may play a role in regulating genes in germ cells. Alternative splicing of this gene results in several transcript variants encoding different isoforms. |
| NA | ENSG00000177082 | WDR73 | WD repeat domain 73 | 84942 | The protein encoded by this gene is thought to contain multiple WD40 repeats. WD40 repeats are motifs that contain 40-60 amino acids, and usually end with Trp-Asp (WD). This protein is found in the cytoplasm during interphase, but accumulates at the spindle poles and astral microtubules during mitosis. Reduced expression of this gene results in abnormalities in the size and morphology of the nucleus. Mutations in this gene have been associated with Galloway-Mowat syndrome PMID: 25466283), which is a rare autosomal recessive disorder that affects both the central nervous system and kidneys. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197696 | NMB | neuromedin B | 4828 | This gene encodes a member of the bombesin-like family of neuropeptides, which negatively regulate eating behavior. The encoded protein may regulate colonic smooth muscle contraction through binding to its cognate receptor, the neuromedin B receptor (NMBR). Polymorphisms of this gene may be associated with hunger, weight gain and obesity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000140612 | SEC11A | SEC11 homolog A, signal peptidase complex subunit | 23478 | This gene encodes a member of the peptidase S26B family. The encoded protein is an 18kDa subunit of the signal peptidase complex and has been linked to cell migration and invasion, gastric cancer and lymph node metastasis. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 8. |
| NA | ENSG00000166716 | ZNF592 | zinc finger protein 592 | 9640 | This gene is thought to play a role in a complex developmental pathway and the regulation of genes involved in cerebellar development. Mutations in this gene have been associated with autosomal recessive spinocerebellar ataxia. |
| NA | ENSG00000136383 | ALPK3 | alpha kinase 3 | 57538 | NA |
| NA | ENSG00000073417 | PDE8A | phosphodiesterase 8A | 5151 | The protein encoded by this gene belongs to the cyclic nucleotide phosphodiesterase (PDE) family, and PDE8 subfamily. This PDE hydrolyzes the second messenger, cAMP, which is a regulator and mediator of a number of cellular responses to extracellular signals. Thus, by regulating the cellular concentration of cAMP, this protein plays a key role in many important physiological processes. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000170776 | AKAP13 | A-kinase anchoring protein 13 | 11214 | The A-kinase anchor proteins (AKAPs) are a group of structurally diverse proteins which have the common function of binding to the regulatory subunit of protein kinase A (PKA) and confining the holoenzyme to discrete locations within the cell. This gene encodes a member of the AKAP family. Alternative splicing of this gene results in multiple transcript variants encoding different isoforms containing c-terminal dbl oncogene homology (DH) and pleckstrin homology (PH) domains. The DH domain is associated with guanine nucleotide exchange activation for the Rho/Rac family of small GTP binding proteins, resulting in the conversion of the inactive GTPase to the active form capable of transducing signals. The PH domain has multiple functions. Therefore, these isoforms function as scaffolding proteins to coordinate a Rho signaling pathway, function as protein kinase A-anchoring proteins and, in addition, enhance ligand-dependent activity of estrogen receptors alpha and beta. |
| NA | ENSG00000183655 | KLHL25 | kelch like family member 25 | 64410 | NA |
| NA | ENSG00000140538 | NTRK3 | neurotrophic tyrosine kinase, receptor, type 3 | 4916 | This gene encodes a member of the neurotrophic tyrosine receptor kinase (NTRK) family. This kinase is a membrane-bound receptor that, upon neurotrophin binding, phosphorylates itself and members of the MAPK pathway. Signalling through this kinase leads to cell differentiation and may play a role in the development of proprioceptive neurons that sense body position. Mutations in this gene have been associated with medulloblastomas, secretory breast carcinomas and other cancers. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000259494 | MRPL46 | mitochondrial ribosomal protein L46 | 26589 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000181991 | MRPS11 | mitochondrial ribosomal protein S11 | 64963 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that contains a high level of sequence similarity with ribosomal protein S11P family members. A pseudogene corresponding to this gene is found on chromosome 20. Sequence analysis identified two transcript variants that encode different protein isoforms. |
| NA | ENSG00000140543 | DET1 | de-etiolated homolog 1 (Arabidopsis) | 55070 | NA |
| NA | ENSG00000181026 | AEN | apoptosis enhancing nuclease | 64782 | NA |
| NA | ENSG00000140511 | HAPLN3 | hyaluronan and proteoglycan link protein 3 | 145864 | This gene belongs to the hyaluronan and proteoglycan binding link protein gene family. The protein encoded by this gene may function in hyaluronic acid binding and cell adhesion. |
| NA | ENSG00000140545 | MFGE8 | milk fat globule-EGF factor 8 protein | 4240 | This gene encodes a preproprotein that is proteolytically processed to form multiple protein products. The major encoded protein product, lactadherin, is a membrane glycoprotein that promotes phagocytosis of apoptotic cells. This protein has also been implicated in wound healing, autoimmune disease, and cancer. Lactadherin can be further processed to form a smaller cleavage product, medin, which comprises the major protein component of aortic medial amyloid (AMA). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000140526 | ABHD2 | abhydrolase domain containing 2 | 11057 | This gene encodes a protein containing an alpha/beta hydrolase fold, which is a catalytic domain found in a very wide range of enzymes. The function of this protein has not been determined. Alternative splicing of this gene results in two transcript variants encoding the same protein. |
| NA | ENSG00000140521 | POLG | polymerase (DNA) gamma, catalytic subunit | 5428 | Mitochondrial DNA polymerase is heterotrimeric, consisting of a homodimer of accessory subunits plus a catalytic subunit. The protein encoded by this gene is the catalytic subunit of mitochondrial DNA polymerase. The encoded protein contains a polyglutamine tract near its N-terminus that may be polymorphic. Defects in this gene are a cause of progressive external ophthalmoplegia with mitochondrial DNA deletions 1 (PEOA1), sensory ataxic neuropathy dysarthria and ophthalmoparesis (SANDO), Alpers-Huttenlocher syndrome (AHS), and mitochondrial neurogastrointestinal encephalopathy syndrome (MNGIE). Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000140534 | TICRR | TOPBP1 interacting checkpoint and replication regulator | 90381 | Treslin is involved in the initiation of DNA replication (Kumagai et al., 2010 [PubMed 20116089]). |
| NA | ENSG00000166813 | KIF7 | kinesin family member 7 | 374654 | This gene encodes a cilia-associated protein belonging to the kinesin family. This protein plays a role in the sonic hedgehog (SHH) signaling pathway through the regulation of GLI transcription factors. It functions as a negative regulator of the SHH pathway by preventing inappropriate activation of GLI2 in the absence of ligand, and as a positive regulator by preventing the processing of GLI3 into its repressor form. Mutations in this gene have been associated with various ciliopathies. |
| NA | ENSG00000166821 | PEX11A | peroxisomal biogenesis factor 11 alpha | 8800 | This gene is a member of the PEX11 family, which is composed of membrane elongation factors involved in regulation of peroxisome maintenance and proliferation. This gene product interacts with peroxisomal membrane protein 19 and may respond to outside stimuli to increase peroxisome abundance. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000157823 | AP3S2 | adaptor related protein complex 3 sigma 2 subunit | 10239 | NA |
| NA | ENSG00000140548 | ZNF710 | zinc finger protein 710 | 374655 | NA |
| NA | ENSG00000182054 | IDH2 | isocitrate dehydrogenase 2 (NADP+), mitochondrial | 3418 | Isocitrate dehydrogenases catalyze the oxidative decarboxylation of isocitrate to 2-oxoglutarate. These enzymes belong to two distinct subclasses, one of which utilizes NAD(+) as the electron acceptor and the other NADP(+). Five isocitrate dehydrogenases have been reported: three NAD(+)-dependent isocitrate dehydrogenases, which localize to the mitochondrial matrix, and two NADP(+)-dependent isocitrate dehydrogenases, one of which is mitochondrial and the other predominantly cytosolic. Each NADP(+)-dependent isozyme is a homodimer. The protein encoded by this gene is the NADP(+)-dependent isocitrate dehydrogenase found in the mitochondria. It plays a role in intermediary metabolism and energy production. This protein may tightly associate or interact with the pyruvate dehydrogenase complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000185033 | SEMA4B | semaphorin 4B | 10509 | NA |
| NA | ENSG00000182768 | NGRN | neugrin, neurite outgrowth associated | 51335 | NA |
| NA | ENSG00000140575 | IQGAP1 | IQ motif containing GTPase activating protein 1 | 8826 | This gene encodes a member of the IQGAP family. The protein contains four IQ domains, one calponin homology domain, one Ras-GAP domain and one WW domain. It interacts with components of the cytoskeleton, with cell adhesion molecules, and with several signaling molecules to regulate cell morphology and motility. Expression of the protein is upregulated by gene amplification in two gastric cancer cell lines. |
| NA | ENSG00000140577 | CRTC3 | CREB regulated transcription coactivator 3 | 64784 | This gene is a member of the CREB regulated transcription coactivator gene family. This family regulates CREB-dependent gene transcription in a phosphorylation-independent manner and may be selective for cAMP-responsive genes. The protein encoded by this gene may induce mitochondrial biogenesis and attenuate catecholamine signaling in adipose tissue. A translocation event between this gene and Notch coactivator mastermind-like gene 2, which results in a fusion protein, has been reported in mucoepidermoid carcinomas. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000197299 | BLM | Bloom syndrome RecQ like helicase | 641 | The Bloom syndrome gene product is related to the RecQ subset of DExH box-containing DNA helicases and has both DNA-stimulated ATPase and ATP-dependent DNA helicase activities. Mutations causing Bloom syndrome delete or alter helicase motifs and may disable the 3’-5’ helicase activity. The normal protein may act to suppress inappropriate recombination. |
| NA | ENSG00000140564 | FURIN | furin, paired basic amino acid cleaving enzyme | 5045 | This gene encodes a member of the subtilisin-like proprotein convertase family, which includes proteases that process protein and peptide precursors trafficking through regulated or constitutive branches of the secretory pathway. It encodes a type 1 membrane bound protease that is expressed in many tissues, including neuroendocrine, liver, gut, and brain. The encoded protein undergoes an initial autocatalytic processing event in the ER and then sorts to the trans-Golgi network through endosomes where a second autocatalytic event takes place and the catalytic activity is acquired. The product of this gene is one of the seven basic amino acid-specific members which cleave their substrates at single or paired basic residues. Some of its substrates include proparathyroid hormone, transforming growth factor beta 1 precursor, proalbumin, pro-beta-secretase, membrane type-1 matrix metalloproteinase, beta subunit of pro-nerve growth factor and von Willebrand factor. It is also thought to be one of the proteases responsible for the activation of HIV envelope glycoproteins gp160 and gp140 and may play a role in tumor progression. This gene is located in close proximity to family member proprotein convertase subtilisin/kexin type 6 and upstream of the FES oncogene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000182511 | FES | FES proto-oncogene, tyrosine kinase | 2242 | This gene encodes the human cellular counterpart of a feline sarcoma retrovirus protein with transforming capabilities. The gene product has tyrosine-specific protein kinase activity and that activity is required for maintenance of cellular transformation. Its chromosomal location has linked it to a specific translocation event identified in patients with acute promyelocytic leukemia but it is also involved in normal hematopoiesis as well as growth factor and cytokine receptor signaling. Alternative splicing results in multiple variants encoding different isoforms. |
| NA | ENSG00000196547 | MAN2A2 | mannosidase alpha class 2A member 2 | 4122 | NA |
| NA | ENSG00000140553 | UNC45A | unc-45 myosin chaperone A | 55898 | UNC45A plays a role in cell proliferation and myoblast fusion, binds progesterone receptor (PGR; MIM 607311) and HSP90 (HSPCA; MIM 140571), and acts as a regulator of the progesterone receptor chaperoning pathway (Price et al., 2002 [PubMed 12356907]; Chadli et al., 2006 [PubMed 16478993]). |
| NA | ENSG00000184508 | HDDC3 | HD domain containing 3 | 374659 | NA |
| NA | ENSG00000166965 | RCCD1 | RCC1 domain containing 1 | 91433 | NA |
| NA | ENSG00000184056 | VPS33B | VPS33B, late endosome and lysosome associated | 26276 | Vesicle mediated protein sorting plays an important role in segregation of intracellular molecules into distinct organelles. Genetic studies in yeast have identified more than 40 vacuolar protein sorting (VPS) genes involved in vesicle transport to vacuoles. This gene is a member of the Sec-1 domain family, and encodes the human ortholog of rat Vps33b which is homologous to the yeast class C Vps33 protein. The mammalian class C vacuolar protein sorting proteins are predominantly associated with late endosomes/lysosomes, and like their yeast counterparts, may mediate vesicle trafficking steps in the endosome/lysosome pathway. Mutations in this gene are associated with arthrogryposis-renal dysfunction-cholestasis syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000176463 | SLCO3A1 | solute carrier organic anion transporter family member 3A1 | 28232 | NA |
| NA | ENSG00000185442 | FAM174B | family with sequence similarity 174 member B | 400451 | NA |
| NA | ENSG00000182253 | SYNM | synemin | 23336 | The protein encoded by this gene is an intermediate filament (IF) family member. IF proteins are cytoskeletal proteins that confer resistance to mechanical stress and are encoded by a dispersed multigene family. This protein has been found to form a linkage between desmin, which is a subunit of the IF network, and the extracellular matrix, and provides an important structural support in muscle. Two alternatively spliced variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000103852 | TTC23 | tetratricopeptide repeat domain 23 | 64927 | NA |
| NA | ENSG00000168904 | LRRC28 | leucine rich repeat containing 28 | 123355 | NA |
| NA | ENSG00000068305 | MEF2A | myocyte enhancer factor 2A | 4205 | The protein encoded by this gene is a DNA-binding transcription factor that activates many muscle-specific, growth factor-induced, and stress-induced genes. The encoded protein can act as a homodimer or as a heterodimer and is involved in several cellular processes, including muscle development, neuronal differentiation, cell growth control, and apoptosis. Defects in this gene could be a cause of autosomal dominant coronary artery disease 1 with myocardial infarction (ADCAD1). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183060 | LYSMD4 | LysM domain containing 4 | 145748 | NA |
| NA | ENSG00000140471 | LINS1 | lines homolog 1 | 55180 | The Drosophila segment polarity gene lin encodes a protein, lines, which plays important roles in development of the epidermis and hindgut. This gene encodes a protein containing a lines-like domain. This gene is located on chromosome 15 and clustered with the gene encoding ankyrin repeat and SOCS box-containing protein 7. |
| NA | ENSG00000183475 | ASB7 | ankyrin repeat and SOCS box containing 7 | 140460 | The protein encoded by this gene belongs to a family of ankyrin repeat proteins that, along with four other protein families, contains a C-terminal SOCS box motif. Growing evidence suggests that the SOCS box acts as a bridge between specific substrate-binding domains and the more generic proteins that comprise a large family of E3 ubiquitin protein ligases. In this way, SOCS box containing proteins may regulate protein turnover by targeting proteins for polyubiquination and, therefore, for proteasome-mediated degradation. Two alternative transcripts encoding different isoforms have been described. |
| NA | ENSG00000131873 | CHSY1 | chondroitin sulfate synthase 1 | 22856 | This gene encodes a member of the chondroitin N-acetylgalactosaminyltransferase family. These enzymes possess dual glucuronyltransferase and galactosaminyltransferase activity and play critical roles in the biosynthesis of chondroitin sulfate, a glycosaminoglycan involved in many biological processes including cell proliferation and morphogenesis. Decreased expression of this gene may play a role in colorectal cancer, and mutations in this gene are a cause of temtamy preaxial brachydactyly syndrome. |
| NA | ENSG00000131871 | VIMP | VCP interacting membrane selenoprotein | 55829 | This gene encodes a member of the selenoprotein family, characterized by a selenocysteine (Sec) residue at the active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. Studies suggest that this protein may regulate cytokine production, and thus play a key role in the control of the inflammatory response. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000131876 | SNRPA1 | small nuclear ribonucleoprotein polypeptide A’ | 6627 | NA |
| NA | ENSG00000184277 | TM2D3 | TM2 domain containing 3 | 80213 | The protein encoded by this gene contains a structural module related to that of the seven transmembrane domain G protein-coupled receptor superfamily. This protein has sequence and structural similarities to the beta-amyloid binding protein (BBP), but, unlike BBP, it does not regulate a response to beta-amyloid peptide. This protein may have regulatory roles in cell death or proliferation signal cascades. Several alternatively spliced transcript variants of this gene are described but the full length nature of some variants has not been determined. Multiple polyadenylation sites have been found in this gene. |
| NA | ENSG00000185418 | TARSL2 | threonyl-tRNA synthetase-like 2 | 123283 | NA |
| NA | ENSG00000234769 | WASH4P | WAS protein family homolog 4 pseudogene | ENSG00000234769 | NA |
| NA | ENSG00000161980 | POLR3K | polymerase (RNA) III subunit K | 51728 | This gene encodes a small essential subunit of RNA polymerase III, the polymerase responsible for synthesizing transfer and small ribosomal RNAs in eukaryotes. The carboxy-terminal domain of this subunit shares a high degree of sequence similarity to the carboxy-terminal domain of an RNA polymerase II elongation factor. This similarity in sequence is supported by functional studies showing that this subunit is required for proper pausing and termination during transcription. Pseudogenes of this gene are found on chromosomes 13 and 17. |
| NA | ENSG00000161981 | SNRNP25 | small nuclear ribonucleoprotein U11/U12 subunit 25 | 79622 | Two types of spliceosomes catalyze splicing of pre-mRNAs. The major U2-type spliceosome is found in all eukaryotes and removes U2-type introns, which represent more than 99% of pre-mRNA introns. The minor U12-type spliceosome is found in some eukaryotes and removes U12-type introns, which are rare and have distinct splice consensus signals. The U12-type spliceosome consists of several small nuclear RNAs and associated proteins. This gene encodes a 25K protein that is a component of the U12-type spliceosome. |
| NA | ENSG00000007384 | RHBDF1 | rhomboid 5 homolog 1 (Drosophila) | 64285 | NA |
| NA | ENSG00000103152 | MPG | N-methylpurine DNA glycosylase | 4350 | NA |
| NA | ENSG00000103148 | NPRL3 | NPR3-like, GATOR1 complex subunit | 8131 | The function of the encoded protein is not known. |
| NA | ENSG00000086506 | HBQ1 | hemoglobin subunit theta 1 | 3049 | Theta-globin mRNA is found in human fetal erythroid tissue but not in adult erythroid or other nonerythroid tissue. The theta-1 gene may be expressed very early in embryonic life, perhaps sometime before 5 weeks. Theta-1 is a member of the human alpha-globin gene cluster that involves five functional genes and two pseudogenes. The order of genes is: 5’ - zeta - pseudozeta - mu - pseudoalpha-2 -pseudoalpha-1 - alpha-2 - alpha-1 - theta-1 - 3’. Research supports a transcriptionally active role for the gene and a functional role for the peptide in specific cells, possibly those of early erythroid tissue. |
| NA | ENSG00000007392 | LUC7L | LUC7 like | 55692 | The LUC7L gene may represent a mammalian heterochromatic gene, encoding a putative RNA-binding protein similar to the yeast Luc7p subunit of the U1 snRNP splicing complex that is normally required for 5-prime splice site selection (Tufarelli et al., 2001 [PubMed 11170747]). |
| NA | ENSG00000167930 | FAM234A | family with sequence similarity 234 member A | 83986 | NA |
| NA | ENSG00000103126 | AXIN1 | axin 1 | 8312 | This gene encodes a cytoplasmic protein which contains a regulation of G-protein signaling (RGS) domain and a dishevelled and axin (DIX) domain. The encoded protein interacts with adenomatosis polyposis coli, catenin beta-1, glycogen synthase kinase 3 beta, protein phosphate 2, and itself. This protein functions as a negative regulator of the wingless-type MMTV integration site family, member 1 (WNT) signaling pathway and can induce apoptosis. The crystal structure of a portion of this protein, alone and in a complex with other proteins, has been resolved. Mutations in this gene have been associated with hepatocellular carcinoma, hepatoblastomas, ovarian endometriod adenocarcinomas, and medullablastomas. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000129925 | TMEM8A | transmembrane protein 8A | 58986 | NA |
| NA | ENSG00000242612 | DECR2 | 2,4-dienoyl-CoA reductase 2, peroxisomal | 26063 | NA |
| NA | ENSG00000090565 | RAB11FIP3 | RAB11 family interacting protein 3 (class II) | 9727 | Proteins of the large Rab GTPase family (see RAB1A; MIM 179508) have regulatory roles in the formation, targeting, and fusion of intracellular transport vesicles. RAB11FIP3 is one of many proteins that interact with and regulate Rab GTPases (Hales et al., 2001 [PubMed 11495908]). |
| NA | ENSG00000103326 | CAPN15 | calpain 15 | 6650 | This gene encodes a protein containing zinc-finger-like repeats and a calpain-like protease domain. The encoded protein may function as a transcription factor, RNA-binding protein, or in protein-protein interactions during visual system development. |
| NA | ENSG00000007541 | PIGQ | phosphatidylinositol glycan anchor biosynthesis class Q | 9091 | This gene is involved in the first step in glycosylphosphatidylinositol (GPI)-anchor biosynthesis. The GPI-anchor is a glycolipid found on many blood cells and serves to anchor proteins to the cell surface. This gene encodes a N-acetylglucosaminyl transferase component that is part of the complex that catalyzes transfer of N-acetylglucosamine (GlcNAc) from UDP-GlcNAc to phosphatidylinositol (PI). Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197562 | RAB40C | RAB40C, member RAS oncogene family | 57799 | NA |
| NA | ENSG00000130731 | C16orf13 | chromosome 16 open reading frame 13 | 84326 | NA |
| NA | ENSG00000172366 | LOC100287175 | uncharacterized LOC100287175 | 100287175 | NA |
| NA | ENSG00000172366 | FAM195A | family with sequence similarity 195 member A | 84331 | NA |
| NA | ENSG00000161996 | WDR90 | WD repeat domain 90 | 197335 | NA |
| NA | ENSG00000140983 | RHOT2 | ras homolog family member T2 | 89941 | This gene encodes a member of the Rho family of GTPases. The encoded protein is localized to the outer mitochondrial membrane and plays a role in mitochondrial trafficking and fusion-fission dynamics. |
| NA | ENSG00000103266 | STUB1 | STIP1 homology and U-box containing protein 1 | 10273 | This gene encodes a protein containing tetratricopeptide repeat and a U-box that functions as a ubiquitin ligase/cochaperone. The encoded protein binds to and ubiquitinates shock cognate 71 kDa protein (Hspa8) and DNA polymerase beta (Polb), among other targets. Mutations in this gene cause spinocerebellar ataxia, autosomal recessive 16. Alternative splicing results in multiple transcript variants. There is a pseudogene for this gene on chromosome 2. |
| NA | ENSG00000161999 | JMJD8 | jumonji domain containing 8 | 339123 | NA |
| NA | ENSG00000127580 | WDR24 | WD repeat domain 24 | 84219 | NA |
| NA | ENSG00000127585 | FBXL16 | F-box and leucine-rich repeat protein 16 | 146330 | Members of the F-box protein family, such as FBXL16, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000103260 | METRN | meteorin, glial cell differentiation regulator | 79006 | Meteorin regulates glial cell differentiation and promotes the formation of axonal networks during neurogenesis (Nishino et al., 2004 [PubMed 15085178]). |
| NA | ENSG00000103254 | FAM173A | family with sequence similarity 173 member A | 65990 | NA |
| NA | ENSG00000103253 | HAGHL | hydroxyacylglutathione hydrolase-like | 84264 | NA |
| NA | ENSG00000103245 | NARFL | nuclear prelamin A recognition factor like | 64428 | NA |
| NA | ENSG00000007376 | RPUSD1 | RNA pseudouridylate synthase domain containing 1 | 113000 | NA |
| NA | ENSG00000127586 | CHTF18 | chromosome transmission fidelity factor 18 | 63922 | This gene encodes a protein which is a component of a replication factor C (RFC) complex, which loads proliferating cell nuclear antigen (PCNA) on to DNA during the S phase of cell cycle. The encoded protein may interact with other proteins, including RFC complex 3, to form a clamp loader complex that plays a role in sister chromatid cohesion during metaphase-anaphase transition. |
| NA | ENSG00000005513 | SOX8 | SRY-box 8 | 30812 | This gene encodes a member of the SOX (SRY-related HMG-box) family of transcription factors involved in the regulation of embryonic development and in the determination of the cell fate. The encoded protein may act as a transcriptional activator after forming a protein complex with other proteins. This protein may be involved in brain development and function. Haploinsufficiency for this protein may contribute to the mental retardation found in haemoglobin H-related mental retardation (ART-16 syndrome). |
| NA | ENSG00000196557 | CACNA1H | calcium voltage-gated channel subunit alpha1 H | 8912 | This gene encodes a T-type member of the alpha-1 subunit family, a protein in the voltage-dependent calcium channel complex. Calcium channels mediate the influx of calcium ions into the cell upon membrane polarization and consist of a complex of alpha-1, alpha-2/delta, beta, and gamma subunits in a 1:1:1:1 ratio. The alpha-1 subunit has 24 transmembrane segments and forms the pore through which ions pass into the cell. There are multiple isoforms of each of the proteins in the complex, either encoded by different genes or the result of alternative splicing of transcripts. Alternate transcriptional splice variants, encoding different isoforms, have been characterized for the gene described here. Studies suggest certain mutations in this gene lead to childhood absence epilepsy (CAE). |
| NA | ENSG00000103275 | UBE2I | ubiquitin conjugating enzyme E2 I | 7329 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. Four alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000007516 | BAIAP3 | BAI1 associated protein 3 | 8938 | This p53-target gene encodes a brain-specific angiogenesis inhibitor. The protein is a seven-span transmembrane protein and a member of the secretin receptor family. It interacts with the cytoplasmic region of brain-specific angiogenesis inhibitor 1. This protein also contains two C2 domains, which are often found in proteins involved in signal transduction or membrane trafficking. Its expression pattern and similarity to other proteins suggest that it may be involved in synaptic functions. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000007520 | TSR3 | TSR3, 20S rRNA accumulation, homolog (S. cerevisiae) | 115939 | NA |
| NA | ENSG00000090581 | GNPTG | N-acetylglucosamine-1-phosphate transferase gamma subunit | 84572 | This gene encodes the gamma sunbunit of the N-acetylglucosamine-1-phosphotransferase complex. This hexameric complex, composed of alpha, beta and gamma subunits, catalyzes the first step in synthesis of a mannose 6-phosphate lysosomal recognition marker. This enzyme complex is necessary for targeting of lysosomal hydrolases to the lysosome. Mutations in the gene encoding the gamma subunit have been associated with mucolipidosis IIIC, also known as mucolipidosis III gamma. |
| NA | ENSG00000059145 | UNKL | unkempt family like zinc finger | 64718 | This gene encodes a RING finger protein that may function in Rac signaling. It can bind to Brg/Brm-associated factor 60b and can promote its ubiquitination. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000103249 | CLCN7 | chloride voltage-gated channel 7 | 1186 | The product of this gene belongs to the CLC chloride channel family of proteins. Chloride channels play important roles in the plasma membrane and in intracellular organelles. This gene encodes chloride channel 7. Defects in this gene are the cause of osteopetrosis autosomal recessive type 4 (OPTB4), also called infantile malignant osteopetrosis type 2 as well as the cause of autosomal dominant osteopetrosis type 2 (OPTA2), also called autosomal dominant Albers-Schonberg disease or marble disease autosoml dominant. Osteopetrosis is a rare genetic disease characterized by abnormally dense bone, due to defective resorption of immature bone. OPTA2 is the most common form of osteopetrosis, occurring in adolescence or adulthood. |
| NA | ENSG00000187535 | IFT140 | intraflagellar transport 140 | 9742 | This gene encodes one of the subunits of the intraflagellar transport (IFT) complex A. Intraflagellar transport is involved in the genesis, resorption and signaling of primary cilia. The primary cilium is a microtubule-based sensory organelle at the surface of most quiescent mammalian cells, that receives signals from its environment, such as the flow of fluid, light or odors, and transduces those signals to the nucleus. Loss of the corresponding protein in mouse results in renal cystic disease. |
| NA | ENSG00000007545 | CRAMP1 | cramped chromatin regulator homolog 1 | 57585 | NA |
| NA | ENSG00000206053 | HN1L | hematological and neurological expressed 1-like | 90861 | NA |
| NA | ENSG00000138834 | MAPK8IP3 | mitogen-activated protein kinase 8 interacting protein 3 | 23162 | The protein encoded by this gene shares similarity with the product of Drosophila syd gene, required for the functional interaction of kinesin I with axonal cargo. Studies of the similar gene in mouse suggested that this protein may interact with, and regulate the activity of numerous protein kinases of the JNK signaling pathway, and thus function as a scaffold protein in neuronal cells. The C. elegans counterpart of this gene is found to regulate synaptic vesicle transport possibly by integrating JNK signaling and kinesin-1 transport. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000103024 | NME3 | NME/NM23 nucleoside diphosphate kinase 3 | 4832 | NA |
| NA | ENSG00000074071 | MRPS34 | mitochondrial ribosomal protein S34 | 65993 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197774 | EME2 | essential meiotic structure-specific endonuclease subunit 2 | 197342 | EME2 forms a heterodimer with MUS81 (MIM 606591) that functions as an XPF (MIM 278760)-type flap/fork endonuclease in DNA repair (Ciccia et al., 2007 [PubMed 17289582]). |
| NA | ENSG00000162032 | SPSB3 | splA/ryanodine receptor domain and SOCS box containing 3 | 90864 | NA |
| NA | ENSG00000095906 | NUBP2 | nucleotide binding protein 2 | 10101 | This gene encodes an adenosine triphosphate (ATP) and metal-binding protein that is required for the assembly of cyotosolic iron-sulfur proteins. The encoded protein functions in a heterotetramer with nucleotide-binding protein 1 (NUBP1). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000063854 | HAGH | hydroxyacylglutathione hydrolase | 3029 | The enzyme encoded by this gene is classified as a thiolesterase and is responsible for the hydrolysis of S-lactoyl-glutathione to reduced glutathione and D-lactate. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000180185 | FAHD1 | fumarylacetoacetate hydrolase domain containing 1 | 81889 | NA |
| NA | ENSG00000198736 | MSRB1 | methionine sulfoxide reductase B1 | 51734 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. This protein belongs to the methionine sulfoxide reductase (Msr) protein family which includes repair enzymes that reduce oxidized methionine residues in proteins. The protein encoded by this gene is expressed in a variety of adult and fetal tissues and localizes to the cell nucleus and cytosol. |
| NA | ENSG00000140988 | RPS2 | ribosomal protein S2 | 6187 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S5P family of ribosomal proteins. It is located in the cytoplasm. This gene shares sequence similarity with mouse LLRep3. It is co-transcribed with the small nucleolar RNA gene U64, which is located in its third intron. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000183751 | TBL3 | transducin beta like 3 | 10607 | The protein encoded by this gene has sequence similarity with members of the WD40 repeat-containing protein family. The WD40 group is a large family of proteins, which appear to have a regulatory function. It is believed that the WD40 repeats mediate protein-protein interactions and members of the family are involved in signal transduction, RNA processing, gene regulation, vesicular trafficking, cytoskeletal assembly and may play a role in the control of cytotypic differentiation. This gene has multiple polyadenylation sites. It might have multiple alternatively spliced transcript variants but the variants have not been fully described yet. |
| NA | ENSG00000127554 | GFER | growth factor, augmenter of liver regeneration | 2671 | The hepatotrophic factor designated augmenter of liver regeneration (ALR) is thought to be one of the factors responsible for the extraordinary regenerative capacity of mammalian liver. It has also been called hepatic regenerative stimulation substance (HSS). The gene resides on chromosome 16 in the interval containing the locus for polycystic kidney disease (PKD1). The putative gene product is 42% similar to the scERV1 protein of yeast. The yeast scERV1 gene had been found to be essential for oxidative phosphorylation, the maintenance of mitochondrial genomes, and the cell division cycle. The human gene is both the structural and functional homolog of the yeast scERV1 gene. |
| NA | ENSG00000127561 | SYNGR3 | synaptogyrin 3 | 9143 | This gene encodes an integral membrane protein. The exact function of this protein is unclear, but studies of a similar murine protein suggest that it is a synaptic vesicle protein that also interacts with the dopamine transporter. The gene product belongs to the synaptogyrin gene family. |
| NA | ENSG00000167962 | ZNF598 | zinc finger protein 598 | 90850 | Zinc-finger proteins bind nucleic acids and play important roles in various cellular functions, including cell proliferation, differentiation, and apoptosis. This protein and Grb10-interacting GYF protein 2 have been identified as a components of the mammalian 4EHP (m4EHP) complex. The complex is thought to function as a translation repressor in embryonic development. |
| NA | ENSG00000065054 | SLC9A3R2 | SLC9A3 regulator 2 | 9351 | This gene encodes a member of the NHERF family of PDZ scaffolding proteins. These proteins mediate many cellular processes by binding to and regulating the membrane expression and protein-protein interactions of membrane receptors and transport proteins. The encoded protein plays a role in intestinal sodium absorption by regulating the activity of the sodium/hydrogen exchanger 3, and may also regulate the cystic fibrosis transmembrane regulator (CFTR) ion channel. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000065057 | NTHL1 | nth-like DNA glycosylase 1 | 4913 | The protein encoded by this gene is a DNA N-glycosylase of the endonuclease III family. Like a similar protein in E. coli, the encoded protein has DNA glycosylase activity on DNA substrates containing oxidized pyrimidine residues and has apurinic/apyrimidinic lyase activity. |
| NA | ENSG00000103197 | TSC2 | tuberous sclerosis 2 | 7249 | Mutations in this gene lead to tuberous sclerosis complex. Its gene product is believed to be a tumor suppressor and is able to stimulate specific GTPases. The protein associates with hamartin in a cytosolic complex, possibly acting as a chaperone for hamartin. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000008710 | PKD1 | polycystin 1, transient receptor potential channel interacting | 5310 | This gene encodes a member of the polycystin protein family. The encoded glycoprotein contains a large N-terminal extracellular region, multiple transmembrane domains and a cytoplasmic C-tail. It is an integral membrane protein that functions as a regulator of calcium permeable cation channels and intracellular calcium homoeostasis. It is also involved in cell-cell/matrix interactions and may modulate G-protein-coupled signal-transduction pathways. It plays a role in renal tubular development, and mutations in this gene cause autosomal dominant polycystic kidney disease type 1 (ADPKD1). ADPKD1 is characterized by the growth of fluid-filled cysts that replace normal renal tissue and result in end-stage renal failure. Splice variants encoding different isoforms have been noted for this gene. Also, six pseudogenes, closely linked in a known duplicated region on chromosome 16p, have been described. |
| NA | ENSG00000131653 | TRAF7 | TNF receptor associated factor 7 | 84231 | Tumor necrosis factor (TNF; see MIM 191160) receptor-associated factors, such as TRAF7, are signal transducers for members of the TNF receptor superfamily (see MIM 191190). TRAFs are composed of an N-terminal cysteine/histidine-rich region containing zinc RING and/or zinc finger motifs; a coiled-coil (leucine zipper) motif; and a homologous region that defines the TRAF family, the TRAF domain, which is involved in self-association and receptor binding. |
| NA | ENSG00000167971 | CASKIN1 | CASK interacting protein 1 | 57524 | NA |
| NA | ENSG00000167965 | MLST8 | MTOR associated protein, LST8 homolog | 64223 | NA |
| NA | ENSG00000182685 | BRICD5 | BRICHOS domain containing 5 | 283870 | NA |
| NA | ENSG00000184207 | PGP | phosphoglycolate phosphatase | 283871 | NA |
| NA | ENSG00000167967 | E4F1 | E4F transcription factor 1 | 1877 | The zinc finger protein encoded by this gene is one of several cellular transcription factors whose DNA-binding activities are regulated through the action of adenovirus E1A. A 50-kDa amino-terminal product is generated from the full-length protein through proteolytic cleavage. The protein is differentially regulated by E1A-induced phosphorylation. The full-length gene product represses transcription from the E4 promoter in the absence of E1A, while the 50-kDa form acts as a transcriptional activator in its presence. Alternative splicing results in multiple transcripts encoding different proteins. |
| NA | ENSG00000167969 | ECI1 | enoyl-CoA delta isomerase 1 | 1632 | This gene encodes a member of the hydratase/isomerase superfamily. The protein encoded is a key mitochondrial enzyme involved in beta-oxidation of unsaturated fatty acids. It catalyzes the transformation of 3-cis and 3-trans-enoyl-CoA esters arising during the stepwise degradation of cis-, mono-, and polyunsaturated fatty acids to the 2-trans-enoyl-CoA intermediates. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000205937 | RNPS1 | RNA binding protein S1, serine-rich domain | 10921 | This gene encodes a protein that is part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. mRNA surveillance detects exported mRNAs with truncated open reading frames and initiates nonsense-mediated mRNA decay (NMD). When translation ends upstream from the last exon-exon junction, this triggers NMD to degrade mRNAs containing premature stop codons. This protein binds to the mRNA and remains bound after nuclear export, acting as a nucleocytoplasmic shuttling protein. This protein contains many serine residues. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000167972 | ABCA3 | ATP binding cassette subfamily A member 3 | 21 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intracellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the ABC1 subfamily. Members of the ABC1 subfamily comprise the only major ABC subfamily found exclusively in multicellular eukaryotes. The full transporter encoded by this gene may be involved in development of resistance to xenobiotics and engulfment during programmed cell death. |
| NA | ENSG00000162063 | CCNF | cyclin F | 899 | This gene encodes a member of the cyclin family. Cyclins are important regulators of cell cycle transitions through their ability to bind and activate cyclin-dependent protein kinases. This member also belongs to the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class and it was one of the first proteins in which the F-box motif was identified. |
| NA | ENSG00000162062 | C16orf59 | chromosome 16 open reading frame 59 | 80178 | NA |
| NA | ENSG00000162065 | TBC1D24 | TBC1 domain family member 24 | 57465 | This gene encodes a protein with a conserved domain, referred to as the TBC domain, characteristic of proteins which interact with GTPases. TBC domain proteins may serve as GTPase-activating proteins for a particular group of GTPases, the Rab (Ras-related proteins in brain) small GTPases which are involved in the regulation of membrane trafficking. Mutations in this gene are associated with familial infantile myoclonic epilepsy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000162066 | AMDHD2 | amidohydrolase domain containing 2 | 51005 | NA |
| NA | ENSG00000140992 | PDPK1 | 3-phosphoinositide dependent protein kinase 1 | 5170 | NA |
| NA | ENSG00000167977 | KCTD5 | potassium channel tetramerization domain containing 5 | 54442 | NA |
| NA | ENSG00000167978 | SRRM2 | serine/arginine repetitive matrix 2 | 23524 | NA |
| NA | ENSG00000103363 | TCEB2 | transcription elongation factor B subunit 2 | 6923 | This gene encodes the protein elongin B, which is a subunit of the transcription factor B (SIII) complex. The SIII complex is composed of elongins A/A2, B and C. It activates elongation by RNA polymerase II by suppressing transient pausing of the polymerase at many sites within transcription units. Elongin A functions as the transcriptionally active component of the SIII complex, whereas elongins B and C are regulatory subunits. Elongin A2 is specifically expressed in the testis, and capable of forming a stable complex with elongins B and C. The von Hippel-Lindau tumor suppressor protein binds to elongins B and C, and thereby inhibits transcription elongation. Two alternatively spliced transcript variants encoding different isoforms have been described for this gene. Pseudogenes have been identified on chromosomes 11 and 13. |
| NA | ENSG00000162076 | FLYWCH2 | FLYWCH family member 2 | 114984 | NA |
| NA | ENSG00000059122 | FLYWCH1 | FLYWCH-type zinc finger 1 | 84256 | NA |
| NA | ENSG00000131650 | KREMEN2 | kringle containing transmembrane protein 2 | 79412 | This gene encodes a high-affinity dickkopf homolog 1 (DKK1) transmembrane receptor. A similar protein in mouse functions interacts with with DKK1 to block wingless (WNT)/beta-catenin signaling. The encoded protein forms a ternary membrane complex with DKK1 and the WNT receptor lipoprotein receptor-related protein 6 (LRP6), and induces rapid endocytosis and removal of LRP6 from the plasma membrane. It contains extracellular kringle, WSC, and CUB domains. Alternatively spliced transcript variants encoding distinct isoforms have been observed for this gene. |
| NA | ENSG00000127564 | PKMYT1 | protein kinase, membrane associated tyrosine/threonine 1 | 9088 | This gene encodes a member of the serine/threonine protein kinase family. The encoded protein is a membrane-associated kinase that negatively regulates the G2/M transition of the cell cycle by phosphorylating and inactivating cyclin-dependent kinase 1. The activity of the encoded protein is regulated by polo-like kinase 1. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000162073 | PAQR4 | progestin and adipoQ receptor family member IV | 124222 | NA |
| NA | ENSG00000184697 | CLDN6 | claudin 6 | 9074 | Tight junctions represent one mode of cell-to-cell adhesion in epithelial or endothelial cell sheets, forming continuous seals around cells and serving as a physical barrier to prevent solutes and water from passing freely through the paracellular space. These junctions are comprised of sets of continuous networking strands in the outwardly facing cytoplasmic leaflet, with complementary grooves in the inwardly facing extracytoplasmic leaflet. This gene encodes a component of tight junction strands, which is a member of the claudin family. The protein is an integral membrane protein and is one of the entry cofactors for hepatitis C virus. The gene methylation may be involved in esophageal tumorigenesis. This gene is adjacent to another family member CLDN9 on chromosome 16. |
| NA | ENSG00000006327 | TNFRSF12A | tumor necrosis factor receptor superfamily member 12A | 51330 | NA |
| NA | ENSG00000103145 | HCFC1R1 | host cell factor C1 regulator 1 | 54985 | NA |
| NA | ENSG00000162069 | CCDC64B | coiled-coil domain containing 64B | 146439 | NA |
| NA | ENSG00000008516 | MMP25 | matrix metallopeptidase 25 | 64386 | Proteins of the matrix metalloproteinase (MMP) family are involved in the breakdown of extracellular matrix in normal physiological processes, such as embryonic development, reproduction, and tissue remodeling, as well as in disease processes, such as arthritis and metastasis. Most MMPs are secreted as inactive proproteins which are activated when cleaved by extracellular proteinases. However, the protein encoded by this gene is a member of the membrane-type MMP (MT-MMP) subfamily, attached to the plasma membrane via a glycosylphosphatidyl inositol anchor. In response to bacterial infection or inflammation, the encoded protein is thought to inactivate alpha-1 proteinase inhibitor, a major tissue protectant against proteolytic enzymes released by activated neutrophils, facilitating the transendothelial migration of neutrophils to inflammatory sites. The encoded protein may also play a role in tumor invasion and metastasis through activation of MMP2. The gene has previously been referred to as MMP20 but has been renamed MMP25. |
| NA | ENSG00000008517 | IL32 | interleukin 32 | 9235 | This gene encodes a member of the cytokine family. The protein contains a tyrosine sulfation site, 3 potential N-myristoylation sites, multiple putative phosphorylation sites, and an RGD cell-attachment sequence. Expression of this protein is increased after the activation of T-cells by mitogens or the activation of NK cells by IL-2. This protein induces the production of TNFalpha from macrophage cells. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000130182 | ZSCAN10 | zinc finger and SCAN domain containing 10 | 84891 | NA |
| NA | ENSG00000122386 | ZNF205 | zinc finger protein 205 | 7755 | NA |
| NA | ENSG00000085644 | ZNF213 | zinc finger protein 213 | 7760 | C2H2 zinc finger proteins, such as ZNF213, have bipartite structures in which one domain binds DNA or RNA and the other modulates target gene expression. |
| NA | ENSG00000010539 | ZNF200 | zinc finger protein 200 | 7752 | NA |
| NA | ENSG00000006194 | ZNF263 | zinc finger protein 263 | 10127 | NA |
| NA | ENSG00000140993 | TIGD7 | tigger transposable element derived 7 | 91151 | The protein encoded by this gene belongs to the tigger subfamily of the pogo superfamily of DNA-mediated transposons in humans. These proteins are related to DNA transposons found in fungi and nematodes, and more distantly to the Tc1 and mariner transposases. They are also very similar to the major mammalian centromere protein B. The exact function of this gene is not known. |
| NA | ENSG00000232196 | MTRNR2L4 | MT-RNR2-like 4 | 100463285 | NA |
| NA | ENSG00000103343 | ZNF174 | zinc finger protein 174 | 7727 | NA |
| NA | ENSG00000167981 | ZNF597 | zinc finger protein 597 | 146434 | This gene encodes a protein with multiple zinc finger domains. Loss of the related gene in rodents results in defects in neural development and embryonic lethality in mutant homozygotes. This gene is adjacent to a differentially methylated region (DMR) and is imprinted and maternally expressed. |
| NA | ENSG00000122390 | NAA60 | N(alpha)-acetyltransferase 60, NatF catalytic subunit | 79903 | This gene encodes an enzyme that localizes to the Golgi apparatus, where it transfers an acetyl group to the N-terminus of free proteins. This enzyme acts on histones, and its activity is important for chromatin assembly and chromosome integrity. Alternative splicing and the use of alternative promoters results in multiple transcript variants. The upstream promoter is located in a differentially methylated region (DMR) and undergoes imprinting; transcript variants originating from this position are expressed from the maternal allele. |
| NA | ENSG00000103351 | CLUAP1 | clusterin associated protein 1 | 23059 | The protein encoded by this gene contains a single coiled-coil region. Alternative splicing results in multiple transcript variants and protein isoforms. |
| NA | ENSG00000188827 | SLX4 | SLX4 structure-specific endonuclease subunit | 84464 | This gene encodes a structure-specific endonuclease subunit. The encoded protein contains a central BTB domain and it forms a multiprotein complex with the ERCC4(XPF)-ERCC1, MUS81-EME1, and SLX1 endonucleases, and also associates with MSH2/MSH3 mismatch repair complex, telomere binding complex TERF2(TRF2)-TERF2IP(RAP1), the protein kinase PLK1 and the uncharacterized protein C20orf94. The multiprotein complex is required for repair of specific types of DNA lesions and is critical for cellular responses to replication fork failure. The encoded protein acts as a docking platform for the assembly of multiple structure-specific endonucleases. |
| NA | ENSG00000213918 | DNASE1 | deoxyribonuclease I | 1773 | This gene encodes a member of the DNase family. This protein is stored in the zymogen granules of the nuclear envelope and functions by cleaving DNA in an endonucleolytic manner. At least six autosomal codominant alleles have been characterized, DNASE11 through DNASE16, and the sequence of DNASE1*2 represented in this record. Mutations in this gene have been associated with systemic lupus erythematosus (SLE), an autoimmune disease. A recombinant form of this protein is used to treat the one of the symptoms of cystic fibrosis by hydrolyzing the extracellular DNA in sputum and reducing its viscosity. Alternate transcriptional splice variants of this gene have been observed but have not been thoroughly characterized. |
| NA | ENSG00000126602 | TRAP1 | TNF receptor-associated protein 1 | 10131 | This gene encodes a mitochondrial chaperone protein that is member of the heat shock protein 90 (HSP90) family. The encoded protein has ATPase activity and interacts with tumor necrosis factor type I. This protein may function in regulating cellular stress responses. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000005339 | CREBBP | CREB binding protein | 1387 | This gene is ubiquitously expressed and is involved in the transcriptional coactivation of many different transcription factors. First isolated as a nuclear protein that binds to cAMP-response element binding protein (CREB), this gene is now known to play critical roles in embryonic development, growth control, and homeostasis by coupling chromatin remodeling to transcription factor recognition. The protein encoded by this gene has intrinsic histone acetyltransferase activity and also acts as a scaffold to stabilize additional protein interactions with the transcription complex. This protein acetylates both histone and non-histone proteins. This protein shares regions of very high sequence similarity with protein p300 in its bromodomain, cysteine-histidine-rich regions, and histone acetyltransferase domain. Mutations in this gene cause Rubinstein-Taybi syndrome (RTS). Chromosomal translocations involving this gene have been associated with acute myeloid leukemia. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000162104 | ADCY9 | adenylate cyclase 9 | 115 | Adenylate cyclase is a membrane bound enzyme that catalyses the formation of cyclic AMP from ATP. It is regulated by a family of G protein-coupled receptors, protein kinases, and calcium. The type 9 adenylyl cyclase is a widely distributed adenylyl cyclase, and it is stimulated by beta-adrenergic receptor activation but is insensitive to forskolin, calcium, and somatostatin. |
| NA | ENSG00000090447 | TFAP4 | transcription factor AP-4 (activating enhancer binding protein 4) | 7023 | Transcription factors of the basic helix-loop-helix-zipper (bHLH-ZIP) family contain a basic domain, which is used for DNA binding, and HLH and ZIP domains, which are used for oligomerization. Transcription factor AP4 activates both viral and cellular genes by binding to the symmetrical DNA sequence CAGCTG (Mermod et al., 1988 [PubMed 2833704]; Hu et al., 1990 [PubMed 2123466]). |
| NA | ENSG00000126603 | GLIS2 | GLIS family zinc finger 2 | 84662 | This gene is a member of the GLI-similar zinc finger protein family and encodes a nuclear transcription factor with five C2H2-type zinc finger domains. The protein encoded by this gene is widely expressed at low levels in the neural tube and peripheral nervous system and likely promotes neuronal differentiation. It is abundantly expressed in the kidney and may have a role in the regulation of kidney morphogenesis. p120 regulates the expression level of this protein and induces the cleavage of this protein’s C-terminal zinc finger domain. This protein also promotes the nuclear translocation of p120. Mutations in this gene cause nephronophthisis (NPHP), an autosomal recessive kidney disease characterized by tubular basement membrane disruption, interstitial lymphohistiocytic cell infiltration, and development of cysts at the corticomedullary border of the kidneys. |
| NA | ENSG00000262246 | CORO7 | coronin 7 | 79585 | Coronins, such as CORO7, constitute an evolutionarily conserved family of WD-repeat actin-binding proteins. CORO7 plays a role in Golgi complex morphology and function (Rybakin et al., 2004, 2006 [PubMed 15327992] [PubMed 16905771]). |
| NA | ENSG00000168140 | VASN | vasorin | 114990 | NA |
| NA | ENSG00000103423 | DNAJA3 | DnaJ heat shock protein family (Hsp40) member A3 | 9093 | This gene encodes a member of the DNAJ/Hsp40 protein family. DNAJ/Hsp40 proteins stimulate the ATPase activity of Hsp70 chaperones and play critical roles in protein folding, degradation, and multimeric complex assembly. The encoded protein is localized to mitochondria and mediates several cellular processes including proliferation, survival and apoptotic signal transduction. The encoded protein also plays a critical role in tumor suppression through interactions with oncogenic proteins including ErbB2 and the p53 tumor suppressor protein. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000153406 | NMRAL1 | NmrA-like family domain containing 1 | 57407 | This gene encodes an NADPH sensor protein that preferentially binds to NADPH. The encoded protein also negatively regulates the activity of NF-kappaB in a ubiquitylation-dependent manner. It plays a key role in cellular antiviral response by negatively regulating the interferon response factor 3-mediated expression of interferon beta. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000103415 | HMOX2 | heme oxygenase 2 | 3163 | Heme oxygenase, an essential enzyme in heme catabolism, cleaves heme to form biliverdin, which is subsequently converted to bilirubin by biliverdin reductase, and carbon monoxide, a putative neurotransmitter. Heme oxygenase activity is induced by its substrate heme and by various nonheme substances. Heme oxygenase occurs as 2 isozymes, an inducible heme oxygenase-1 and a constitutive heme oxygenase-2. HMOX1 and HMOX2 belong to the heme oxygenase family. Several alternatively spliced transcript variants encoding three different isoforms have been found for this gene. |
| NA | ENSG00000089486 | CDIP1 | cell death-inducing p53 target 1 | 29965 | NA |
| NA | ENSG00000153443 | UBALD1 | UBA like domain containing 1 | 124402 | NA |
| NA | ENSG00000102858 | MGRN1 | mahogunin ring finger 1 | 23295 | Mahogunin (MGRN1) is a C3HC4 RING-containing protein with E3 ubiquitin ligase activity in vitro. |
| NA | ENSG00000168101 | NUDT16L1 | nudix hydrolase 16 like 1 | 84309 | NA |
| NA | ENSG00000168096 | ANKS3 | ankyrin repeat and sterile alpha motif domain containing 3 | 124401 | NA |
| NA | ENSG00000103199 | ZNF500 | zinc finger protein 500 | 26048 | NA |
| NA | ENSG00000067836 | ROGDI | rogdi homolog | 79641 | This gene encodes a protein of unknown function. Loss-of-function mutation in this gene cause Kohlschutter-Tonz syndrome. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000140632 | GLYR1 | glyoxylate reductase 1 homolog | 84656 | NA |
| NA | ENSG00000118900 | UBN1 | ubinuclein 1 | 29855 | NA |
| NA | ENSG00000118898 | PPL | periplakin | 5493 | The protein encoded by this gene is a component of desmosomes and of the epidermal cornified envelope in keratinocytes. The N-terminal domain of this protein interacts with the plasma membrane and its C-terminus interacts with intermediate filaments. Through its rod domain, this protein forms complexes with envoplakin. This protein may serve as a link between the cornified envelope and desmosomes as well as intermediate filaments. AKT1/PKB, a protein kinase mediating a variety of cell growth and survival signaling processes, is reported to interact with this protein, suggesting a possible role for this protein as a localization signal in AKT1-mediated signaling. |
| NA | ENSG00000103184 | SEC14L5 | SEC14 like lipid binding 5 | 9717 | NA |
| NA | ENSG00000103174 | NAGPA | N-acetylglucosamine-1-phosphodiester alpha-N-acetylglucosaminidase | 51172 | Hydrolases are transported to lysosomes after binding to mannose 6-phosphate receptors in the trans-Golgi network. This gene encodes the enzyme that catalyzes the second step in the formation of the mannose 6-phosphate recognition marker on lysosomal hydrolases. Commonly known as ‘uncovering enzyme’ or UCE, this enzyme removes N-acetyl-D-glucosamine (GlcNAc) residues from GlcNAc-alpha-P-mannose moieties and thereby produces the recognition marker. The encoded preproprotein is proteolytically processed by furin to generate the mature enzyme, a homotetramer of two disulfide-linked homodimers. Mutations in this gene are associated with developmental stuttering in human patients. |
| NA | ENSG00000033011 | ALG1 | ALG1, chitobiosyldiphosphodolichol beta-mannosyltransferase | 56052 | The enzyme encoded by this gene catalyzes the first mannosylation step in the biosynthesis of lipid-linked oligosaccharides. This gene is mutated in congenital disorder of glycosylation type Ik. |
| NA | ENSG00000153446 | C16orf89 | chromosome 16 open reading frame 89 | 146556 | This gene is expressed predominantly in the thyroid. Based on expression patterns similar to thyroid transcription factors and proteins, this gene may function in the development and function of the thyroid. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000118894 | EEF2KMT | eukaryotic elongation factor 2 lysine methyltransferase | 196483 | NA |
| NA | ENSG00000078328 | RBFOX1 | RNA binding protein, fox-1 homolog (C. elegans) 1 | 54715 | The Fox-1 family of RNA-binding proteins is evolutionarily conserved, and regulates tissue-specific alternative splicing in metazoa. Fox-1 recognizes a (U)GCAUG stretch in regulated exons or in flanking introns. The protein binds to the C-terminus of ataxin-2 and may contribute to the restricted pathology of spinocerebellar ataxia type 2 (SCA2). Ataxin-2 is the product of the SCA2 gene which causes familial neurodegenerative diseases. Fox-1 and ataxin-2 are both localized in the trans-Golgi network. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000067365 | METTL22 | methyltransferase like 22 | 79091 | This gene encodes a member of the non-histone lysine methyltransferases. It interacts with its substrate, Kin17, which is involved in DNA repair and replication and mRNA processing. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000183044 | ABAT | 4-aminobutyrate aminotransferase | 18 | 4-aminobutyrate aminotransferase (ABAT) is responsible for catabolism of gamma-aminobutyric acid (GABA), an important, mostly inhibitory neurotransmitter in the central nervous system, into succinic semialdehyde. The active enzyme is a homodimer of 50-kD subunits complexed to pyridoxal-5-phosphate. The protein sequence is over 95% similar to the pig protein. GABA is estimated to be present in nearly one-third of human synapses. ABAT in liver and brain is controlled by 2 codominant alleles with a frequency in a Caucasian population of 0.56 and 0.44. The ABAT deficiency phenotype includes psychomotor retardation, hypotonia, hyperreflexia, lethargy, refractory seizures, and EEG abnormalities. Multiple alternatively spliced transcript variants encoding the same protein isoform have been found for this gene. |
| NA | ENSG00000184857 | TMEM186 | transmembrane protein 186 | 25880 | This gene encodes a potential transmembrane protein. |
| NA | ENSG00000153048 | CARHSP1 | calcium regulated heat stable protein 1 | 23589 | NA |
| NA | ENSG00000187555 | USP7 | ubiquitin specific peptidase 7 (herpes virus-associated) | 7874 | NA |
| NA | ENSG00000182831 | C16orf72 | chromosome 16 open reading frame 72 | 29035 | NA |
| NA | ENSG00000166669 | ATF7IP2 | activating transcription factor 7 interacting protein 2 | 80063 | NA |
| NA | ENSG00000213853 | EMP2 | epithelial membrane protein 2 | 2013 | This gene encodes a tetraspan protein of the PMP22/EMP family. The encoded protein regulates cell membrane composition. It has been associated with various functions including endocytosis, cell signaling, cell proliferation, cell migration, cell adhesion, cell death, cholesterol homeostasis, urinary albumin excretion, and embryo implantation. It is known to negatively regulate caveolin-1, a scaffolding protein which is the main component of the caveolae plasma membrane invaginations found in most cell types. Through activation of PTK2 it positively regulates vascular endothelial growth factor A. It also modulates the function of specific integrin isomers in the plasma membrane. Up-regulation of this gene has been linked to cancer progression in multiple different tissues. Mutations in this gene have been associated with nephrotic syndrome type 10 (NPHS10). |
| NA | ENSG00000103274 | NUBP1 | nucleotide binding protein 1 | 4682 | NUBP1 is a member of the NUBP/MRP subfamily of ATP-binding proteins (Nakashima et al., 1999 [PubMed 10486206]). |
| NA | ENSG00000166676 | TVP23A | trans-golgi network vesicle protein 23 homolog A (S. cerevisiae) | 780776 | This gene encodes a membrane protein associated with the Golgi apparatus, which plays a crucial role in intracellular vesicular transport. The encoded protein is likely associated with the late (trans) Golgi compartments, which are involved in the delivery of secretory and membrane proteins to the endosome, lysosome or the plasma membrane. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000182108 | DEXI | Dexi homolog (mouse) | 28955 | NA |
| NA | ENSG00000038532 | CLEC16A | C-type lectin domain family 16 member A | 23274 | This gene encodes a member of the C-type lectin domain containing family. Single nucleotide polymorphisms in introns of this gene have been associated with diabetes mellitus, multiple sclerosis and rheumatoid arthritis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000175643 | RMI2 | RecQ mediated genome instability 2 | 116028 | RMI2 is a component of the BLM (RECQL3; MIM 604610) complex, which plays a role in homologous recombination-dependent DNA repair and is essential for genome stability (Xu et al., 2008 [PubMed 18923082]). |
| NA | ENSG00000185338 | SOCS1 | suppressor of cytokine signaling 1 | 8651 | This gene encodes a member of the STAT-induced STAT inhibitor (SSI), also known as suppressor of cytokine signaling (SOCS), family. SSI family members are cytokine-inducible negative regulators of cytokine signaling. The expression of this gene can be induced by a subset of cytokines, including IL2, IL3 erythropoietin (EPO), CSF2/GM-CSF, and interferon (IFN)-gamma. The protein encoded by this gene functions downstream of cytokine receptors, and takes part in a negative feedback loop to attenuate cytokine signaling. Knockout studies in mice suggested the role of this gene as a modulator of IFN-gamma action, which is required for normal postnatal growth and survival. |
| NA | ENSG00000189067 | LITAF | lipopolysaccharide induced TNF factor | 9516 | Lipopolysaccharide is a potent stimulator of monocytes and macrophages, causing secretion of tumor necrosis factor-alpha (TNF-alpha) and other inflammatory mediators. This gene encodes lipopolysaccharide-induced TNF-alpha factor, which is a DNA-binding protein and can mediate the TNF-alpha expression by direct binding to the promoter region of the TNF-alpha gene. The transcription of this gene is induced by tumor suppressor p53 and has been implicated in the p53-induced apoptotic pathway. Mutations in this gene cause Charcot-Marie-Tooth disease type 1C (CMT1C) and may be involved in the carcinogenesis of extramammary Paget’s disease (EMPD). Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000184602 | SNN | stannin | 8303 | NA |
| NA | ENSG00000153066 | TXNDC11 | thioredoxin domain containing 11 | 51061 | NA |
| NA | ENSG00000122299 | ZC3H7A | zinc finger CCCH-type containing 7A | 29066 | NA |
| NA | ENSG00000171490 | RSL1D1 | ribosomal L1 domain containing 1 | 26156 | NA |
| NA | ENSG00000103342 | GSPT1 | G1 to S phase transition 1 | 2935 | NA |
| NA | ENSG00000234719 | RP11-166B2.1 | Putative NPIP-like protein LOC729978 | ENSG00000234719 | NA |
| NA | ENSG00000048471 | SNX29 | sorting nexin 29 | 92017 | NA |
| NA | ENSG00000103381 | CPPED1 | calcineurin like phosphoesterase domain containing 1 | 55313 | NA |
| NA | ENSG00000237515 | SHISA9 | shisa family member 9 | 729993 | NA |
| NA | ENSG00000175595 | ERCC4 | excision repair cross-complementation group 4 | 2072 | The protein encoded by this gene forms a complex with ERCC1 and is involved in the 5’ incision made during nucleotide excision repair. This complex is a structure specific DNA repair endonuclease that interacts with EME1. Defects in this gene are a cause of xeroderma pigmentosum complementation group F (XP-F), or xeroderma pigmentosum VI (XP6). |
| NA | ENSG00000186260 | MKL2 | MKL1/myocardin like 2 | 57496 | NA |
| NA | ENSG00000140694 | PARN | poly(A)-specific ribonuclease | 5073 | The protein encoded by this gene is a 3’-exoribonuclease, with similarity to the RNase D family of 3’-exonucleases. It prefers poly(A) as the substrate, hence, efficiently degrades poly(A) tails of mRNAs. Exonucleolytic degradation of the poly(A) tail is often the first step in the decay of eukaryotic mRNAs. This protein is also involved in silencing of certain maternal mRNAs during oocyte maturation and early embryonic development, as well as in nonsense-mediated decay (NMD) of mRNAs that contain premature stop codons. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000103429 | BFAR | bifunctional apoptosis regulator | 51283 | NA |
| NA | ENSG00000254852 | NPIPA2 | nuclear pore complex interacting protein family member A2 | 642799 | NA |
| NA | ENSG00000103512 | NOMO1 | NODAL modulator 1 | 23420 | This gene encodes a protein originally thought to be related to the collagenase gene family. This gene is one of three highly similar genes in a region of duplication located on the p arm of chromosome 16. These three genes encode closely related proteins that may have the same function. The protein encoded by one of these genes has been identified as part of a protein complex that participates in the Nodal signaling pathway during vertebrate development. Mutations in ABCC6, which is located nearby, rather than mutations in this gene are associated with pseudoxanthoma elasticum (PXE). |
| NA | ENSG00000183426 | NPIPA1 | nuclear pore complex interacting protein family member A1 | 9284 | NA |
| NA | ENSG00000183426 | NPIPA3 | nuclear pore complex interacting protein family member A3 | 642778 | NA |
| NA | ENSG00000183426 | NPIPA2 | nuclear pore complex interacting protein family member A2 | 642799 | NA |
| NA | ENSG00000183426 | LOC102724993 | NPIP-like protein 1 | 102724993 | NA |
| NA | ENSG00000183426 | NPIPA8 | nuclear pore complex interacting protein family member A8 | 101059953 | NA |
| NA | ENSG00000183426 | NPIPA7 | nuclear pore complex interacting protein family member A7 | 101059938 | NA |
| NA | ENSG00000179889 | LOC102724985 | pyridoxal-dependent decarboxylase domain-containing protein 1 | 102724985 | NA |
| NA | ENSG00000179889 | PDXDC1 | pyridoxal-dependent decarboxylase domain containing 1 | 23042 | NA |
| NA | ENSG00000157045 | NTAN1 | N-terminal asparagine amidase | 123803 | The protein encoded by this gene functions in a step-wise process of protein degradation through the N-end rule pathway. This protein acts as a tertiary destabilizing enzyme that deamidates N-terminal L-Asn residues on proteins to produce N-terminal L-Asp. L-Asp substrates are subsequently conjugated to L-Arg, which is recognized by specific E3 ubiquitin ligases and targeted to the proteasome. Pseudogenes of this gene are located on the long arms of chromosomes 8, 10 and 12. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000085721 | RRN3 | RRN3 homolog, RNA polymerase I transcription factor | 54700 | NA |
| NA | ENSG00000183793 | NPIPA5 | nuclear pore complex interacting protein family member A5 | 100288332 | NA |
| NA | ENSG00000156968 | MPV17L | MPV17 mitochondrial inner membrane protein like | 255027 | NA |
| NA | ENSG00000166780 | C16orf45 | chromosome 16 open reading frame 45 | 89927 | NA |
| NA | ENSG00000166783 | KIAA0430 | KIAA0430 | 9665 | This gene encodes a putative peroxisomal protein that appears to be conserved across Euteleostomi. In humans, it may be autoantigenic. |
| NA | ENSG00000072864 | NDE1 | nudE neurodevelopment protein 1 | 54820 | This gene encodes a member of the nuclear distribution E (NudE) family of proteins. The encoded protein is localized at the centrosome and interacts with other centrosome components as part of a multiprotein complex that regulates dynein function. This protein plays an essential role in microtubule organization, mitosis and neuronal migration. Mutations in this gene cause lissencephaly 4, a disorder characterized by lissencephaly, severe brain atrophy, microcephaly, and severe mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000133393 | FOPNL | FGFR1OP N-terminal like | 123811 | NA |
| NA | ENSG00000103222 | ABCC1 | ATP binding cassette subfamily C member 1 | 4363 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra-and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This full transporter is a member of the MRP subfamily which is involved in multi-drug resistance. This protein functions as a multispecific organic anion transporter, with oxidized glutatione, cysteinyl leukotrienes, and activated aflatoxin B1 as substrates. This protein also transports glucuronides and sulfate conjugates of steroid hormones and bile salts. Alternatively spliced variants of this gene have been described but their full-length nature is unknown. |
| NA | ENSG00000103226 | NOMO3 | NODAL modulator 3 | 408050 | This gene encodes a protein originally thought to be related to the collagenase gene family. This gene is one of three highly similar genes in a duplicated region on the short arm of chromosome 16. These three genes encode closely related proteins that may have the same function. The protein encoded by one of these genes has been identified as part of a protein complex that participates in the Nodal signaling pathway during vertebrate development. Mutations in ABCC6, which is located nearby, rather than mutations in this gene are associated with pseudoxanthoma elasticum. |
| NA | ENSG00000183889 | LOC102724993 | NPIP-like protein 1 | 102724993 | NA |
| NA | ENSG00000183889 | NPIPA5 | nuclear pore complex interacting protein family member A5 | 100288332 | NA |
| NA | ENSG00000214967 | NPIPA8 | nuclear pore complex interacting protein family member A8 | 101059953 | NA |
| NA | ENSG00000214967 | NPIPA7 | nuclear pore complex interacting protein family member A7 | 101059938 | NA |
| NA | ENSG00000103489 | XYLT1 | xylosyltransferase I | 64131 | This locus encodes a xylosyltransferase enzyme. The encoded protein catalyzes transfer of UDP-xylose to serine residues of an acceptor protein substrate. This transfer reaction is necessary for biosynthesis of glycosaminoglycan chains. Mutations in this gene have been associated with increased severity of pseudoxanthoma elasticum. |
| NA | ENSG00000214940 | NPIPA8 | nuclear pore complex interacting protein family member A8 | 101059953 | NA |
| NA | ENSG00000214940 | NPIPA7 | nuclear pore complex interacting protein family member A7 | 101059938 | NA |
| NA | ENSG00000233024 | NPIPA5 | nuclear pore complex interacting protein family member A5 | 100288332 | NA |
| NA | ENSG00000185164 | NOMO2 | NODAL modulator 2 | 283820 | This gene encodes a protein originally thought to be related to the collagenase gene family. This gene is one of three highly similar genes in a region of duplication located on the p arm of chromosome 16. These three genes encode closely related proteins that may have the same function. The protein encoded by one of these genes has been identified as part of a protein complex that participates in the Nodal signaling pathway during vertebrate development. Mutations in ABCC6, which is located nearby, rather than mutations in this gene are associated with pseudoxanthoma elasticum (PXE). Two transcripts encoding different isoforms have been described. |
| NA | ENSG00000134419 | RPS15A | ribosomal protein S15a | 6210 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S8P family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000170540 | ARL6IP1 | ADP ribosylation factor like GTPase 6 interacting protein 1 | 23204 | This gene belongs to the ARL6ip family and encodes a transmembrane protein that is predominantly localized to intracytoplasmic membranes. It is highly expressed in early myeloid progenitor cells and thought to be involved in protein transport, membrane trafficking, or cell signaling during hematopoietic maturation. Mutations in this gene are associated with spastic paraplegia 61 (SPG61). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000157106 | SMG1 | SMG1 phosphatidylinositol 3-kinase-related kinase | 23049 | This gene encodes a protein involved in nonsense-mediated mRNA decay (NMD) as part of the mRNA surveillance complex. The protein has kinase activity and is thought to function in NMD by phosphorylating the regulator of nonsense transcripts 1 protein. Alternatively spliced transcript variants have been described, but their full-length nature has yet to be determined. |
| NA | ENSG00000170537 | TMC7 | transmembrane channel like 7 | 79905 | NA |
| NA | ENSG00000167186 | COQ7 | coenzyme Q7, hydroxylase | 10229 | The protein encoded by this gene is similar to a mitochondrial di-iron containing hydroxylase in Saccharomyces cerevisiae that is involved with ubiquinone biosynthesis. Mutations in the yeast gene lead to slower development and longer life span. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000205730 | ITPRIPL2 | inositol 1,4,5-trisphosphate receptor interacting protein-like 2 | 162073 | NA |
| NA | ENSG00000103528 | SYT17 | synaptotagmin 17 | 51760 | NA |
| NA | ENSG00000103534 | TMC5 | transmembrane channel like 5 | 79838 | NA |
| NA | ENSG00000006007 | GDE1 | glycerophosphodiester phosphodiesterase 1 | 51573 | NA |
| NA | ENSG00000103540 | CCP110 | centriolar coiled-coil protein 110kDa | 9738 | NA |
| NA | ENSG00000103550 | KNOP1 | lysine-rich nucleolar protein 1 | 400506 | NA |
| NA | ENSG00000174628 | IQCK | IQ motif containing K | 124152 | This gene belongs to the IQ motif-containing family of proteins. The IQ motif serves as a binding site for different EF-hand proteins such as calmodulin. This gene was identified as a potential candidate gene for obsessive-compulsive disorder in a genome-wide association study. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000167191 | GPRC5B | G protein-coupled receptor class C group 5 member B | 51704 | This gene encodes a member of the type 3 G protein-coupled receptor family. Members of this superfamily are characterized by a signature 7-transmembrane domain motif. The encoded protein may modulate insulin secretion and increased protein expression is associated with type 2 diabetes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000066654 | THUMPD1 | THUMP domain containing 1 | 55623 | NA |
| NA | ENSG00000196678 | ERI2 | ERI1 exoribonuclease family member 2 | 112479 | NA |
| NA | ENSG00000005189 | LOC81691 | exonuclease NEF-sp | 81691 | NA |
| NA | ENSG00000188215 | DCUN1D3 | defective in cullin neddylation 1 domain containing 3 | 123879 | NA |
| NA | ENSG00000102897 | LYRM1 | LYR motif containing 1 | 57149 | The protein encoded by this gene belongs to the mitochondrial leucine/tyrosine/arginine motif family of proteins. Proteins of this family are short polypeptides that contain a leucine/tyrosine/arginine motif near the N-terminus. This gene is widely expressed with high levels in omental adipose tissue of obese individuals. In adipose tissue, the protein is localized to the nucleus where it promotes preadipocyte proliferation and lowers the rate of apoptosis to regulate adipose tissue homeostasis. Overexpression of this gene in adipocytes causes abnormal mitochondrial morphology and mitochondrial dysfunction. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000011638 | TMEM159 | transmembrane protein 159 | 57146 | NA |
| NA | ENSG00000103316 | CRYM | crystallin mu | 1428 | Crystallins are separated into two classes: taxon-specific and ubiquitous. The former class is also called phylogenetically-restricted crystallins. The latter class constitutes the major proteins of vertebrate eye lens and maintains the transparency and refractive index of the lens. This gene encodes a taxon-specific crystallin protein that binds NADPH and has sequence similarity to bacterial ornithine cyclodeaminases. The encoded protein does not perform a structural role in lens tissue, and instead it binds thyroid hormone for possible regulatory or developmental roles. Mutations in this gene have been associated with autosomal dominant non-syndromic deafness. |
| NA | ENSG00000169246 | NPIPB3 | nuclear pore complex interacting protein family member B3 | ENSG00000169246 | NA |
| NA | ENSG00000197006 | METTL9 | methyltransferase like 9 | 51108 | NA |
| NA | ENSG00000185864 | NPIPB3 | nuclear pore complex interacting protein family member B3 | 23117 | NA |
| NA | ENSG00000185864 | NPIPB4 | nuclear pore complex interacting protein family member B4 | 440345 | NA |
| NA | ENSG00000140740 | UQCRC2 | ubiquinol-cytochrome c reductase core protein II | 7385 | The protein encoded by this gene is located in the mitochondrion, where it is part of the ubiquinol-cytochrome c reductase complex (also known as complex III). This complex constitutes a part of the mitochondrial respiratory chain. Defects in this gene are a cause of mitochondrial complex III deficiency nuclear type 5. |
| NA | ENSG00000185716 | C16orf52 | chromosome 16 open reading frame 52 | 730094 | NA |
| NA | ENSG00000185716 | LOC102725138 | uncharacterized protein C16orf52 homolog B | 102725138 | NA |
| NA | ENSG00000103319 | EEF2K | eukaryotic elongation factor 2 kinase | 29904 | This gene encodes a highly conserved protein kinase in the calmodulin-mediated signaling pathway that links activation of cell surface receptors to cell division. This kinase is involved in the regulation of protein synthesis. It phosphorylates eukaryotic elongation factor 2 (EEF2) and thus inhibits the EEF2 function. The activity of this kinase is increased in many cancers and may be a valid target for anti-cancer treatment. |
| NA | ENSG00000103319 | LOC101930123 | eukaryotic elongation factor 2 kinase | 101930123 | NA |
| NA | ENSG00000058600 | LOC101060521 | DNA-directed RNA polymerase III subunit RPC5 | 101060521 | NA |
| NA | ENSG00000058600 | POLR3E | polymerase (RNA) III subunit E | 55718 | NA |
| NA | ENSG00000140743 | LOC101060399 | cerebellar degeneration-related protein 2 | 101060399 | NA |
| NA | ENSG00000140743 | CDR2 | cerebellar degeneration related protein 2 | 1039 | NA |
| NA | ENSG00000243716 | NPIPB5 | nuclear pore complex interacting protein family member B5 | 100132247 | NA |
| NA | ENSG00000103404 | USP31 | ubiquitin specific peptidase 31 | 57478 | NA |
| NA | ENSG00000168434 | COG7 | component of oligomeric golgi complex 7 | 91949 | The protein encoded by this gene resides in the golgi, and constitutes one of the 8 subunits of the conserved oligomeric Golgi (COG) complex, which is required for normal golgi morphology and localization. Mutations in this gene are associated with the congenital disorder of glycosylation type IIe. |
| NA | ENSG00000103365 | GGA2 | golgi associated, gamma adaptin ear containing, ARF binding protein 2 | 23062 | This gene encodes a member of the Golgi-localized, gamma adaptin ear-containing, ARF-binding (GGA) family. This family includes ubiquitous coat proteins that regulate the trafficking of proteins between the trans-Golgi network and the lysosome. These proteins share an amino-terminal VHS domain which mediates sorting of the mannose 6-phosphate receptors at the trans-Golgi network. They also contain a carboxy-terminal region with homology to the ear domain of gamma-adaptins. This family member may play a significant role in cargo molecules regulation and clathrin-coated vesicle assembly. |
| NA | ENSG00000103356 | EARS2 | glutamyl-tRNA synthetase 2, mitochondrial | 124454 | This gene encodes a member of the class I family of aminoacyl-tRNA synthetases. These enzymes play a critical role in protein biosynthesis by charging tRNAs with their cognate amino acids. This protein is encoded by the nuclear genome but is likely to be imported to the mitochondrion where it is thought to catalyze the ligation of glutamate to tRNA molecules. Mutations in this gene have been associated with combined oxidative phosphorylation deficiency 12 (COXPD12). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000103353 | UBFD1 | ubiquitin family domain containing 1 | 56061 | NA |
| NA | ENSG00000004779 | NDUFAB1 | NADH:ubiquinone oxidoreductase subunit AB1 | 4706 | NA |
| NA | ENSG00000083093 | PALB2 | partner and localizer of BRCA2 | 79728 | This gene encodes a protein that may function in tumor suppression. This protein binds to and colocalizes with the breast cancer 2 early onset protein (BRCA2) in nuclear foci and likely permits the stable intranuclear localization and accumulation of BRCA2. |
| NA | ENSG00000166847 | DCTN5 | dynactin subunit 5 | 84516 | This gene encodes a subunit of dynactin, a component of the cytoplasmic dynein motor machinery involved in minus-end-directed transport. The encoded protein is a component of the pointed-end subcomplex and is thought to bind membranous cargo. A pseudogene of this gene is located on the long arm of chromosome 1. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000166851 | PLK1 | polo like kinase 1 | 5347 | The Ser/Thr protein kinase encoded by this gene belongs to the CDC5/Polo subfamily. It is highly expressed during mitosis and elevated levels are found in many different types of cancer. Depletion of this protein in cancer cells dramatically inhibited cell proliferation and induced apoptosis; hence, it is a target for cancer therapy. |
| NA | ENSG00000166501 | PRKCB | protein kinase C beta | 5579 | Protein kinase C (PKC) is a family of serine- and threonine-specific protein kinases that can be activated by calcium and second messenger diacylglycerol. PKC family members phosphorylate a wide variety of protein targets and are known to be involved in diverse cellular signaling pathways. PKC family members also serve as major receptors for phorbol esters, a class of tumor promoters. Each member of the PKC family has a specific expression profile and is believed to play a distinct role in cells. The protein encoded by this gene is one of the PKC family members. This protein kinase has been reported to be involved in many different cellular functions, such as B cell activation, apoptosis induction, endothelial cell proliferation, and intestinal sugar absorption. Studies in mice also suggest that this kinase may also regulate neuronal functions and correlate fear-induced conflict behavior after stress. Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000122257 | RBBP6 | retinoblastoma binding protein 6 | 5930 | The retinoblastoma tumor suppressor (pRB) protein binds with many other proteins. In various human cancers, pRB suppresses cellular proliferation and is inactivated. Cell cycle-dependent phosphorylation regulates the activity of pRB. This gene encodes a protein which binds to underphosphorylated but not phosphorylated pRB. Multiple alternatively spliced transcript variants that encode different isoforms have been found for this gene. |
| NA | ENSG00000090905 | TNRC6A | trinucleotide repeat containing 6A | 27327 | This gene encodes a member of the trinucleotide repeat containing 6 protein family. The protein functions in post-transcriptional gene silencing through the RNA interference (RNAi) and microRNA pathways. The protein associates with messenger RNAs and Argonaute proteins in cytoplasmic bodies known as GW-bodies or P-bodies. Inhibiting expression of this gene delocalizes other GW-body proteins and impairs RNAi and microRNA-induced gene silencing. |
| NA | ENSG00000140750 | ARHGAP17 | Rho GTPase activating protein 17 | 55114 | RICH1 is a GTPase-activating protein (GAP). GAPs stimulate the intrinsic GTP hydrolysis of small G proteins, such as RHOA (MIM 165390), RAC1 (MIM 602048), and CDC42 (MIM 116952). |
| NA | ENSG00000205629 | LCMT1 | leucine carboxyl methyltransferase 1 | 51451 | LCMT1 catalyzes the methylation of the carboxyl group of the C-terminal leucine residue (leu309) of the catalytic subunit of protein phosphatase-2A (PPP2CA; MIM 176915) (De Baere et al., 1999 [PubMed 10600115]). |
| NA | ENSG00000155592 | ZKSCAN2 | zinc finger with KRAB and SCAN domains 2 | 342357 | NA |
| NA | ENSG00000182601 | HS3ST4 | heparan sulfate-glucosamine 3-sulfotransferase 4 | 9951 | This gene encodes the enzyme heparan sulfate D-glucosaminyl 3-O-sulfotransferase 4. This enzyme generates 3-O-sulfated glucosaminyl residues in heparan sulfate. Cell surface heparan sulfate is used as a receptor by herpes simplex virus type 1 (HSV-1), and expression of this gene is thought to play a role in HSV-1 pathogenesis. |
| NA | ENSG00000155666 | KDM8 | lysine demethylase 8 | 79831 | This gene likely encodes a histone lysine demethylase. Studies of a similar protein in mouse indicate a potential role for this protein as a tumor suppressor. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000169189 | NSMCE1 | NSE1 homolog, SMC5-SMC6 complex component | 197370 | NA |
| NA | ENSG00000077238 | IL4R | interleukin 4 receptor | 3566 | This gene encodes the alpha chain of the interleukin-4 receptor, a type I transmembrane protein that can bind interleukin 4 and interleukin 13 to regulate IgE production. The encoded protein also can bind interleukin 4 to promote differentiation of Th2 cells. A soluble form of the encoded protein can be produced by proteolysis of the membrane-bound protein, and this soluble form can inhibit IL4-mediated cell proliferation and IL5 upregulation by T-cells. Allelic variations in this gene have been associated with atopy, a condition that can manifest itself as allergic rhinitis, sinusitus, asthma, or eczema. Polymorphisms in this gene are also associated with resistance to human immunodeficiency virus type-1 infection. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000077235 | GTF3C1 | general transcription factor IIIC subunit 1 | 2975 | NA |
| NA | ENSG00000047578 | KIAA0556 | KIAA0556 | 23247 | This gene encodes a novel, evolutionarily conserved, ciliary protein. In human hTERT-RPE1 cells, the protein is found at the base of cilia, decorating the ciliary axoneme, and enriched at the ciliary tip. The protein binds to microtubules in vitro and regulates their stability when it is overexpressed. A null mutation in this gene has been associated with Joubert syndrome, a recessive disorder that is characterized by a distinctive mid-hindbrain and cerebellar malformation and is also often associated with wider ciliopathy symptoms. Consistently, in a serum-starvation ciliogenesis assay, human fibroblast cells derived from patients with the mutation display a reduced number of ciliated cells with abnormally long cilia. |
| NA | ENSG00000169180 | XPO6 | exportin 6 | 23214 | The protein encoded by this gene is a member of the importin-beta family. Members of this family are regulated by the GTPase Ran to mediate transport of cargo across the nuclear envelope. This protein has been shown to mediate nuclear export of profilin-actin complexes. A pseudogene of this gene is located on the long arm of chromosome 14. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000188322 | SBK1 | SH3 domain binding kinase 1 | 388228 | NA |
| NA | ENSG00000205609 | EIF3CL | eukaryotic translation initiation factor 3 subunit C-like | 728689 | The protein encoded by this gene is a core subunit of the eukaryotic translation initiation factor 3 (eIF3) complex. The encoded protein is nearly identical to another protein, eIF3c, from a related gene. The eIF3 complex binds the 40S ribosome and mRNAs to enable translation initiation. Several transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000188603 | CLN3 | ceroid-lipofuscinosis, neuronal 3 | 1201 | This gene encodes a protein that is involved in lysosomal function. Mutations in this, as well as other neuronal ceroid-lipofuscinosis (CLN) genes, cause neurodegenerative diseases commonly known as Batten disease or collectively known as neuronal ceroid lipofuscinoses (NCLs). Many alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000176476 | SGF29 | SAGA complex associated factor 29 | 112869 | CCDC101 is a subunit of 2 histone acetyltransferase complexes: the ADA2A (TADA2A; MIM 602276)-containing (ATAC) complex and the SPT3 (SUPT3H; MIM 602947)-TAF9 (MIM 600822)-GCN5 (KAT2A; MIM 602301)/PCAF (KAT2B; MIM 602303) acetylase (STAGA) complex. Both of these complexes contain either GCN5 or PCAF, which are paralogous acetyltransferases (Wang et al., 2008 [PubMed 18838386]). |
| NA | ENSG00000197165 | SULT1A2 | sulfotransferase family 1A member 2 | 6799 | Sulfotransferase enzymes catalyze the sulfate conjugation of many hormones, neurotransmitters, drugs, and xenobiotic compounds. These cytosolic enzymes are different in their tissue distributions and substrate specificities. The gene structure (number and length of exons) is similar among family members. This gene encodes one of two phenol sulfotransferases with thermostable enzyme activity. Two alternatively spliced variants that encode the same protein have been described. |
| NA | ENSG00000196502 | SULT1A1 | sulfotransferase family 1A member 1 | 6817 | Sulfotransferase enzymes catalyze the sulfate conjugation of many hormones, neurotransmitters, drugs, and xenobiotic compounds. These cytosolic enzymes are different in their tissue distributions and substrate specificities. The gene structure (number and length of exons) is similar among family members. This gene encodes one of two phenol sulfotransferases with thermostable enzyme activity. Multiple alternatively spliced variants that encode two isoforms have been identified for this gene. |
| NA | ENSG00000184110 | EIF3C | eukaryotic translation initiation factor 3 subunit C | 8663 | NA |
| NA | ENSG00000184110 | EIF3CL | eukaryotic translation initiation factor 3 subunit C-like | 728689 | The protein encoded by this gene is a core subunit of the eukaryotic translation initiation factor 3 (eIF3) complex. The encoded protein is nearly identical to another protein, eIF3c, from a related gene. The eIF3 complex binds the 40S ribosome and mRNAs to enable translation initiation. Several transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000168488 | ATXN2L | ataxin 2 like | 11273 | This gene encodes an ataxin type 2 related protein of unknown function. This protein is a member of the spinocerebellar ataxia (SCAs) family, which is associated with a complex group of neurodegenerative disorders. Several alternatively spliced transcripts encoding different isoforms have been found for this gene. |
| NA | ENSG00000178952 | TUFM | Tu translation elongation factor, mitochondrial | 7284 | This gene encodes a protein which participates in protein translation in mitochondria. Mutations in this gene have been associated with combined oxidative phosphorylation deficiency resulting in lactic acidosis and fatal encephalopathy. A pseudogene has been identified on chromosome 17. |
| NA | ENSG00000177548 | RABEP2 | rabaptin, RAB GTPase binding effector protein 2 | 79874 | NA |
| NA | ENSG00000176953 | NFATC2IP | nuclear factor of activated T-cells 2 interacting protein | 84901 | NA |
| NA | ENSG00000169682 | SPNS1 | spinster homolog 1 (Drosophila) | 83985 | NA |
| NA | ENSG00000213658 | LAT | linker for activation of T-cells | 27040 | The protein encoded by this gene is phosphorylated by ZAP-70/Syk protein tyrosine kinases following activation of the T-cell antigen receptor (TCR) signal transduction pathway. This transmembrane protein localizes to lipid rafts and acts as a docking site for SH2 domain-containing proteins. Upon phosphorylation, this protein recruits multiple adaptor proteins and downstream signaling molecules into multimolecular signaling complexes located near the site of TCR engagement. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000254206 | NPIPB11 | nuclear pore complex interacting protein family member B11 | 728888 | NA |
| NA | ENSG00000261740 | RP11-345J4.5 | NA | ENSG00000261740 | NA |
| NA | ENSG00000181625 | SLX1B | SLX1 homolog B, structure-specific endonuclease subunit | 79008 | This gene encodes a protein that is an important regulator of genome stability. The protein represents the catalytic subunit of the SLX1-SLX4 structure-specific endonuclease, which can resolve DNA secondary structures that are formed during repair and recombination processes. Two identical copies of this gene are located on the p arm of chromosome 16 due to a segmental duplication; this record represents the more telomeric copy. Alternative splicing results in multiple transcript variants. Read-through transcription also occurs between this gene and the downstream SULT1A4 (sulfotransferase family, cytosolic, 1A, phenol-preferring, member 4) gene. |
| NA | ENSG00000181625 | LOC105369236 | structure-specific endonuclease subunit SLX1-like | 105369236 | NA |
| NA | ENSG00000213648 | SULT1A4 | sulfotransferase family 1A member 4 | 445329 | Sulfotransferase enzymes catalyze the sulfate conjugation of many hormones, neurotransmitters, drugs, and xenobiotic compounds. These cytosolic enzymes are different in their tissue distributions and substrate specificities. The gene structure (number and length of exons) is similar among family members. This gene encodes a phenol sulfotransferase with thermolabile enzyme activity. Four sulfotransferase genes are located on the p arm of chromosome 16, this gene and SULT1A3 arose from a segmental duplication. Read-through transcription exists between this gene and the upstream SLX1B (SLX1 structure-specific endonuclease subunit homolog B) gene that encodes a protein containing GIY-YIG domains. |
| NA | ENSG00000213648 | LOC105369243 | sulfotransferase 1A3-like | 105369243 | NA |
| NA | ENSG00000169203 | RP11-231C14.4 | NA | ENSG00000169203 | NA |
| NA | ENSG00000197471 | LOC105369261 | leukosialin | 105369261 | NA |
| NA | ENSG00000197471 | SPN | sialophorin | 6693 | The protein encoded by this gene is a major sialoglycoprotein found on the surface of thymocytes, T lymphocytes, monocytes, granulocytes, and some B lymphocytes. It may be part of a physiologic ligand-receptor complex involved in T-cell activation. During T-cell activation, this protein is actively removed from the T-cell-APC (antigen-presenting cell) contact site, suggesting a negative regulatory role in adaptive immune response. |
| NA | ENSG00000079616 | KIF22 | kinesin family member 22 | 3835 | The protein encoded by this gene is a member of the kinesin-like protein family. The family members are microtubule-dependent molecular motors that transport organelles within cells and move chromosomes during cell division. The C-terminal half of this protein has been shown to bind DNA. Studies with the Xenopus homolog suggests its essential role in metaphase chromosome alignment and maintenance. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000103495 | MAZ | MYC associated zinc finger protein | 4150 | NA |
| NA | ENSG00000167371 | PRRT2 | proline rich transmembrane protein 2 | 112476 | This gene encodes a transmembrane protein containing a proline-rich domain in its N-terminal half. Studies in mice suggest that it is predominantly expressed in brain and spinal cord in embryonic and postnatal stages. Mutations in this gene are associated with episodic kinesigenic dyskinesia-1. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| TRUE | ENSG00000185928 | NA | NA | NA | NA |
| NA | ENSG00000103502 | CDIPT | CDP-diacylglycerol–inositol 3-phosphatidyltransferase | 10423 | Phosphatidylinositol breakdown products are ubiquitous second messengers that function downstream of many G protein-coupled receptors and tyrosine kinases regulating cell growth, calcium metabolism, and protein kinase C activity. Two enzymes, CDP-diacylglycerol synthase and phosphatidylinositol synthase, are involved in the biosynthesis of phosphatidylinositol. Phosphatidylinositol synthase, a member of the CDP-alcohol phosphatidyl transferase class-I family, is an integral membrane protein found on the cytoplasmic side of the endoplasmic reticulum and the Golgi apparatus. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000174939 | ASPHD1 | aspartate beta-hydroxylase domain containing 1 | 253982 | NA |
| NA | ENSG00000174943 | KCTD13 | potassium channel tetramerization domain containing 13 | 253980 | NA |
| NA | ENSG00000149930 | TAOK2 | TAO kinase 2 | 9344 | This gene encodes a serine/threonine protein kinase that is involved in many different processes, including, cell signaling, microtubule organization and stability, and apoptosis. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000149929 | HIRIP3 | HIRA interacting protein 3 | 8479 | The HIRA protein shares sequence similarity with Hir1p and Hir2p, the two corepressors of histone gene transcription characterized in the yeast, Saccharomyces cerevisiae. The structural features of the HIRA protein suggest that it may function as part of a multiprotein complex. Several cDNAs encoding HIRA-interacting proteins, or HIRIPs, have been identified. In vitro, the protein encoded by this gene binds HIRA, as well as H2B and H3 core histones, indicating that a complex containing HIRA-HIRIP3 could function in some aspects of chromatin and histone metabolism. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000169592 | INO80E | INO80 complex subunit E | 283899 | NA |
| NA | ENSG00000149927 | DOC2A | double C2 domain alpha | 8448 | There are at least two protein isoforms of the Double C2 protein, namely alpha (DOC2A) and beta (DOC2B), which contain two C2-like domains. DOC2A and DOC2B are encoded by different genes; these genes are at times confused with the unrelated DAB2 gene which was initially named DOC-2. DOC2A is mainly expressed in brain and is suggested to be involved in Ca(2+)-dependent neurotransmitter release. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000149926 | FAM57B | family with sequence similarity 57 member B | 83723 | This gene encodes a transmembrane protein, which may be a likely target of peroxisome proliferator-activated receptor gamma (PPAR-gamma). The product of the orthologous gene in mouse is related to obesity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000149925 | ALDOA | aldolase, fructose-bisphosphate A | 226 | The protein encoded by this gene, Aldolase A (fructose-bisphosphate aldolase), is a glycolytic enzyme that catalyzes the reversible conversion of fructose-1,6-bisphosphate to glyceraldehyde 3-phosphate and dihydroxyacetone phosphate. Three aldolase isozymes (A, B, and C), encoded by three different genes, are differentially expressed during development. Aldolase A is found in the developing embryo and is produced in even greater amounts in adult muscle. Aldolase A expression is repressed in adult liver, kidney and intestine and similar to aldolase C levels in brain and other nervous tissue. Aldolase A deficiency has been associated with myopathy and hemolytic anemia. Alternative splicing and alternative promoter usage results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 3 and 10. |
| NA | ENSG00000149923 | PPP4C | protein phosphatase 4 catalytic subunit | 5531 | NA |
| NA | ENSG00000102882 | MAPK3 | mitogen-activated protein kinase 3 | 5595 | The protein encoded by this gene is a member of the MAP kinase family. MAP kinases, also known as extracellular signal-regulated kinases (ERKs), act in a signaling cascade that regulates various cellular processes such as proliferation, differentiation, and cell cycle progression in response to a variety of extracellular signals. This kinase is activated by upstream kinases, resulting in its translocation to the nucleus where it phosphorylates nuclear targets. Alternatively spliced transcript variants encoding different protein isoforms have been described. |
| NA | ENSG00000102879 | CORO1A | coronin 1A | 11151 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. Alternative splicing results in multiple transcript variants. A related pseudogene has been defined on chromosome 16. |
| NA | ENSG00000169627 | BOLA2B | bolA family member 2B | 654483 | This gene is located within a region of a segmental duplication on chromosome 16 and is identical to BOLA2 (bolA family member 2). The product of this gene belongs to a family of proteins that are widely conserved and may be involved in iron maturation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000261052 | SULT1A3 | sulfotransferase family 1A member 3 | 6818 | Sulfotransferase enzymes catalyze the sulfate conjugation of many hormones, neurotransmitters, drugs, and xenobiotic compounds. These cytosolic enzymes are different in their tissue distributions and substrate specificities. The gene structure (number and length of exons) is similar among family members. This gene encodes a phenol sulfotransferase with thermolabile enzyme activity. Four sulfotransferase genes are located on the p arm of chromosome 16; this gene and SULT1A4 arose from a segmental duplication. This gene is the most centromeric of the four sulfotransferase genes. Read-through transcription exists between this gene and the upstream SLX1A (SLX1 structure-specific endonuclease subunit homolog A) gene that encodes a protein containing GIY-YIG domains. |
| NA | ENSG00000261052 | LOC105369243 | sulfotransferase 1A3-like | 105369243 | NA |
| NA | ENSG00000198064 | NPIPB4 | nuclear pore complex interacting protein family member B4 | 440345 | NA |
| NA | ENSG00000169217 | CD2BP2 | CD2 (cytoplasmic tail) binding protein 2 | 10421 | This gene encodes a bi-functional protein. In the cytoplasm, the encoded protein binds the cytoplasmic tail of human surface antigen CD2 via its C-terminal GYF domain, and regulate CD2-triggered T lymphocyte activation. In the nucleus, this protein is a component of the U5 small nuclear ribonucleoprotein complex and is involved in RNA splicing. A pseudogene has been identified on chromosome 7. Alternative splicing results in multiple transcript variants but their biological validity has not been determined. |
| NA | ENSG00000169221 | TBC1D10B | TBC1 domain family member 10B | 26000 | Small G proteins of the RAB family (see MIM 179508) function in intracellular vesicle trafficking by switching from the GTP-bound state to the GDP-bound state with the assistance of guanine nucleotide exchange factors (GEFs; see MIM 609700) and GTPase-activating proteins (GAPs). TBC1D10B functions as a GAP for several proteins of the Rab family (Ishibashi et al., 2009 [PubMed 19077034]). |
| NA | ENSG00000180209 | MYLPF | myosin light chain, phosphorylatable, fast skeletal muscle | 29895 | NA |
| NA | ENSG00000180035 | ZNF48 | zinc finger protein 48 | 197407 | NA |
| NA | ENSG00000179958 | DCTPP1 | dCTP pyrophosphatase 1 | 79077 | The protein encoded by this gene is dCTP pyrophosphatase, which converts dCTP to dCMP and inorganic pyrophosphate. The encoded protein also displays weak activity against dTTP and dATP, but none against dGTP. This protein may be responsible for eliminating excess dCTP after DNA synthesis and may prevent overmethylation of CpG islands. Three transcript variants, one protein-coding and the other two non-protein coding, have been found for this gene. |
| NA | ENSG00000179918 | SEPHS2 | selenophosphate synthetase 2 | 22928 | This gene encodes an enzyme that synthesizes selenophosphate from selenide and ATP. Selenophosphate is the selenium donor used to synthesize selenocysteine, which is co-translationally incorporated into selenoproteins at in-frame UGA codons. Genes encoding selenocysteine contain a stem-loop secondary structure in their 3’ UTR called a selenocysteine insertion sequence (SECIS) element. The protein encoded by this gene contains a selenocysteine residue in its predicted active site. There is a pseudogene for this gene on chromosome 5. |
| NA | ENSG00000169957 | ZNF768 | zinc finger protein 768 | 79724 | NA |
| NA | ENSG00000169955 | ZNF747 | zinc finger protein 747 | 65988 | NA |
| NA | ENSG00000169951 | ZNF764 | zinc finger protein 764 | 92595 | NA |
| NA | ENSG00000229809 | ZNF688 | zinc finger protein 688 | 146542 | NA |
| NA | ENSG00000197162 | ZNF785 | zinc finger protein 785 | 146540 | NA |
| NA | ENSG00000156853 | ZNF689 | zinc finger protein 689 | 115509 | NA |
| NA | ENSG00000156858 | PRR14 | proline rich 14 | 78994 | The protein encoded by this gene tethers heterochromatin to the nuclear laminar scaffold by binding heterochromatin protein 1 (HP1) and the nuclear lamina. The tether is broken during mitosis and reforms quickly after mitosis, with the encoded protein first binding HP1 and then attaching to the nuclear lamina. This protein also has been shown to promote MyoD activity and skeletal myogenesis. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000156860 | FBRS | fibrosin | 64319 | Fibrosin is a lymphokine secreted by activated lymphocytes that induces fibroblast proliferation (Prakash and Robbins, 1998 [PubMed 9809749]). |
| NA | ENSG00000080603 | SRCAP | Snf2-related CREBBP activator protein | 10847 | This gene encodes the core catalytic component of the multiprotein chromatin-remodeling SRCAP complex. The encoded protein is an ATPase that is necessary for the incorporation of the histone variant H2A.Z into nucleosomes. It can function as a transcriptional activator in Notch-mediated, CREB-mediated and steroid receptor-mediated transcription. Mutations in this gene cause Floating-Harbor syndrome, a rare disorder characterized by short stature, language deficits and dysmorphic facial features. |
| NA | ENSG00000103549 | RNF40 | ring finger protein 40 | 9810 | The protein encoded by this gene contains a RING finger, a motif known to be involved in protein-protein and protein-DNA interactions. This protein was reported to interact with the tumor suppressor protein RB1. Studies of the rat counterpart suggested that this protein may function as an E3 ubiquitin-protein ligase, and facilitate the ubiquitination and degradation of syntaxin 1, which is an essential component of the neurotransmitter release machinery. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000102870 | ZNF629 | zinc finger protein 629 | 23361 | NA |
| NA | ENSG00000099385 | BCL7C | B-cell CLL/lymphoma 7C | 9274 | This gene is identified by the similarity of its product to the N-terminal region of BCL7A protein. The BCL7A protein is encoded by the gene known to be directly involved in a three-way gene translocation in a Burkitt lymphoma cell line. The function of this gene has not yet been determined. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000099364 | FBXL19 | F-box and leucine-rich repeat protein 19 | 54620 | This gene encodes a member of the Skp1-Cullin-F-box family of E3 ubiquitin ligases. The encoded protein is reported to bind to the transmembrane receptor interleukin 1 receptor-like 1 and regulate its ubiquitination and degradation. This protein has been linked to the regulation of pulmonary inflammation and psoriasis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175938 | ORAI3 | ORAI calcium release-activated calcium modulator 3 | 93129 | NA |
| NA | ENSG00000099381 | SETD1A | SET domain containing 1A | 9739 | The protein encoded by this gene is a component of a histone methyltransferase (HMT) complex that produces mono-, di-, and trimethylated histone H3 at Lys4. The protein contains SET domains, a RNA recognition motif domain and is a member of the class V-like SAM-binding methyltransferase superfamily. |
| NA | ENSG00000099365 | STX1B | syntaxin 1B | 112755 | The protein encoded by this gene belongs to a family of proteins thought to play a role in the exocytosis of synaptic vesicles. Vesicle exocytosis releases vesicular contents and is important to various cellular functions. For instance, the secretion of transmitters from neurons plays an important role in synaptic transmission. After exocytosis, the membrane and proteins from the vesicle are retrieved from the plasma membrane through the process of endocytosis. Mutations in this gene have been identified as one cause of fever-associated epilepsy syndromes. A possible link between this gene and Parkinson’s disease has also been suggested. |
| NA | ENSG00000103496 | STX4 | syntaxin 4 | 6810 | NA |
| NA | ENSG00000167394 | ZNF668 | zinc finger protein 668 | 79759 | NA |
| NA | ENSG00000167395 | ZNF646 | zinc finger protein 646 | 9726 | NA |
| NA | ENSG00000167397 | VKORC1 | vitamin K epoxide reductase complex subunit 1 | 79001 | This gene encodes the catalytic subunit of the vitamin K epoxide reductase complex, which is responsible for the reduction of inactive vitamin K 2,3-epoxide to active vitamin K in the endoplasmic reticulum membrane. Vitamin K is a required co-factor for carboxylation of glutamic acid residues by vitamin K-dependent gamma-carboxylase in blood-clotting enzymes. Allelic variation in this gene is associated with vitamin k-dependent clotting factors combined deficiency of 2, and increased resistance or sensitivity to warfarin, an inhibitor of vitamin K epoxide reductase. Pseudogenes of this gene are located on chromosomes 1 and X. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000103507 | BCKDK | branched chain ketoacid dehydrogenase kinase | 10295 | The branched-chain alpha-ketoacid dehydrogenase complex (BCKD) is an important regulator of the valine, leucine, and isoleucine catabolic pathways. The protein encoded by this gene is found in the mitochondrion, where it phosphorylates and inactivates BCKD. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000103510 | KAT8 | lysine acetyltransferase 8 | 84148 | This gene encodes a member of the MYST histone acetylase protein family. The encoded protein has a characteristic MYST domain containing an acetyl-CoA-binding site, a chromodomain typical of proteins which bind histones, and a C2HC-type zinc finger. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000089280 | FUS | FUS RNA binding protein | 2521 | This gene encodes a multifunctional protein component of the heterogeneous nuclear ribonucleoprotein (hnRNP) complex. The hnRNP complex is involved in pre-mRNA splicing and the export of fully processed mRNA to the cytoplasm. This protein belongs to the FET family of RNA-binding proteins which have been implicated in cellular processes that include regulation of gene expression, maintenance of genomic integrity and mRNA/microRNA processing. Alternative splicing results in multiple transcript variants. Defects in this gene result in amyotrophic lateral sclerosis type 6. |
| NA | ENSG00000103490 | PYCARD | PYD and CARD domain containing | 29108 | This gene encodes an adaptor protein that is composed of two protein-protein interaction domains: a N-terminal PYRIN-PAAD-DAPIN domain (PYD) and a C-terminal caspase-recruitment domain (CARD). The PYD and CARD domains are members of the six-helix bundle death domain-fold superfamily that mediates assembly of large signaling complexes in the inflammatory and apoptotic signaling pathways via the activation of caspase. In normal cells, this protein is localized to the cytoplasm; however, in cells undergoing apoptosis, it forms ball-like aggregates near the nuclear periphery. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000140691 | ARMC5 | armadillo repeat containing 5 | 79798 | This gene encodes a member of the ARM (armadillo/beta-catenin-like repeat) superfamily. The ARM repeat is a tandemly repeated sequence motif with approximately 40 amino acid long. This repeat is implicated in mediating protein-protein interactions. The encoded protein contains seven ARM repeats. Mutations in this gene are associated with primary bilateral macronodular adrenal hyperplasia, which is also known as ACTH-independent macronodular adrenal hyperplasia 2. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000140682 | TGFB1I1 | transforming growth factor beta 1 induced transcript 1 | 7041 | This gene encodes a coactivator of the androgen receptor, a transcription factor which is activated by androgen and has a key role in male sexual differentiation. The encoded protein is thought to regulate androgen receptor activity and may have a role to play in the treatment of prostate cancer. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000140688 | C16orf58 | chromosome 16 open reading frame 58 | 64755 | This gene encodes a putative transmembrane protein containing a conserved DUF647 domain that may be involved in protein-protein interaction. The encoded protein is related to a plant protein that participates in ultraviolet B light-sensing during root morphogenesis. |
| NA | ENSG00000169877 | AHSP | alpha hemoglobin stabilizing protein | 51327 | This gene encodes a molecular chaperone which binds specifically to free alpha-globin and is involved in hemoglobin assembly. The encoded protein binds to monomeric alpha-globin until it has been transferred to beta-globin to form a heterodimer, which in turn binds to another heterodimer to form the stable tetrameric hemoglobin. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197302 | ZNF720 | zinc finger protein 720 | 124411 | NA |
| NA | ENSG00000171241 | SHCBP1 | SHC SH2-domain binding protein 1 | 79801 | NA |
| NA | ENSG00000069329 | VPS35 | VPS35, retromer complex component | 55737 | This gene belongs to a group of vacuolar protein sorting (VPS) genes. The encoded protein is a component of a large multimeric complex, termed the retromer complex, involved in retrograde transport of proteins from endosomes to the trans-Golgi network. The close structural similarity between the yeast and human proteins that make up this complex suggests a similarity in function. Expression studies in yeast and mammalian cells indicate that this protein interacts directly with VPS35, which serves as the core of the retromer complex. |
| NA | ENSG00000155330 | C16orf87 | chromosome 16 open reading frame 87 | 388272 | NA |
| NA | ENSG00000166123 | GPT2 | glutamic pyruvate transaminase (alanine aminotransferase) 2 | 84706 | This gene encodes a mitochondrial alanine transaminase, a pyridoxal enzyme that catalyzes the reversible transamination between alanine and 2-oxoglutarate to generate pyruvate and glutamate. Alanine transaminases play roles in gluconeogenesis and amino acid metabolism in many tissues including skeletal muscle, kidney, and liver. Activating transcription factor 4 upregulates this gene under metabolic stress conditions in hepatocyte cell lines. A loss of function mutation in this gene has been associated with developmental encephalopathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171208 | NETO2 | neuropilin and tolloid like 2 | 81831 | This gene encodes a predicted transmembrane protein containing two extracellular CUB domains followed by a low-density lipoprotein class A (LDLa) domain. A similar gene in rats encodes a protein that modulates glutamate signaling in the brain by regulating kainate receptor function. Expression of this gene may be a biomarker for proliferating infantile hemangiomas. A pseudogene of this gene is located on the long arm of chromosome 8. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000129636 | ITFG1 | integrin alpha FG-GAP repeat containing 1 | 81533 | NA |
| NA | ENSG00000102893 | PHKB | phosphorylase kinase, beta | 5257 | Phosphorylase kinase is a polymer of 16 subunits, four each of alpha, beta, gamma and delta. The alpha subunit includes the skeletal muscle and hepatic isoforms, encoded by two different genes. The beta subunit is the same in both the muscle and hepatic isoforms, encoded by this gene, which is a member of the phosphorylase b kinase regulatory subunit family. The gamma subunit also includes the skeletal muscle and hepatic isoforms, encoded by two different genes. The delta subunit is a calmodulin and can be encoded by three different genes. The gamma subunits contain the active site of the enzyme, whereas the alpha and beta subunits have regulatory functions controlled by phosphorylation. The delta subunit mediates the dependence of the enzyme on calcium concentration. Mutations in this gene cause glycogen storage disease type 9B, also known as phosphorylase kinase deficiency of liver and muscle. Alternatively spliced transcript variants encoding different isoforms have been identified in this gene. Two pseudogenes have been found on chromosomes 14 and 20, respectively. |
| NA | ENSG00000102910 | LONP2 | lon peptidase 2, peroxisomal | 83752 | NA |
| NA | ENSG00000196470 | SIAH1 | siah E3 ubiquitin protein ligase 1 | 6477 | This gene encodes a protein that is a member of the seven in absentia homolog (SIAH) family. The protein is an E3 ligase and is involved in ubiquitination and proteasome-mediated degradation of specific proteins. The activity of this ubiquitin ligase has been implicated in the development of certain forms of Parkinson’s disease, the regulation of the cellular response to hypoxia and induction of apoptosis. Alternative splicing results in several additional transcript variants, some encoding different isoforms and others that have not been fully characterized. |
| NA | ENSG00000102924 | CBLN1 | cerebellin 1 precursor | 869 | This gene encodes a cerebellum-specific precursor protein, precerebellin, with similarity to the globular (non-collagen-like) domain of complement component C1qB. Precerebellin is processed to give rise to several derivatives, including the hexadecapeptide, cerebellin, which is highly enriched in postsynaptic structures of Purkinje cells. Cerebellin has also been found in human and rat adrenals, where it has been shown to enhance the secretory activity of this gland. |
| NA | ENSG00000205423 | CNEP1R1 | CTD nuclear envelope phosphatase 1 regulatory subunit 1 | 255919 | This gene encodes a transmembrane protein that belongs to the Tmemb_18A family. A similar protein in yeast is a component of an endoplasmic reticulum-associated protein phosphatase complex and is thought to play a role in the synthesis of triacylglycerol. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000155393 | HEATR3 | HEAT repeat containing 3 | 55027 | NA |
| NA | ENSG00000121274 | PAPD5 | PAP associated domain containing 5 | 64282 | NA |
| NA | ENSG00000166164 | BRD7 | bromodomain containing 7 | 29117 | This gene encodes a protein which is a member of the bromodomain-containing protein family. The product of this gene has been identified as a component of one form of the SWI/SNF chromatin remodeling complex, and as a protein which interacts with p53 and is required for p53-dependent oncogene-induced senescence which prevents tumor growth. Pseudogenes have been described on chromosomes 2, 3, 6, 13 and 14. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000140807 | NKD1 | naked cuticle homolog 1 (Drosophila) | 85407 | In the mouse, Nkd is a Dishevelled (see DVL1; MIM 601365)-binding protein that functions as a negative regulator of the Wnt (see WNT1; MIM 164820)-beta-catenin (see MIM 116806)-Tcf (see MIM 602272) signaling pathway. |
| NA | ENSG00000083799 | CYLD | CYLD lysine 63 deubiquitinase | 1540 | This gene is encodes a cytoplasmic protein with three cytoskeletal-associated protein-glycine-conserved (CAP-GLY) domains that functions as a deubiquitinating enzyme. Mutations in this gene have been associated with cylindromatosis, multiple familial trichoepithelioma, and Brooke-Spiegler syndrome. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000103449 | SALL1 | spalt-like transcription factor 1 | 6299 | The protein encoded by this gene is a zinc finger transcriptional repressor and may be part of the NuRD histone deacetylase complex (HDAC). Defects in this gene are a cause of Townes-Brocks syndrome (TBS) as well as bronchio-oto-renal syndrome (BOR). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000103460 | TOX3 | TOX high mobility group box family member 3 | 27324 | The protein encoded by this gene contains an HMG-box, indicating that it may be involved in bending and unwinding of DNA and alteration of chromatin structure. The C-terminus of the encoded protein is glutamine-rich due to CAG repeats in the coding sequence. A minor allele of this gene has been implicated in an elevated risk of breast cancer. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000177200 | CHD9 | chromodomain helicase DNA binding protein 9 | 80205 | NA |
| NA | ENSG00000103479 | RBL2 | retinoblastoma-like 2 | 5934 | NA |
| NA | ENSG00000166971 | AKTIP | AKT interacting protein | 64400 | The mouse homolog of this gene produces fused toes and thymic hyperplasia in heterozygous mutant animals while homozygous mutants die in early development. This gene may play a role in apoptosis as these morphological abnormalities are caused by altered patterns of programmed cell death. The protein encoded by this gene is similar to the ubiquitin ligase domain of other ubiquitin-conjugating enzymes but lacks the conserved cysteine residue that enables those enzymes to conjugate ubiquitin to the target protein. This protein interacts directly with serine/threonine kinase protein kinase B (PKB)/Akt and modulates PKB activity by enhancing the phosphorylation of PKB’s regulatory sites. Alternative splicing results in two transcript variants encoding the same protein. |
| NA | ENSG00000103494 | RPGRIP1L | RPGRIP1-like | 23322 | The protein encoded by this gene can localize to the basal body-centrosome complex or to primary cilia and centrosomes in ciliated cells. The encoded protein has been found to interact with nephrocystin-4. Defects in this gene are a cause of Joubert syndrome type 7 (JBTS7) and Meckel syndrome type 5 (MKS5). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000140718 | FTO | fat mass and obesity associated | 79068 | This gene is a nuclear protein of the AlkB related non-haem iron and 2-oxoglutarate-dependent oxygenase superfamily but the exact physiological function of this gene is not known. Other non-heme iron enzymes function to reverse alkylated DNA and RNA damage by oxidative demethylation. Studies in mice and humans indicate a role in nervous and cardiovascular systems and a strong association with body mass index, obesity risk, and type 2 diabetes. |
| NA | ENSG00000087245 | MMP2 | matrix metallopeptidase 2 | 4313 | This gene is a member of the matrix metalloproteinase (MMP) gene family, that are zinc-dependent enzymes capable of cleaving components of the extracellular matrix and molecules involved in signal transduction. The protein encoded by this gene is a gelatinase A, type IV collagenase, that contains three fibronectin type II repeats in its catalytic site that allow binding of denatured type IV and V collagen and elastin. Unlike most MMP family members, activation of this protein can occur on the cell membrane. This enzyme can be activated extracellularly by proteases, or, intracellulary by its S-glutathiolation with no requirement for proteolytical removal of the pro-domain. This protein is thought to be involved in multiple pathways including roles in the nervous system, endometrial menstrual breakdown, regulation of vascularization, and metastasis. Mutations in this gene have been associated with Winchester syndrome and Nodulosis-Arthropathy-Osteolysis (NAO) syndrome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000087253 | LPCAT2 | lysophosphatidylcholine acyltransferase 2 | 54947 | This gene encodes a member of the lysophospholipid acyltransferase family. The encoded enzyme may function in two ways: to catalyze the biosynthesis of platelet-activating factor (1-O-alkyl-2-acetyl-sn-glycero-3-phosphocholine) from 1-O-alkyl-sn-glycero-3-phosphocholine, and to catalyze the synthesis of glycerophospholipid precursors from arachidonyl-CoA and lysophosphatidylcholine. The encoded protein may function in membrane biogenesis and production of platelet-activating factor in inflammatory cells. The enzyme may localize to the endoplasmic reticulum and the Golgi. |
| NA | ENSG00000087258 | GNAO1 | G protein subunit alpha o1 | 2775 | The protein encoded by this gene represents the alpha subunit of the Go heterotrimeric G-protein signal-transducing complex. Defects in this gene are a cause of early-onset epileptic encephalopathy. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000159461 | AMFR | autocrine motility factor receptor | 267 | This locus encodes a glycosylated transmembrane receptor. Its ligand, autocrine motility factor, is a tumor motility-stimulating protein secreted by tumor cells. The encoded receptor is also a member of the E3 ubiquitin ligase family of proteins. It catalyzes ubiquitination and endoplasmic reticulum-associated degradation of specific proteins. |
| NA | ENSG00000167005 | NUDT21 | nudix hydrolase 21 | 11051 | The protein encoded by this gene is one subunit of a cleavage factor required for 3’ RNA cleavage and polyadenylation processing. The interaction of the protein with the RNA is one of the earliest steps in the assembly of the 3’ end processing complex and facilitates the recruitment of other processing factors. This gene encodes the 25kD subunit of the protein complex, which is composed of four polypeptides. |
| NA | ENSG00000087263 | OGFOD1 | 2-oxoglutarate and iron dependent oxygenase domain containing 1 | 55239 | NA |
| NA | ENSG00000125124 | BBS2 | Bardet-Biedl syndrome 2 | 583 | This gene is a member of the Bardet-Biedl syndrome (BBS) gene family. Bardet-Biedl syndrome is an autosomal recessive disorder characterized by severe pigmentary retinopathy, obesity, polydactyly, renal malformation and mental retardation. The proteins encoded by BBS gene family members are structurally diverse and the similar phenotypes exhibited by mutations in BBS gene family members is likely due to their shared roles in cilia formation and function. Many BBS proteins localize to the basal bodies, ciliary axonemes, and pericentriolar regions of cells. BBS proteins may also be involved in intracellular trafficking via microtubule-related transport. The protein encoded by this gene forms a multiprotein BBSome complex with seven other BBS proteins. |
| NA | ENSG00000125148 | MT2A | metallothionein 2A | 4502 | NA |
| NA | ENSG00000198417 | MT1F | metallothionein 1F | 4494 | NA |
| NA | ENSG00000187193 | MT1X | metallothionein 1X | 4501 | NA |
| NA | ENSG00000102900 | NUP93 | nucleoporin 93kDa | 9688 | NA |
| NA | ENSG00000051108 | HERPUD1 | homocysteine inducible ER protein with ubiquitin like domain 1 | 9709 | The accumulation of unfolded proteins in the endoplasmic reticulum (ER) triggers the ER stress response. This response includes the inhibition of translation to prevent further accumulation of unfolded proteins, the increased expression of proteins involved in polypeptide folding, known as the unfolded protein response (UPR), and the destruction of misfolded proteins by the ER-associated protein degradation (ERAD) system. This gene may play a role in both UPR and ERAD. Its expression is induced by UPR and it has an ER stress response element in its promoter region while the encoded protein has an N-terminal ubiquitin-like domain which may interact with the ERAD system. This protein has been shown to interact with presenilin proteins and to increase the level of amyloid-beta protein following its overexpression. Alternative splicing of this gene produces multiple transcript variants encoding different isoforms. The full-length nature of all transcript variants has not been determined. |
| NA | ENSG00000140848 | CPNE2 | copine 2 | 221184 | Calcium-dependent membrane-binding proteins may regulate molecular events at the interface of the cell membrane and cytoplasm. This gene is one of several genes that encode a calcium-dependent protein containing two N-terminal type II C2 domains and an integrin A domain-like sequence in the C-terminus. Sequence analysis identified multiple alternatively spliced transcript variants but their full-length natures could not be determined. |
| NA | ENSG00000159579 | RSPRY1 | ring finger and SPRY domain containing 1 | 89970 | This gene encodes a glycoprotein that contains a RING-type zinc finger domain and an SPRY domain of unknown function. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000102931 | ARL2BP | ADP ribosylation factor like GTPase 2 binding protein | 23568 | ADP-ribosylation factor (ARF)-like proteins (ARLs) comprise a functionally distinct group of the ARF family of RAS-related GTPases. The protein encoded by this gene binds to ARL2.GTP with high affinity but does not interact with ARL2.GDP, activated ARF, or RHO proteins. The lack of detectable membrane association of this protein or ARL2 upon activation of ARL2 is suggestive of actions distinct from those of the ARFs. This protein is considered to be the first ARL2-specific effector identified, due to its interaction with ARL2.GTP but lack of ARL2 GTPase-activating protein activity. |
| NA | ENSG00000006210 | CX3CL1 | C-X3-C motif chemokine ligand 1 | 6376 | NA |
| NA | ENSG00000088682 | COQ9 | coenzyme Q9 | 57017 | This locus represents a mitochondrial ubiquinone biosynthesis gene. The encoded protein is likely necessary for biosynthesis of coenzyme Q10, as mutations at this locus have been associated with autosomal-recessive neonatal-onset primary coenzyme Q10 deficiency. |
| NA | ENSG00000102978 | POLR2C | polymerase (RNA) II subunit C | 5432 | This gene encodes the third largest subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. The product of this gene contains a cysteine rich region and exists as a heterodimer with another polymerase subunit, POLR2J. These two subunits form a core subassembly unit of the polymerase. A pseudogene has been identified on chromosome 21. |
| NA | ENSG00000125170 | DOK4 | docking protein 4 | 55715 | NA |
| NA | ENSG00000135736 | CCDC102A | coiled-coil domain containing 102A | 92922 | NA |
| NA | ENSG00000159618 | ADGRG5 | adhesion G protein-coupled receptor G5 | 221188 | This gene encodes a member of the adhesion family of G-protein coupled receptors. Members of this family are characterized by long N-termini and multiple functional domains. They may play a role in the immune system as well as in the central nervous system. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000140854 | KATNB1 | katanin regulatory subunit B1 | 10300 | Microtubules, polymers of alpha and beta tubulin subunits, form the mitotic spindle of a dividing cell and help to organize membranous organelles during interphase. Katanin is a heterodimer that consists of a 60 kDa ATPase (p60 subunit A 1) and an 80 kDa accessory protein (p80 subunit B 1). The p60 subunit acts to sever and disassemble microtubules, while the p80 subunit targets the enzyme to the centrosome. Katanin is a member of the AAA family of ATPases. |
| NA | ENSG00000159648 | TEPP | testis, prostate and placenta expressed | 374739 | NA |
| NA | ENSG00000166188 | ZNF319 | zinc finger protein 319 | 57567 | NA |
| NA | ENSG00000103005 | USB1 | U6 snRNA biogenesis 1 | 79650 | This gene encodes a protein with several conserved domains, however, its exact function is not known. Mutations in this gene are associated with poikiloderma with neutropenia (PN), which shows phenotypic overlap with Rothmund-Thomson syndrome (RTS) caused by mutations in the RECQL4 gene. It is believed that this gene product interacts with RECQL4 protein via SMAD4 proteins, explaining the partial clinical overlap between PN and RTS. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000070761 | CFAP20 | cilia and flagella associated protein 20 | 29105 | NA |
| NA | ENSG00000070770 | CSNK2A2 | casein kinase 2 alpha 2 | 1459 | NA |
| NA | ENSG00000103021 | CCDC113 | coiled-coil domain containing 113 | 29070 | NA |
| NA | ENSG00000103034 | NDRG4 | NDRG family member 4 | 65009 | This gene is a member of the N-myc downregulated gene family which belongs to the alpha/beta hydrolase superfamily. The protein encoded by this gene is a cytoplasmic protein that is required for cell cycle progression and survival in primary astrocytes and may be involved in the regulation of mitogenic signalling in vascular smooth muscles cells. Alternative splicing results in multiple transcripts encoding different isoforms. |
| NA | ENSG00000103037 | SETD6 | SET domain containing 6 | 79918 | This gene encodes a methyltransferase that adds a methyl group to the histone H2AZ, which is involved in nuclear receptor-dependent transcription. The protein also interacts with several endogenous proteins which are involved in nuclear hormone receptor signaling. A related pseudogene is located on chromosome 2. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000125107 | CNOT1 | CCR4-NOT transcription complex subunit 1 | 23019 | NA |
| NA | ENSG00000103042 | SLC38A7 | solute carrier family 38 member 7 | 55238 | NA |
| NA | ENSG00000125166 | GOT2 | glutamic-oxaloacetic transaminase 2 | 2806 | Glutamic-oxaloacetic transaminase is a pyridoxal phosphate-dependent enzyme which exists in cytoplasmic and inner-membrane mitochondrial forms, GOT1 and GOT2, respectively. GOT plays a role in amino acid metabolism and the urea and tricarboxylic acid cycles. The two enzymes are homodimeric and show close homology. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000150394 | CDH8 | cadherin 8 | 1006 | This gene encodes a type II classical cadherin from the cadherin superfamily, integral membrane proteins that mediate calcium-dependent cell-cell adhesion. Mature cadherin proteins are composed of a large N-terminal extracellular domain, a single membrane-spanning domain, and a small, highly conserved C-terminal cytoplasmic domain. The extracellular domain consists of 5 subdomains, each containing a cadherin motif, and appears to determine the specificity of the protein’s homophilic cell adhesion activity. Type II (atypical) cadherins are defined based on their lack of a HAV cell adhesion recognition sequence specific to type I cadherins. This particular cadherin is expressed in brain and is putatively involved in synaptic adhesion, axon outgrowth and guidance. |
| NA | ENSG00000140937 | CDH11 | cadherin 11 | 1009 | This gene encodes a type II classical cadherin from the cadherin superfamily, integral membrane proteins that mediate calcium-dependent cell-cell adhesion. Mature cadherin proteins are composed of a large N-terminal extracellular domain, a single membrane-spanning domain, and a small, highly conserved C-terminal cytoplasmic domain. Type II (atypical) cadherins are defined based on their lack of a HAV cell adhesion recognition sequence specific to type I cadherins. Expression of this particular cadherin in osteoblastic cell lines, and its upregulation during differentiation, suggests a specific function in bone development and maintenance. |
| NA | ENSG00000166548 | TK2 | thymidine kinase 2, mitochondrial | 7084 | This gene encodes a deoxyribonucleoside kinase that specifically phosphorylates thymidine, deoxycytidine, and deoxyuridine. The encoded enzyme localizes to the mitochondria and is required for mitochondrial DNA synthesis. Mutations in this gene are associated with a myopathic form of mitochondrial DNA depletion syndrome. Alternate splicing results in multiple transcript variants encoding distinct isoforms, some of which lack transit peptide, so are not localized to mitochondria. |
| NA | ENSG00000217555 | CKLF | chemokine-like factor | 51192 | The product of this gene is a cytokine. Cytokines are small proteins that have an essential role in the immune and inflammatory responses. This gene is one of several chemokine-like factor genes located in a cluster on chromosome 16. The protein encoded by this gene is a potent chemoattractant for neutrophils, monocytes and lymphocytes. It also can stimulate the proliferation of skeletal muscle cells. This protein may play important roles in inflammation and in the regeneration of skeletal muscle. Alternatively spliced transcript variants encoding different isoforms have been identified. Naturally occurring read-through transcription occurs between this locus and the neighboring locus CMTM1 (CKLF-like MARVEL transmembrane domain containing 1). |
| NA | ENSG00000140931 | CMTM3 | CKLF like MARVEL transmembrane domain containing 3 | 123920 | This gene belongs to the chemokine-like factor gene superfamily, a novel family that is similar to the chemokine and the transmembrane 4 superfamilies of signaling molecules. This gene is one of several chemokine-like factor genes located in a cluster on chromosome 16. Alternatively spliced transcript variants containing different 5’ UTRs, but encoding the same protein, have been identified. |
| NA | ENSG00000183723 | CMTM4 | CKLF like MARVEL transmembrane domain containing 4 | 146223 | This gene belongs to the chemokine-like factor gene superfamily, a novel family that is similar to the chemokine and the transmembrane 4 superfamilies of signaling molecules. This gene is one of several chemokine-like factor genes located in a cluster on chromosome 16. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000135720 | DYNC1LI2 | dynein cytoplasmic 1 light intermediate chain 2 | 1783 | Cytoplasmic dynein is a microtubule-associated motor protein (Hughes et al., 1995 [PubMed 7738094]). See DYNC1H1 (MIM 600112) for general information about dyneins. |
| NA | ENSG00000159593 | NAE1 | NEDD8 activating enzyme E1 subunit 1 | 8883 | The protein encoded by this gene binds to the beta-amyloid precursor protein. Beta-amyloid precursor protein is a cell surface protein with signal-transducing properties, and it is thought to play a role in the pathogenesis of Alzheimer’s disease. In addition, the encoded protein can form a heterodimer with UBE1C and bind and activate NEDD8, a ubiquitin-like protein. This protein is required for cell cycle progression through the S/M checkpoint. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000168748 | CA7 | carbonic anhydrase 7 | 766 | Carbonic anhydrases are a large family of zinc metalloenzymes that catalyze the reversible hydration of carbon dioxide. They participate in a variety of biological processes, including respiration, calcification, acid-base balance, bone resorption, and the formation of aqueous humor, cerebrospinal fluid, saliva, and gastric acid. They show extensive diversity in tissue distribution and in their subcellular localization. The cytosolic protein encoded by this gene is predominantly expressed in the salivary glands. Alternative splicing in the coding region results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000172840 | PDP2 | pyruvate dehyrogenase phosphatase catalytic subunit 2 | 57546 | NA |
| NA | ENSG00000166595 | FAM96B | family with sequence similarity 96 member B | 51647 | NA |
| NA | ENSG00000172831 | CES2 | carboxylesterase 2 | 8824 | This gene encodes a member of the carboxylesterase large family. The family members are responsible for the hydrolysis or transesterification of various xenobiotics, such as cocaine and heroin, and endogenous substrates with ester, thioester, or amide bonds. They may participate in fatty acyl and cholesterol ester metabolism, and may play a role in the blood-brain barrier system. The protein encoded by this gene is the major intestinal enzyme and functions in intestine drug clearance. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000067955 | CBFB | core-binding factor, beta subunit | 865 | The protein encoded by this gene is the beta subunit of a heterodimeric core-binding transcription factor belonging to the PEBP2/CBF transcription factor family which master-regulates a host of genes specific to hematopoiesis (e.g., RUNX1) and osteogenesis (e.g., RUNX2). The beta subunit is a non-DNA binding regulatory subunit; it allosterically enhances DNA binding by alpha subunit as the complex binds to the core site of various enhancers and promoters, including murine leukemia virus, polyomavirus enhancer, T-cell receptor enhancers and GM-CSF promoters. Alternative splicing generates two mRNA variants, each encoding a distinct carboxyl terminus. In some cases, a pericentric inversion of chromosome 16 [inv(16)(p13q22)] produces a chimeric transcript consisting of the N terminus of core-binding factor beta in a fusion with the C-terminal portion of the smooth muscle myosin heavy chain 11. This chromosomal rearrangement is associated with acute myeloid leukemia of the M4Eo subtype. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125149 | C16orf70 | chromosome 16 open reading frame 70 | 80262 | NA |
| NA | ENSG00000237172 | B3GNT9 | UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 9 | 84752 | NA |
| NA | ENSG00000196123 | KIAA0895L | KIAA0895-like | 653319 | NA |
| NA | ENSG00000205250 | E2F4 | E2F transcription factor 4 | 1874 | The protein encoded by this gene is a member of the E2F family of transcription factors. The E2F family plays a crucial role in the control of cell cycle and action of tumor suppressor proteins and is also a target of the transforming proteins of small DNA tumor viruses. The E2F proteins contain several evolutionally conserved domains found in most members of the family. These domains include a DNA binding domain, a dimerization domain which determines interaction with the differentiation regulated transcription factor proteins (DP), a transactivation domain enriched in acidic amino acids, and a tumor suppressor protein association domain which is embedded within the transactivation domain. This protein binds to all three of the tumor suppressor proteins pRB, p107 and p130, but with higher affinity to the last two. It plays an important role in the suppression of proliferation-associated genes, and its gene mutation and increased expression may be associated with human cancer. |
| NA | ENSG00000102890 | ELMO3 | engulfment and cell motility 3 | 79767 | The protein encoded by this gene is similar to a C. elegans protein that functions in phagocytosis of apoptotic cells and in cell migration. Other members of this small family of engulfment and cell motility (ELMO) proteins have been shown to interact with the dedicator of cyto-kinesis 1 protein to promote phagocytosis and effect cell shape changes. |
| NA | ENSG00000135723 | FHOD1 | formin homology 2 domain containing 1 | 29109 | This gene encodes a protein which is a member of the formin/diaphanous family of proteins. The gene is ubiquitously expressed but is found in abundance in the spleen. The encoded protein has sequence homology to diaphanous and formin proteins within the Formin Homology (FH)1 and FH2 domains. It also contains a coiled-coil domain, a collagen-like domain, two nuclear localization signals, and several potential PKC and PKA phosphorylation sites. It is a predominantly cytoplasmic protein and is expressed in a variety of human cell lines. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000135740 | SLC9A5 | solute carrier family 9 member A5 | 6553 | NA |
| NA | ENSG00000196155 | PLEKHG4 | pleckstrin homology and RhoGEF domain containing G4 | 25894 | The protein encoded by this gene can function as a guanine nucleotide exchange factor (GEF) and may play a role in intracellular signaling and cytoskeleton dynamics at the Golgi apparatus. Polymorphisms in the region of this gene have been found to be associated with spinocerebellar ataxia in some study populations. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000176387 | HSD11B2 | hydroxysteroid (11-beta) dehydrogenase 2 | 3291 | There are at least two isozymes of the corticosteroid 11-beta-dehydrogenase, a microsomal enzyme complex responsible for the interconversion of cortisol and cortisone. The type I isozyme has both 11-beta-dehydrogenase (cortisol to cortisone) and 11-oxoreductase (cortisone to cortisol) activities. The type II isozyme, encoded by this gene, has only 11-beta-dehydrogenase activity. In aldosterone-selective epithelial tissues such as the kidney, the type II isozyme catalyzes the glucocorticoid cortisol to the inactive metabolite cortisone, thus preventing illicit activation of the mineralocorticoid receptor. In tissues that do not express the mineralocorticoid receptor, such as the placenta and testis, it protects cells from the growth-inhibiting and/or pro-apoptotic effects of cortisol, particularly during embryonic development. Mutations in this gene cause the syndrome of apparent mineralocorticoid excess and hypertension. |
| NA | ENSG00000159720 | ATP6V0D1 | ATPase H+ transporting V0 subunit d1 | 9114 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A and three B subunits, two G subunits plus the C, D, E, F, and H subunits. The V1 domain contains the ATP catalytic site. The V0 domain consists of five different subunits: a, c, c’, c’’, and d. Additional isoforms of many of the V1 and V0 subunit proteins are encoded by multiple genes or alternatively spliced transcript variants. This encoded protein is known as the D subunit and is found ubiquitously. |
| NA | ENSG00000102974 | CTCF | CCCTC-binding factor | 10664 | This gene is a member of the BORIS + CTCF gene family and encodes a transcriptional regulator protein with 11 highly conserved zinc finger (ZF) domains. This nuclear protein is able to use different combinations of the ZF domains to bind different DNA target sequences and proteins. Depending upon the context of the site, the protein can bind a histone acetyltransferase (HAT)-containing complex and function as a transcriptional activator or bind a histone deacetylase (HDAC)-containing complex and function as a transcriptional repressor. If the protein is bound to a transcriptional insulator element, it can block communication between enhancers and upstream promoters, thereby regulating imprinted expression. Mutations in this gene have been associated with invasive breast cancers, prostate cancers, and Wilms’ tumors. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000159753 | RLTPR | RGD motif, leucine rich repeats, tropomodulin domain and proline-rich containing | 146206 | NA |
| NA | ENSG00000102977 | ACD | adrenocortical dysplasia homolog (mouse) | 65057 | This gene encodes a protein that is involved in telomere function. This protein is one of six core proteins in the telosome/shelterin telomeric complex, which functions to maintain telomere length and to protect telomere ends. Through its interaction with other components, this protein plays a key role in the assembly and stabilization of this complex, and it mediates the access of telomerase to the telomere. Multiple transcript variants encoding different isoforms have been found for this gene. This gene, which is also referred to as TPP1, is distinct from the unrelated TPP1 gene on chromosome 11, which encodes tripeptidyl-peptidase I. |
| NA | ENSG00000102981 | PARD6A | par-6 family cell polarity regulator alpha | 50855 | This gene is a member of the PAR6 family and encodes a protein with a PSD95/Discs-large/ZO1 (PDZ) domain and a semi-Cdc42/Rac interactive binding (CRIB) domain. This cell membrane protein is involved in asymmetrical cell division and cell polarization processes as a member of a multi-protein complex. The protein also has a role in the epithelial-to-mesenchymal transition (EMT) that characterizes the invasive phenotype associated with metastatic carcinomas. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000124074 | ENKD1 | enkurin domain containing 1 | 84080 | NA |
| NA | ENSG00000141098 | GFOD2 | glucose-fructose oxidoreductase domain containing 2 | 81577 | NA |
| NA | ENSG00000141084 | RANBP10 | RAN binding protein 10 | 57610 | RAN is a small GTPase involved in the assembly of microtubules to form mitotic spindles. The protein encoded by this gene is a cytoplasmic guanine nucleotide exchange factor (GEF) that binds beta-tubulin and has GEF activity toward RAN. The encoded protein plays a role in the formation of noncentrosomal microtubules. In addition, this protein may be involved in the regulation of D(1) receptor signaling by protein kinase C delta and protein kinase C gamma. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000102901 | CENPT | centromere protein T | 80152 | The centromere is a specialized chromatin domain, present throughout the cell cycle, that acts as a platform on which the transient assembly of the kinetochore occurs during mitosis. All active centromeres are characterized by the presence of long arrays of nucleosomes in which CENPA (MIM 117139) replaces histone H3 (see MIM 601128). CENPT is an additional factor required for centromere assembly (Foltz et al., 2006 [PubMed 16622419]). |
| NA | ENSG00000168286 | THAP11 | THAP domain containing 11 | 57215 | The protein encoded by this gene contains a THAP domain, which is a conserved DNA-binding domain that has striking similarity to the site-specific DNA-binding domain (DBD) of Drosophila P element transposases. |
| NA | ENSG00000102898 | NUTF2 | nuclear transport factor 2 | 10204 | The protein encoded by this gene is a cytosolic factor that facilitates protein transport into the nucleus. It interacts with the nuclear pore complex glycoprotein p62. This encoded protein acts at a relative late stage of nuclear protein import, subsequent to the initial docking of nuclear import ligand at the nuclear envelope. It is thought to be part of a multicomponent system of cytosolic factors that assemble at the pore complex during nuclear import. |
| NA | ENSG00000038358 | EDC4 | enhancer of mRNA decapping 4 | 23644 | NA |
| NA | ENSG00000188038 | NRN1L | neuritin 1 like | 123904 | NA |
| NA | ENSG00000159792 | PSKH1 | protein serine kinase H1 | 5681 | NA |
| NA | ENSG00000205220 | PSMB10 | proteasome subunit beta 10 | 5699 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the proteasome B-type family, also known as the T1B family, that is a 20S core beta subunit. Proteolytic processing is required to generate a mature subunit. Expression of this gene is induced by gamma interferon, and this gene product replaces catalytic subunit 2 (proteasome beta 7 subunit) in the immunoproteasome. |
| NA | ENSG00000213398 | LCAT | lecithin-cholesterol acyltransferase | 3931 | This gene encodes the extracellular cholesterol esterifying enzyme, lecithin-cholesterol acyltransferase. The esterification of cholesterol is required for cholesterol transport. Mutations in this gene have been found to cause fish-eye disease as well as LCAT deficiency. |
| NA | ENSG00000124067 | SLC12A4 | solute carrier family 12 member 4 | 6560 | This gene encodes a member of the SLC12A transporter family. The encoded protein mediates the coupled movement of potassium and chloride ions across the plasma membrane. This gene is expressed ubiquitously. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000167264 | DUS2 | dihydrouridine synthase 2 | 54920 | This gene encodes a cytoplasmic protein that catalyzes the conversion of uridine residues to dihydrouridine in the D-loop of tRNA. The resulting modified bases confer enhanced regional flexibility to tRNA. The encoded protein may increase the rate of translation by inhibiting an interferon-induced protein kinase. This gene has been implicated in pulmonary carcinogenesis. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000182810 | DDX28 | DEAD-box helicase 28 | 55794 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of the DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene is intronless. It encodes an RNA-dependent ATPase. The encoded protein is localized in the mitochondria and the nucleus, and can be transported between the mitochondria and the nucleus. |
| NA | ENSG00000072736 | NFATC3 | nuclear factor of activated T-cells 3 | 4775 | The product of this gene is a member of the nuclear factors of activated T cells DNA-binding transcription complex. This complex consists of at least two components: a preexisting cytosolic component that translocates to the nucleus upon T cell receptor (TCR) stimulation and an inducible nuclear component. Other members of this family participate to form this complex also. The product of this gene plays a role in the regulation of gene expression in T cells and immature thymocytes. Several transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000103067 | ESRP2 | epithelial splicing regulatory protein 2 | 80004 | ESPR2 is an epithelial cell-type-specific splicing regulator (Warzecha et al., 2009 [PubMed 19285943]). |
| NA | ENSG00000103066 | PLA2G15 | phospholipase A2 group XV | 23659 | Lysophospholipases are enzymes that act on biological membranes to regulate the multifunctional lysophospholipids. The protein encoded by this gene hydrolyzes lysophosphatidylcholine to glycerophosphorylcholine and a free fatty acid. This enzyme is present in the plasma and thought to be associated with high-density lipoprotein. A later paper contradicts the function of this gene. It demonstrates that this gene encodes a lysosomal enzyme instead of a lysophospholipase and has both calcium-independent phospholipase A2 and transacylase activities. |
| NA | ENSG00000103064 | SLC7A6 | solute carrier family 7 member 6 | 9057 | NA |
| NA | ENSG00000103061 | SLC7A6OS | solute carrier family 7 member 6 opposite strand | 84138 | NA |
| NA | ENSG00000132600 | PRMT7 | protein arginine methyltransferase 7 | 54496 | Arginine methylation is an apparently irreversible protein modification catalyzed by arginine methyltransferases, such as PMT7, using S-adenosylmethionine (AdoMet) as the methyl donor. Arginine methylation is implicated in signal transduction, RNA transport, and RNA splicing (Miranda et al., 2004 [PubMed 15044439]). |
| NA | ENSG00000184939 | ZFP90 | ZFP90 zinc finger protein | 146198 | This gene encodes a member of the zinc finger protein family that modulates gene expression. The encoded protein derepresses the transcription of certain fetal cardiac genes and may contribute to the genetic reprogramming that occurs during the development of heart failure. Genome wide association studies have identified this gene among ulcerative colitis risk loci. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000062038 | CDH3 | cadherin 3 | 1001 | This gene encodes a classical cadherin of the cadherin superfamily. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate the mature glycoprotein. This calcium-dependent cell-cell adhesion protein is comprised of five extracellular cadherin repeats, a transmembrane region and a highly conserved cytoplasmic tail. This gene is located in a gene cluster in a region on the long arm of chromosome 16 that is involved in loss of heterozygosity events in breast and prostate cancer. In addition, aberrant expression of this protein is observed in cervical adenocarcinomas. Mutations in this gene are associated with hypotrichosis with juvenile macular dystrophy and ectodermal dysplasia, ectrodactyly, and macular dystrophy syndrome (EEMS). |
| NA | ENSG00000039068 | CDH1 | cadherin 1 | 999 | This gene encodes a classical cadherin of the cadherin superfamily. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate the mature glycoprotein. This calcium-dependent cell-cell adhesion protein is comprised of five extracellular cadherin repeats, a transmembrane region and a highly conserved cytoplasmic tail. Mutations in this gene are correlated with gastric, breast, colorectal, thyroid and ovarian cancer. Loss of function of this gene is thought to contribute to cancer progression by increasing proliferation, invasion, and/or metastasis. The ectodomain of this protein mediates bacterial adhesion to mammalian cells and the cytoplasmic domain is required for internalization. This gene is present in a gene cluster with other members of the cadherin family on chromosome 16. |
| NA | ENSG00000103047 | TANGO6 | transport and golgi organization 6 homolog | 79613 | NA |
| NA | ENSG00000103044 | HAS3 | hyaluronan synthase 3 | 3038 | The protein encoded by this gene is involved in the synthesis of the unbranched glycosaminoglycan hyaluronan, or hyaluronic acid, which is a major constituent of the extracellular matrix. This gene is a member of the NODC/HAS gene family. Compared to the proteins encoded by other members of this gene family, this protein appears to be more of a regulator of hyaluronan synthesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168802 | CHTF8 | chromosome transmission fidelity factor 8 | 54921 | This gene encodes a short protein that forms part of the Ctf18 replication factor C (RFC) complex that occurs in both yeast and mammals. The heteroheptameric RFC complex plays a role in sister chromatid cohesion and may load the replication clamp PCNA (proliferating cell nuclear antigen) onto DNA during DNA replication and repair. This gene is ubiquitously expressed and has been shown to have reduced expression in renal and prostate tumors. Alternatively spliced transcript variants have been described. This gene has a pseudogene on chromosome X. |
| NA | ENSG00000141076 | UTP4 | UTP4, small subunit processome component | 84916 | This gene encodes a WD40-repeat-containing protein that is localized to the nucleolus. Mutation of this gene causes North American Indian childhood cirrhosis, a severe intrahepatic cholestasis that results in transient neonatal jaundice, and progresses to periportal fibrosis and cirrhosis in childhood and adolescence. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168807 | SNTB2 | syntrophin beta 2 | 6645 | Dystrophin is a large, rod-like cytoskeletal protein found at the inner surface of muscle fibers. Dystrophin is missing in Duchenne Muscular Dystrophy patients and is present in reduced amounts in Becker Muscular Dystrophy patients. The protein encoded by this gene is a peripheral membrane protein found associated with dystrophin and dystrophin-related proteins. This gene is a member of the syntrophin gene family, which contains at least two other structurally-related genes. |
| NA | ENSG00000132612 | VPS4A | vacuolar protein sorting 4 homolog A (S. cerevisiae) | 27183 | The protein encoded by this gene is a member of the AAA protein family (ATPases associated with diverse cellular activities), and is the homolog of the yeast Vps4 protein. In humans, two paralogs of the yeast protein have been identified. The former share a high degree of aa sequence similarity with each other, and also with yeast Vps4 and mouse Skd1 proteins. The mouse Skd1 (suppressor of K+ transport defect 1) has been shown to be really an yeast Vps4 ortholog. Functional studies indicate that both human paralogs associate with the endosomal compartments, and are involved in intracellular protein trafficking, similar to Vps4 protein in yeast. The gene encoding this paralog has been mapped to chromosome 16; the gene for the other resides on chromosome 18. |
| NA | ENSG00000213380 | COG8 | component of oligomeric golgi complex 8 | 84342 | This gene encodes a protein that is a component of the conserved oligomeric Golgi (COG) complex, a multiprotein complex that plays a structural role in the Golgi apparatus, and is involved in intracellular membrane trafficking and glycoprotein modification. Mutations in this gene cause congenital disorder of glycosylation, type IIh, a disease that is characterized by under-glycosylated serum proteins, and whose symptoms include severe psychomotor retardation, failure to thrive, seizures, and dairy and wheat product intolerance. |
| NA | ENSG00000258429 | peptide deformylase (mitochondrial) | 64146 | Protein synthesis proceeds after formylation of methionine by methionyl-tRNA formyl transferase (FMT) and transfer of the charged initiator f-met tRNA to the ribosome. In eubacteria and eukaryotic organelles the product of this gene, peptide deformylase (PDF), removes the formyl group from the initiating methionine of nascent peptides. In eubacteria, deformylation of nascent peptides is required for subsequent cleavage of initiating methionines by methionine aminopeptidase. The discovery that a natural inhibitor of PDF, actinonin, acts as an antimicrobial agent in some bacteria has spurred intensive research into the design of bacterial-specific PDF inhibitors. In human cells, only mitochondrial proteins have N-formylation of initiating methionines. Protein inhibitors of PDF or siRNAs of PDF block the growth of cancer cell lines but have no effect on normal cell growth. In humans, PDF function may therefore be restricted to rapidly growing cells. | |
| NA | ENSG00000132603 | NIP7 | NIP7, nucleolar pre-rRNA processing protein | 51388 | NA |
| NA | ENSG00000103018 | CYB5B | cytochrome b5 type B | 80777 | NA |
| NA | ENSG00000102908 | NFAT5 | nuclear factor of activated T-cells 5, tonicity-responsive | 10725 | The product of this gene is a member of the nuclear factors of activated T cells family of transcription factors. Proteins belonging to this family play a central role in inducible gene transcription during the immune response. This protein regulates gene expression induced by osmotic stress in mammalian cells. Unlike monomeric members of this protein family, this protein exists as a homodimer and forms stable dimers with DNA elements. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000141101 | NOB1 | NIN1/PSMD8 binding protein 1 homolog | 28987 | In yeast, over 200 protein and RNA cofactors are required for ribosome assembly, and these are generally conserved in eukaryotes. These factors orchestrate modification and cleavage of the initial 35S precursor rRNA transcript into the mature 18S, 5.8S, and 25S rRNAs, folding of the rRNA, and binding of ribosomal proteins and 5S RNA. Nob1 is involved in pre-rRNA processing. In a late cytoplasmic processing step, Nob1 cleaves a 20S rRNA intermediate at cleavage site D to produce the mature 18S rRNA (Lamanna and Karbstein, 2009 [PubMed 19706509]). |
| NA | ENSG00000198373 | WWP2 | WW domain containing E3 ubiquitin protein ligase 2 | 11060 | This gene encodes a member of the Nedd4 family of E3 ligases, which play an important role in protein ubiquitination. The encoded protein contains four WW domains and may play a role in multiple processes including chondrogenesis and the regulation of oncogenic signaling pathways via interactions with Smad proteins and the tumor suppressor PTEN. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 10. |
| NA | ENSG00000090857 | PDPR | pyruvate dehydrogenase phosphatase regulatory subunit | 55066 | NA |
| NA | ENSG00000223496 | EXOSC6 | exosome component 6 | 118460 | This gene product constitutes one of the subunits of the multisubunit particle called exosome, which mediates mRNA degradation. The composition of human exosome is similar to its yeast counterpart. This protein is homologous to the yeast Mtr3 protein. Its exact function is not known, however, it has been shown using a cell-free RNA decay system that the exosome is required for rapid degradation of unstable mRNAs containing AU-rich elements (AREs), but not for poly(A) shortening. The exosome does not recognize ARE-containing mRNAs on its own, but requires ARE-binding proteins that could interact with the exosome and recruit it to unstable mRNAs, thereby promoting their rapid degradation. |
| NA | ENSG00000090861 | AARS | alanyl-tRNA synthetase | 16 | The human alanyl-tRNA synthetase (AARS) belongs to a family of tRNA synthases, of the class II enzymes. Class II tRNA synthases evolved early in evolution and are highly conserved. This is reflected by the fact that 498 of the 968-residue polypeptide human AARS shares 41% identity witht the E.coli protein. tRNA synthases are the enzymes that interpret the RNA code and attach specific aminoacids to the tRNAs that contain the cognate trinucleotide anticodons. They consist of a catalytic domain which interacts with the amino acid acceptor-T psi C helix of the tRNA, and a second domain which interacts with the rest of the tRNA structure. |
| NA | ENSG00000157349 | DDX19B | DEAD-box helicase 19B | 11269 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which exhibits RNA-dependent ATPase and ATP-dependent RNA-unwinding activities. This protein is recruited to the cytoplasmic fibrils of the nuclear pore complex, where it participates in the export of mRNA from the nucleus. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000168872 | DDX19A | DEAD-box helicase 19A | 55308 | NA |
| NA | ENSG00000157350 | ST3GAL2 | ST3 beta-galactoside alpha-2,3-sialyltransferase 2 | 6483 | The protein encoded by this gene is a type II membrane protein that catalyzes the transfer of sialic acid from CMP-sialic acid to galactose-containing substrates. The encoded protein is normally found in the Golgi but can be proteolytically processed to a soluble form. This protein, which is a member of glycosyltransferase family 29, can use the same acceptor substrates as does sialyltransferase 4A. |
| NA | ENSG00000157353 | FUK | fucokinase | 197258 | The protein encoded by this gene belongs to the GHMP (galacto-, homoserine, mevalonate and phosphomevalonate) kinase family and catalyzes the phosphorylation of L-fucose to form beta-L-fucose 1-phosphate. This enzyme catalyzes the first step in the utilization of free L-fucose in glycoprotein and glycolipid synthesis. L-fucose may be important in mediating a number of cell-cell interactions such as blood group antigen recognition, inflammation, and metastatis. While several transcript variants may exist for this gene, the full-length nature of only one has been described to date. |
| NA | ENSG00000103051 | COG4 | component of oligomeric golgi complex 4 | 25839 | The protein encoded by this gene is a component of an oligomeric protein complex involved in the structure and function of the Golgi apparatus. Defects in this gene may be a cause of congenital disorder of glycosylation type IIj. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000189091 | SF3B3 | splicing factor 3b subunit 3 | 23450 | This gene encodes subunit 3 of the splicing factor 3b protein complex. Splicing factor 3b, together with splicing factor 3a and a 12S RNA unit, forms the U2 small nuclear ribonucleoproteins complex (U2 snRNP). The splicing factor 3b/3a complex binds pre-mRNA upstream of the intron’s branch site in a sequence independent manner and may anchor the U2 snRNP to the pre-mRNA. Splicing factor 3b is also a component of the minor U12-type spliceosome. Subunit 3 has also been identified as a component of the STAGA (SPT3-TAF(II)31-GCN5L acetylase) transcription coactivator-HAT (histone acetyltransferase) complex, and the TFTC (TATA-binding-protein-free TAF(II)-containing complex). These complexes may function in chromatin modification, transcription, splicing, and DNA repair. |
| NA | ENSG00000132613 | MTSS1L | metastasis suppressor 1-like | 92154 | NA |
| NA | ENSG00000103043 | VAC14 | Vac14 homolog (S. cerevisiae) | 55697 | The content of phosphatidylinositol 3,5-bisphosphate (PtdIns(3,5)P2) in endosomal membranes changes dynamically with fission and fusion events that generate or absorb intracellular transport vesicles. VAC14 is a component of a trimolecular complex that tightly regulates the level of PtdIns(3,5)P2. Other components of this complex are the PtdIns(3,5)P2-synthesizing enzyme PIKFYVE (MIM 609414) and the PtdIns(3,5)P2 phosphatase FIG4 (MIM 609390). VAC14 functions as an activator of PIKFYVE (Sbrissa et al., 2007 [PubMed 17556371]). |
| NA | ENSG00000157423 | HYDIN | HYDIN, axonemal central pair apparatus protein | 54768 | This gene encodes a protein that may be involved in cilia motility. Mutations in this gene cause of autosomal recessive primary ciliary dyskinesia-5, a disorder characterized by the accumulation of cerebrospinal fluid within the ventricles of the brain. A duplicate copy of this gene has been found in humans on chromosome 1. |
| NA | ENSG00000180917 | CMTR2 | cap methyltransferase 2 | 55783 | NA |
| NA | ENSG00000157429 | ZNF19 | zinc finger protein 19 | 7567 | The protein encoded by this gene contains a zinc finger, a nucleic acid-binding domain present in many transcription factors. This gene is located in a region next to ZNF23, a gene also encoding a zinc finger protein, on chromosome 16. |
| NA | ENSG00000140835 | CHST4 | carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 4 | 10164 | This gene encodes an N-acetylglucosamine 6-O sulfotransferase. The encoded enzyme transfers sulfate from 3’phosphoadenosine 5’phospho-sulfate to the 6-hydroxyl group of N-acetylglucosamine on glycoproteins. This protein is localized to the Golgi and is involved in the modification of glycan structures on ligands of the lymphocyte homing receptor L-selectin. Alternate splicing in the 5’ UTR results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000140832 | MARVELD3 | MARVEL domain containing 3 | 91862 | NA |
| NA | ENSG00000040199 | PHLPP2 | PH domain and leucine rich repeat protein phosphatase 2 | 23035 | NA |
| NA | ENSG00000166747 | AP1G1 | adaptor related protein complex 1 gamma 1 subunit | 164 | Adaptins are important components of clathrin-coated vesicles transporting ligand-receptor complexes from the plasma membrane or from the trans-Golgi network to lysosomes. The adaptin family of proteins is composed of four classes of molecules named alpha, beta-, beta prime- and gamma- adaptins. Adaptins, together with medium and small subunits, form a heterotetrameric complex called an adaptor, whose role is to promote the formation of clathrin-coated pits and vesicles. The protein encoded by this gene is a gamma-adaptin protein and it belongs to the adaptor complexes large subunits family. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000224470 | ATXN1L | ataxin 1 like | 342371 | NA |
| NA | ENSG00000182149 | IST1 | IST1, ESCRT-III associated factor | 9798 | This gene encodes a protein with MIT-interacting motifs that interacts with components of endosomal sorting complexes required for transport (ESCRT). ESCRT functions in vesicle budding, such as that which occurs during membrane abscission in cytokinesis. There is a pseudogene for this gene on chromosome 19. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000102984 | ZNF821 | zinc finger protein 821 | 55565 | This gene encodes a protein with two C2H2 zinc finger motifs and a score-and-three (23)-amino acid peptide repeat (STPR) domain. The STPR domain of the encoded protein binds to double stranded DNA and may also contain a nuclear localization signal, suggesting that this protein interacts with chromosomal DNA. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000102967 | DHODH | dihydroorotate dehydrogenase (quinone) | 1723 | The protein encoded by this gene catalyzes the fourth enzymatic step, the ubiquinone-mediated oxidation of dihydroorotate to orotate, in de novo pyrimidine biosynthesis. This protein is a mitochondrial protein located on the outer surface of the inner mitochondrial membrane. |
| NA | ENSG00000140830 | TXNL4B | thioredoxin like 4B | 54957 | NA |
| NA | ENSG00000140836 | ZFHX3 | zinc finger homeobox 3 | 463 | This gene encodes a transcription factor with multiple homeodomains and zinc finger motifs, and regulates myogenic and neuronal differentiation. The encoded protein suppresses expression of the alpha-fetoprotein gene by binding to an AT-rich enhancer motif. The protein has also been shown to negatively regulate c-Myb, and transactivate the cell cycle inhibitor cyclin-dependent kinase inhibitor 1A (also known as p21CIP1). This gene is reported to function as a tumor suppressor in several cancers, and sequence variants of this gene are also associated with atrial fibrillation. Multiple transcript variants expressed from alternate promoters and encoding different isoforms have been found for this gene. |
| NA | ENSG00000103035 | PSMD7 | proteasome 26S subunit, non-ATPase 7 | 5713 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a non-ATPase subunit of the 19S regulator. A pseudogene has been identified on chromosome 17. |
| NA | ENSG00000196436 | NPIPB15 | nuclear pore complex interacting protein family member B15 | 440348 | NA |
| NA | ENSG00000090863 | GLG1 | golgi glycoprotein 1 | 2734 | NA |
| NA | ENSG00000168411 | RFWD3 | ring finger and WD repeat domain 3 | 55159 | NA |
| NA | ENSG00000168404 | MLKL | mixed lineage kinase domain-like | 197259 | This gene belongs to the protein kinase superfamily. The encoded protein contains a protein kinase-like domain; however, is thought to be inactive because it lacks several residues required for activity. This protein plays a critical role in tumor necrosis factor (TNF)-induced necroptosis, a programmed cell death process, via interaction with receptor-interacting protein 3 (RIP3), which is a key signaling molecule in necroptosis pathway. Inhibitor studies and knockdown of this gene inhibited TNF-induced necrosis. High levels of this protein and RIP3 are associated with inflammatory bowel disease in children. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000103091 | WDR59 | WD repeat domain 59 | 79726 | NA |
| NA | ENSG00000186187 | ZNRF1 | zinc and ring finger 1, E3 ubiquitin protein ligase | 84937 | This gene encodes an E3 ubiquitin-protein ligase that plays a role in neural-cell differentiation. Overexpression of this gene causes neurite-like elongation. The encoded protein contains both a zinc finger and a RING finger motif and is localized in the endosome/lysosome compartment, indicating that it may be involved in ubiquitin-mediated protein modification, and in synaptic vessicle membranes in neurons. |
| NA | ENSG00000184517 | ZFP1 | ZFP1 zinc finger protein | 162239 | This gene belongs to the zinc finger protein family. Some members of this family bind to DNA by zinc-mediated secondary structures called zinc fingers, and are involved in transcriptional regulation. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000050820 | BCAR1 | breast cancer anti-estrogen resistance 1 | 9564 | BCAR1, or CAS, is an Src (MIM 190090) family kinase substrate involved in various cellular events, including migration, survival, transformation, and invasion (Sawada et al., 2006 [PubMed 17129785]). |
| NA | ENSG00000153774 | CFDP1 | craniofacial development protein 1 | 10428 | NA |
| NA | ENSG00000166822 | TMEM170A | transmembrane protein 170A | 124491 | NA |
| NA | ENSG00000183196 | CHST6 | carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 6 | 4166 | The protein encoded by this gene is an enzyme that catalyzes the transfer of a sulfate group to the GlcNAc residues of keratan. Keratan sulfate helps maintain corneal transparency. Defects in this gene are a cause of macular corneal dystrophy (MCD). |
| NA | ENSG00000205084 | TMEM231 | transmembrane protein 231 | 79583 | This gene encodes a transmembrane protein, which is a component of the B9 complex involved in the formation of the diffusion barrier between the cilia and plasma membrane. Mutations in this gene cause Joubert syndrome (JBTS). Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000034713 | GABARAPL2 | GABA type A receptor associated protein like 2 | 11345 | NA |
| NA | ENSG00000065457 | ADAT1 | adenosine deaminase, tRNA specific 1 | 23536 | This gene is a member of the ADAR (adenosine deaminase acting on RNA) family. Using site-specific adenosine modification, proteins encoded by these genes participate in the pre-mRNA editing of nuclear transcripts. The protein encoded by this gene, tRNA-specific adenosine deaminase 1, is responsible for the deamination of adenosine 37 to inosine in eukaryotic tRNA. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000065427 | KARS | lysyl-tRNA synthetase | 3735 | Aminoacyl-tRNA synthetases are a class of enzymes that charge tRNAs with their cognate amino acids. Lysyl-tRNA synthetase is a homodimer localized to the cytoplasm which belongs to the class II family of tRNA synthetases. It has been shown to be a target of autoantibodies in the human autoimmune diseases, polymyositis or dermatomyositis. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000166848 | TERF2IP | TERF2 interacting protein | 54386 | The gene encodes a protein that is part of a complex involved in telomere length regulation. Pseudogenes are present on chromosomes 5 and 22. |
| NA | ENSG00000103111 | MON1B | MON1 homolog B, secretory trafficking associated | 22879 | NA |
| NA | ENSG00000205078 | SYCE1L | synaptonemal complex central element protein 1-like | 100130958 | NA |
| NA | ENSG00000140876 | NUDT7 | nudix hydrolase 7 | 283927 | The protein encoded by this gene is a member of the Nudix hydrolase family. Nudix hydrolases eliminate potentially toxic nucleotide metabolites from the cell and regulate the concentrations and availability of many different nucleotide substrates, cofactors, and signaling molecules. Alternatively spliced transcript variants encoding multiple isoforms have been found for this gene. |
| NA | ENSG00000171724 | VAT1L | vesicle amine transport 1-like | 57687 | NA |
| NA | ENSG00000186153 | WWOX | WW domain containing oxidoreductase | 51741 | This gene encodes a member of the short-chain dehydrogenases/reductases (SDR) protein family. This gene spans the FRA16D common chromosomal fragile site and appears to function as a tumor suppressor gene. Expression of the encoded protein is able to induce apoptosis, while defects in this gene are associated with multiple types of cancer. Disruption of this gene is also associated with autosomal recessive spinocerebellar ataxia 12. Disruption of a similar gene in mouse results in impaired steroidogenesis, additionally suggesting a metabolic function for the protein. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000178573 | MAF | v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog | 4094 | The protein encoded by this gene is a DNA-binding, leucine zipper-containing transcription factor that acts as a homodimer or as a heterodimer. Depending on the binding site and binding partner, the encoded protein can be a transcriptional activator or repressor. This protein plays a role in the regulation of several cellular processes, including embryonic lens fiber cell development, increased T-cell susceptibility to apoptosis, and chondrocyte terminal differentiation. Defects in this gene are a cause of juvenile-onset pulverulent cataract as well as congenital cerulean cataract 4 (CCA4). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000166446 | CDYL2 | chromodomain protein, Y-like 2 | 124359 | NA |
| NA | ENSG00000103121 | CMC2 | C-x(9)-C motif containing 2 | 56942 | NA |
| NA | ENSG00000166451 | CENPN | centromere protein N | 55839 | The protein encoded by this gene forms part of the nucleosome-associated complex and is important for kinetochore assembly. It is bound to kinetochores during S phase and G2 and recruits other proteins to the centromere. Pseudogenes of this gene are located on chromosome 2. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000166454 | ATMIN | ATM interactor | 23300 | NA |
| NA | ENSG00000166455 | C16orf46 | chromosome 16 open reading frame 46 | 123775 | NA |
| NA | ENSG00000140905 | GCSH | glycine cleavage system protein H | 2653 | Degradation of glycine is brought about by the glycine cleavage system, which is composed of four mitochondrial protein components: P protein (a pyridoxal phosphate-dependent glycine decarboxylase), H protein (a lipoic acid-containing protein), T protein (a tetrahydrofolate-requiring enzyme), and L protein (a lipoamide dehydrogenase). The protein encoded by this gene is the H protein, which transfers the methylamine group of glycine from the P protein to the T protein. Defects in this gene are a cause of nonketotic hyperglycinemia (NKH). Two transcript variants, one protein-coding and the other probably not protein-coding,have been found for this gene. Also, several transcribed and non-transcribed pseudogenes of this gene exist throughout the genome. |
| NA | ENSG00000261609 | GAN | gigaxonin | 8139 | This gene encodes a member of the cytoskeletal BTB/kelch (Broad-Complex, Tramtrack and Bric a brac) repeat family. The encoded protein plays a role in neurofilament architecture and is involved in mediating the ubiquitination and degradation of some proteins. Defects in this gene are a cause of giant axonal neuropathy (GAN). |
| NA | ENSG00000153815 | CMIP | c-Maf inducing protein | 80790 | This gene encodes a c-Maf inducing protein that plays a role in T-cell signaling pathway. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000197943 | PLCG2 | phospholipase C gamma 2 | 5336 | The protein encoded by this gene is a transmembrane signaling enzyme that catalyzes the conversion of 1-phosphatidyl-1D-myo-inositol 4,5-bisphosphate to 1D-myo-inositol 1,4,5-trisphosphate (IP3) and diacylglycerol (DAG) using calcium as a cofactor. IP3 and DAG are second messenger molecules important for transmitting signals from growth factor receptors and immune system receptors across the cell membrane. Mutations in this gene have been found in autoinflammation, antibody deficiency, and immune dysregulation syndrome and familial cold autoinflammatory syndrome 3. |
| NA | ENSG00000135698 | MPHOSPH6 | M-phase phosphoprotein 6 | 10200 | NA |
| NA | ENSG00000230989 | HSBP1 | heat shock factor binding protein 1 | 3281 | The heat-shock response is elicited by exposure of cells to thermal and chemical stress and through the activation of HSFs (heat shock factors) results in the elevated expression of heat-shock induced genes. Heat shock factor binding protein 1 (HSBP1), is a 76-amino-acid protein that binds to heat shock factor 1(HSF1), which is a transcription factor involved in the HS response. During HS response, HSF1 undergoes conformational transition from an inert non-DNA-binding monomer to active functional trimers. HSBP1 is nuclear-localized and interacts with the active trimeric state of HSF1 to negatively regulate HSF1 DNA-binding activity. Overexpression of HSBP1 in mammalian cells represses the transactivation activity of HSF1. When overexpressed in C.elegans HSBP1 has severe effects on survival of the animals after thermal and chemical stress consistent with a role of HSBP1 as a negative regulator of heat shock response. |
| NA | ENSG00000103154 | NECAB2 | N-terminal EF-hand calcium binding protein 2 | 54550 | NA |
| NA | ENSG00000140943 | MBTPS1 | membrane bound transcription factor peptidase, site 1 | 8720 | This gene encodes a member of the subtilisin-like proprotein convertase family, which includes proteases that process protein and peptide precursors trafficking through regulated or constitutive branches of the secretory pathway. The encoded protein undergoes an initial autocatalytic processing event in the ER to generate a heterodimer which exits the ER and sorts to the cis/medial-Golgi where a second autocatalytic event takes place and the catalytic activity is acquired. It encodes a type 1 membrane bound protease which is ubiquitously expressed and regulates cholesterol or lipid homeostasis via cleavage of substrates at non-basic residues. Mutations in this gene may be associated with lysosomal dysfunction. |
| NA | ENSG00000103160 | HSDL1 | hydroxysteroid dehydrogenase like 1 | 83693 | NA |
| NA | ENSG00000103168 | TAF1C | TATA-box binding protein associated factor, RNA polymerase I subunit C | 9013 | Initiation of transcription by RNA polymerase I requires the formation of a complex composed of the TATA-binding protein (TBP) and three TBP-associated factors (TAFs) specific for RNA polymerase I. This complex, known as SL1, binds to the core promoter of ribosomal RNA genes to position the polymerase properly and acts as a channel for regulatory signals. This gene encodes the largest SL1-specific TAF. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000064270 | ATP2C2 | ATPase secretory pathway Ca2+ transporting 2 | 9914 | NA |
| NA | ENSG00000140950 | TLDC1 | TBC/LysM-associated domain containing 1 | 57707 | NA |
| NA | ENSG00000103187 | COTL1 | coactosin like F-actin binding protein 1 | 23406 | This gene encodes one of the numerous actin-binding proteins which regulate the actin cytoskeleton. This protein binds F-actin, and also interacts with 5-lipoxygenase, which is the first committed enzyme in leukotriene biosynthesis. Although this gene has been reported to map to chromosome 17 in the Smith-Magenis syndrome region, the best alignments for this gene are to chromosome 16. The Smith-Magenis syndrome region is the site of two related pseudogenes. |
| NA | ENSG00000135686 | KLHL36 | kelch like family member 36 | 79786 | NA |
| NA | ENSG00000103194 | USP10 | ubiquitin specific peptidase 10 | 9100 | Ubiquitin is a highly conserved protein that is covalently linked to other proteins to regulate their function and degradation. This gene encodes a member of the ubiquitin-specific protease family of cysteine proteases. The enzyme specifically cleaves ubiquitin from ubiquitin-conjugated protein substrates. The protein is found in the nucleus and cytoplasm. It functions as a co-factor of the DNA-bound androgen receptor complex, and is inhibited by a protein in the Ras-GTPase pathway. The human genome contains several pseudogenes similar to this gene. Several transcript variants, some protein-coding and others not protein-coding, have been found for this gene. |
| NA | ENSG00000103196 | CRISPLD2 | cysteine rich secretory protein LCCL domain containing 2 | 83716 | NA |
| NA | ENSG00000153786 | ZDHHC7 | zinc finger DHHC-type containing 7 | 55625 | NA |
| NA | ENSG00000135709 | KIAA0513 | KIAA0513 | 9764 | NA |
| NA | ENSG00000131149 | GSE1 | Gse1 coiled-coil protein | 23199 | NA |
| NA | ENSG00000131153 | GINS2 | GINS complex subunit 2 | 51659 | The yeast heterotetrameric GINS complex is made up of Sld5 (GINS4; MIM 610611), Psf1 (GINS1; MIM 610608), Psf2, and Psf3 (GINS3; MIM 610610). The formation of this complex is essential for the initiation of DNA replication in yeast and Xenopus egg extracts (Ueno et al., 2005 [PubMed 16287864]). See GINS1 for additional information about the GINS complex. |
| NA | ENSG00000103264 | FBXO31 | F-box protein 31 | 79791 | This gene is a member of the F-box family. Members are classified into three classes according to the substrate interaction domain, FBW for WD40 repeats, FBL for leucing-rich repeats, and FBXO for other domains. This protein, classified into the last category because of the lack of a recognizable substrate binding domain, has been proposed to be a component of the SCF ubiquitination complex. It is thought to bind and recruit substrate for ubiquitination and degradation. This protein may have a role in regulating the cell cycle as well as dendrite growth and neuronal migration. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000140941 | MAP1LC3B | microtubule associated protein 1 light chain 3 beta | 81631 | The product of this gene is a subunit of neuronal microtubule-associated MAP1A and MAP1B proteins, which are involved in microtubule assembly and important for neurogenesis. Studies on the rat homolog implicate a role for this gene in autophagy, a process that involves the bulk degradation of cytoplasmic component. |
| NA | ENSG00000140948 | ZCCHC14 | zinc finger CCHC-type containing 14 | 23174 | NA |
| NA | ENSG00000154118 | JPH3 | junctophilin 3 | 57338 | Junctional complexes between the plasma membrane and endoplasmic/sarcoplasmic reticulum are a common feature of all excitable cell types and mediate cross talk between cell surface and intracellular ion channels. The protein encoded by this gene is a component of junctional complexes and is composed of a C-terminal hydrophobic segment spanning the endoplasmic/sarcoplasmic reticulum membrane and a remaining cytoplasmic domain that shows specific affinity for the plasma membrane. CAG/CTG repeat expansions at the Huntington’s disease (HD)-like 2 locus have been identified in this gene, which is a member of the junctophilin gene family. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000104731 | KLHDC4 | kelch domain containing 4 | 54758 | NA |
| NA | ENSG00000104731 | LOC105371397 | uncharacterized LOC105371397 | 105371397 | NA |
| NA | ENSG00000103257 | SLC7A5 | solute carrier family 7 member 5 | 8140 | NA |
| NA | ENSG00000172530 | BANP | BTG3 associated nuclear protein | 54971 | This gene encodes a protein that binds to matrix attachment regions. The protein forms a complex with p53 and negatively regulates p53 transcription, and functions as a tumor suppressor and cell cycle regulator. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000179588 | ZFPM1 | zinc finger protein, FOG family member 1 | 161882 | NA |
| NA | ENSG00000124391 | IL17C | interleukin 17C | 27189 | The protein encoded by this gene is a T cell-derived cytokine that shares the sequence similarity with IL17. This cytokine was reported to stimulate the release of tumor necrosis factor alpha and interleukin 1 beta from a monocytic cell line. The expression of this cytokine was found to be restricted to activated T cells. |
| NA | ENSG00000051523 | CYBA | cytochrome b-245 alpha chain | 1535 | Cytochrome b is comprised of a light chain (alpha) and a heavy chain (beta). This gene encodes the light, alpha subunit which has been proposed as a primary component of the microbicidal oxidase system of phagocytes. Mutations in this gene are associated with autosomal recessive chronic granulomatous disease (CGD), that is characterized by the failure of activated phagocytes to generate superoxide, which is important for the microbicidal activity of these cells. |
| NA | ENSG00000167508 | MVD | mevalonate diphosphate decarboxylase | 4597 | The enzyme mevalonate pyrophosphate decarboxylase catalyzes the conversion of mevalonate pyrophosphate into isopentenyl pyrophosphate in one of the early steps in cholesterol biosynthesis. It decarboxylates and dehydrates its substrate while hydrolyzing ATP. |
| NA | ENSG00000185669 | SNAI3 | snail family zinc finger 3 | 333929 | SNAI3 is a member of the SNAIL gene family, named for the Drosophila snail gene, which plays roles in mesodermal formation during embryogenesis (Katoh and Katoh, 2003 [PubMed 12579345]). |
| NA | ENSG00000174177 | CTU2 | cytosolic thiouridylase subunit 2 | 348180 | This gene encodes a protein which is involved in the post-transcriptional modification of transfer RNAs (tRNAs). The encoded protein plays a role in thiolation of uridine residue present at the wobble position in a subset of tRNAs, resulting in enhanced codon reading accuracy. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000103335 | PIEZO1 | piezo type mechanosensitive ion channel component 1 | 9780 | The protein encoded by this gene is a mechanically-activated ion channel that links mechanical forces to biological signals. The encoded protein contains 36 transmembrane domains and functions as a homotetramer. Defects in this gene have been associated with dehydrated hereditary stomatocytosis. |
| NA | ENSG00000167513 | CDT1 | chromatin licensing and DNA replication factor 1 | 81620 | The protein encoded by this gene is involved in the formation of the pre-replication complex that is necessary for DNA replication. The encoded protein can bind geminin, which prevents replication and may function to prevent this protein from initiating replication at inappropriate origins. Phosphorylation of this protein by cyclin A-dependent kinases results in degradation of the protein. |
| NA | ENSG00000141012 | GALNS | galactosamine (N-acetyl)-6-sulfatase | 2588 | This gene encodes N-acetylgalactosamine-6-sulfatase which is a lysosomal exohydrolase required for the degradation of the glycosaminoglycans, keratan sulfate, and chondroitin 6-sulfate. Sequence alterations including point, missense and nonsense mutations, as well as those that affect splicing, result in a deficiency of this enzyme. Deficiencies of this enzyme lead to Morquio A syndrome, a lysosomal storage disorder. |
| NA | ENSG00000167515 | TRAPPC2L | trafficking protein particle complex 2-like | 51693 | This gene encodes a protein that interacts with the tethering factor trafficking protein particle (TRAPP complex). TRAPP complexes mediate the contact between vescicles and target membranes, and thus, are involved in vescicle-mediated transport of proteins and lipids. The encoded protein is related to the X-linked trafficking protein particle complex 2. A related pseudogene is located on the X chromosome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000176715 | ACSF3 | acyl-CoA synthetase family member 3 | 197322 | This gene encodes a member of the acyl-CoA synthetase family of enzymes that activate fatty acids by catalyzing the formation of a thioester linkage between fatty acids and coenzyme A. The encoded protein is localized to mitochondria, has high specificity for malonate and methylmalonate and possesses malonyl-CoA synthetase activity. Mutations in this gene are a cause of combined malonic and methylmalonic aciduria. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000170100 | ZNF778 | zinc finger protein 778 | 197320 | The protein encoded by this gene is a member of the krueppel C2H2-type zinc-finger protein family, and it contains one KRAB domain and eighteen C2H2-type zinc fingers. This gene is a candidate gene for autism and variable cognitive impairment in the 16q24.3 microdeletion syndrome. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000167522 | ANKRD11 | ankyrin repeat domain 11 | 29123 | This locus encodes an ankryin repeat domain-containing protein. The encoded protein inhibits ligand-dependent activation of transcription. Mutations in this gene have been associated with KBG syndrome, which is characterized by macrodontia, distinctive craniofacial features, short stature, skeletal anomalies, global developmental delay, seizures and intellectual disability. Alternatively spliced transcript variants have been described. Related pseudogenes exist on chromosomes 2 and X. |
| NA | ENSG00000268218 | AC137932.4 | NA | ENSG00000268218 | NA |
| NA | ENSG00000197912 | SPG7 | SPG7, paraplegin matrix AAA peptidase subunit | 6687 | This gene encodes a mitochondrial metalloprotease protein that is a member of the AAA family. Members of this protein family share an ATPase domain and have roles in diverse cellular processes including membrane trafficking, intracellular motility, organelle biogenesis, protein folding, and proteolysis. Mutations in this gene cause autosomal recessive spastic paraplegia 7. Two transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000167526 | RPL13 | ribosomal protein L13 | 6137 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L13E family of ribosomal proteins. It is located in the cytoplasm. This gene is expressed at significantly higher levels in benign breast lesions than in breast carcinomas. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000178773 | CPNE7 | copine 7 | 27132 | This gene encodes a member of the copine family, which is composed of calcium-dependent membrane-binding proteins. The gene product contains two N-terminal C2 domains and one von Willebrand factor A domain. The encoded protein may be involved in membrane trafficking. Two alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000131165 | CHMP1A | charged multivesicular body protein 1A | 5119 | This gene encodes a member of the CHMP/Chmp family of proteins which are involved in multivesicular body sorting of proteins to the interiors of lysosomes. The initial prediction of the protein sequence encoded by this gene suggested that the encoded protein was a metallopeptidase. The nomenclature has been updated recently to reflect the correct biological function of this encoded protein. Several transcripts encoding different isoforms have been found for this gene. |
| NA | ENSG00000167523 | SPATA33 | spermatogenesis associated 33 | 124045 | NA |
| NA | ENSG00000185324 | CDK10 | cyclin-dependent kinase 10 | 8558 | The protein encoded by this gene belongs to the CDK subfamily of the Ser/Thr protein kinase family. The CDK subfamily members are highly similar to the gene products of S. cerevisiae cdc28, and S. pombe cdc2, and are known to be essential for cell cycle progression. This kinase has been shown to play a role in cellular proliferation and its function is limited to cell cycle G2-M phase. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000158792 | SPATA2L | spermatogenesis associated 2 like | 124044 | NA |
| NA | ENSG00000158805 | ZNF276 | zinc finger protein 276 | 92822 | NA |
| NA | ENSG00000187741 | FANCA | Fanconi anemia complementation group A | 2175 | The Fanconi anemia complementation group (FANC) currently includes FANCA, FANCB, FANCC, FANCD1 (also called BRCA2), FANCD2, FANCE, FANCF, FANCG, FANCI, FANCJ (also called BRIP1), FANCL, FANCM and FANCN (also called PALB2). The previously defined group FANCH is the same as FANCA. Fanconi anemia is a genetically heterogeneous recessive disorder characterized by cytogenetic instability, hypersensitivity to DNA crosslinking agents, increased chromosomal breakage, and defective DNA repair. The members of the Fanconi anemia complementation group do not share sequence similarity; they are related by their assembly into a common nuclear protein complex. This gene encodes the protein for complementation group A. Alternative splicing results in multiple transcript variants encoding different isoforms. Mutations in this gene are the most common cause of Fanconi anemia. |
| NA | ENSG00000204991 | SPIRE2 | spire type actin nucleation factor 2 | 84501 | NA |
| NA | ENSG00000141002 | TCF25 | transcription factor 25 | 22980 | TCF25 is a member of the basic helix-loop-helix (bHLH) family of transcription factors that are important in embryonic development (Steen and Lindholm, 2008 [PubMed 18068114]). |
| NA | ENSG00000258947 | TUBB3 | tubulin beta 3 class III | 10381 | This gene encodes a class III member of the beta tubulin protein family. Beta tubulins are one of two core protein families (alpha and beta tubulins) that heterodimerize and assemble to form microtubules. This protein is primarily expressed in neurons and may be involved in neurogenesis and axon guidance and maintenance. Mutations in this gene are the cause of congenital fibrosis of the extraocular muscles type 3. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 6. |
| NA | ENSG00000140995 | DEF8 | differentially expressed in FDCP 8 homolog (mouse) | 54849 | NA |
| NA | ENSG00000177946 | CENPBD1 | CENPB DNA-binding domain containing 1 | 92806 | NA |
| NA | ENSG00000003249 | DBNDD1 | dysbindin (dystrobrevin binding protein 1) domain containing 1 | 79007 | NA |
| NA | ENSG00000141013 | GAS8 | growth arrest specific 8 | 2622 | This gene includes 11 exons spanning 25 kb and maps to a region of chromosome 16 that is sometimes deleted in breast and prostrate cancer. The second intron contains an apparently intronless gene, C16orf3, that is transcribed in the opposite orientation. This gene is a putative tumor suppressor gene. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000187624 | C17orf97 | chromosome 17 open reading frame 97 | 400566 | NA |
| NA | ENSG00000183688 | FAM101B | family with sequence similarity 101 member B | 359845 | NA |
| NA | ENSG00000141252 | VPS53 | VPS53, GARP complex subunit | 55275 | This gene encodes a protein with sequence similarity to the yeast Vps53p protein. Vps53p is involved in retrograde vesicle trafficking in late Golgi. |
| NA | ENSG00000167695 | FAM57A | family with sequence similarity 57 member A | 79850 | The protein encoded by this gene is a membrane-associated protein that promotes lung carcinogenesis. The encoded protein may be involved in amino acid transport and glutathione metabolism since it can interact with a solute carrier family member (SLC3A2) and an isoform of gamma-glutamyltranspeptidase-like 3. An alternatively spliced variant encoding a protein that lacks a 32 aa internal segment showed the opposite effect, inhibiting lung cancer cell growth. Knockdown of this gene also inhibited lung carcinogenesis and tumor cell growth. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000179409 | GEMIN4 | gem nuclear organelle associated protein 4 | 50628 | The product of this gene is part of a large complex localized to the cytoplasm, nucleoli, and to discrete nuclear bodies called Gemini bodies (gems). The complex functions in spliceosomal snRNP assembly in the cytoplasm, and regenerates spliceosomes required for pre-mRNA splicing in the nucleus. The encoded protein directly interacts with a DEAD box protein and several spliceosome core proteins. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000171861 | RNMTL1 | RNA methyltransferase like 1 | 55178 | Efficient translation of mitochondrial-derived transcripts requires proper assembly of the large subunit of the mitochondrial ribosome. Central to the biogenesis of this large subunit is the A-loop of mitochondrial 16S rRNA, which is modified by three rRNA methyltransferases located near mtDNA nucleoids. The protein encoded by this gene methylates G(1370) of 16S rRNA, and this modification is necessary for proper ribosomal large subnit assembly. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000167693 | NXN | nucleoredoxin | 64359 | This gene encodes a member of the thioredoxin superfamily, a group of small, multifunctional redox-active proteins. Members of this family are characterized by a conserved active motif called the thioredoxin fold that catalyzes disulfide bond formation and isomerization. The encoded protein acts a redox-dependent regulator of the Wnt signaling pathway and is involved in cell growth and differentiation. |
| NA | ENSG00000177370 | TIMM22 | translocase of inner mitochondrial membrane 22 homolog (yeast) | 29928 | NA |
| NA | ENSG00000108953 | YWHAE | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein epsilon | 7531 | This gene product belongs to the 14-3-3 family of proteins which mediate signal transduction by binding to phosphoserine-containing proteins. This highly conserved protein family is found in both plants and mammals, and this protein is 100% identical to the mouse ortholog. It interacts with CDC25 phosphatases, RAF1 and IRS1 proteins, suggesting its role in diverse biochemical activities related to signal transduction, such as cell division and regulation of insulin sensitivity. It has also been implicated in the pathogenesis of small cell lung cancer. Two transcript variants, one protein-coding and the other non-protein-coding, have been found for this gene. |
| NA | ENSG00000167193 | CRK | v-crk avian sarcoma virus CT10 oncogene homolog | 1398 | This gene encodes a member of an adapter protein family that binds to several tyrosine-phosphorylated proteins. The product of this gene has several SH2 and SH3 domains (src-homology domains) and is involved in several signaling pathways, recruiting cytoplasmic proteins in the vicinity of tyrosine kinase through SH2-phosphotyrosine interaction. The N-terminal SH2 domain of this protein functions as a positive regulator of transformation whereas the C-terminal SH3 domain functions as a negative regulator of transformation. Two alternative transcripts encoding different isoforms with distinct biological activity have been described. |
| NA | ENSG00000197879 | MYO1C | myosin IC | 4641 | This gene encodes a member of the unconventional myosin protein family, which are actin-based molecular motors. The protein is found in the cytoplasm, and one isoform with a unique N-terminus is also found in the nucleus. The nuclear isoform associates with RNA polymerase I and II and functions in transcription initiation. The mouse ortholog of this protein also functions in intracellular vesicle transport to the plasma membrane. Multiple transcript variants encoding different isoforms have been found for this gene. The related gene myosin IE has been referred to as myosin IC in the literature, but it is a distinct locus on chromosome 19. |
| NA | ENSG00000132376 | INPP5K | inositol polyphosphate-5-phosphatase K | 51763 | This gene encodes a protein with 5-phosphatase activity toward polyphosphate inositol. The protein localizes to the cytosol in regions lacking actin stress fibers. It is thought that this protein may negatively regulate the actin cytoskeleton. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000174238 | PITPNA | phosphatidylinositol transfer protein alpha | 5306 | This gene encodes a member of a family of lipid-binding proteins that transfer molecules of phosphatidylinositol or phosphatidylcholine between membrane surfaces. The protein is implicated in phospholipase C signaling and in the production of phosphatidylinositol 3,4,5-trisphosphate (PIP3) by phosphoinositide-3-kinase. |
| NA | ENSG00000167703 | SLC43A2 | solute carrier family 43 member 2 | 124935 | System L amino acid transporters, such as SLC43A2, mediate sodium-independent transport of bulky neutral amino acids across cell membranes (Bodoy et al., 2005 [PubMed 15659399]). |
| NA | ENSG00000167705 | RILP | Rab interacting lysosomal protein | 83547 | This gene encodes a lysosomal protein that interacts with RAB7, a small GTPase that controls transport to endocytic degradative compartments. Studies using mutant forms of the two proteins suggest that this protein represents a downstream effector for RAB7, and both proteins act together in the regulation of late endocytic traffic. A unique region of this protein has also been shown to be involved in the regulation of lysosomal morphology. |
| NA | ENSG00000174231 | PRPF8 | pre-mRNA processing factor 8 | 10594 | Pre-mRNA splicing occurs in 2 sequential transesterification steps. The protein encoded by this gene is a component of both U2- and U12-dependent spliceosomes, and found to be essential for the catalytic step II in pre-mRNA splicing process. It contains several WD repeats, which function in protein-protein interactions. This protein has a sequence similarity to yeast Prp8 protein. This gene is a candidate gene for autosomal dominant retinitis pigmentosa. |
| NA | ENSG00000167716 | WDR81 | WD repeat domain 81 | 124997 | This gene encodes a multi-domain transmembrane protein, which is predominantly expressed in the brain. Mutations in this gene are associated with autosomal recessive cerebellar ataxia, mental retardation, and dysequilibrium syndrome-2. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132386 | SERPINF1 | serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 1 | 5176 | The protein encoded by this gene is a member of the serpin family, although it does not display the serine protease inhibitory activity shown by many of the other serpin family members. The encoded protein is secreted and strongly inhibits angiogenesis. In addition, this protein is a neurotrophic factor involved in neuronal differentiation in retinoblastoma cells. |
| NA | ENSG00000186532 | SMYD4 | SET and MYND domain containing 4 | 114826 | NA |
| NA | ENSG00000132383 | RPA1 | replication protein A1 | 6117 | NA |
| NA | ENSG00000070366 | SMG6 | SMG6 nonsense mediated mRNA decay factor | 23293 | This gene encodes a component of the telomerase ribonucleoprotein complex responsible for the replication and maintenance of chromosome ends. The encoded protein also plays a role in the nonsense-mediated mRNA decay (NMD) pathway, providing the endonuclease activity near the premature translation termination codon that is needed to initiate NMD. Alternatively spliced transcript variants encoding distinct protein isoforms have been described. |
| NA | ENSG00000167720 | SRR | serine racemase | 63826 | NA |
| NA | ENSG00000167721 | TSR1 | TSR1, 20S rRNA accumulation, homolog (S. cerevisiae) | 55720 | NA |
| NA | ENSG00000141258 | SGSM2 | small G protein signaling modulator 2 | 9905 | NA |
| NA | ENSG00000070444 | MNT | MAX network transcriptional repressor | 4335 | The Myc/Max/Mad network comprises a group of transcription factors that co-interact to regulate gene-specific transcriptional activation or repression. This gene encodes a protein member of the Myc/Max/Mad network. This protein has a basic-Helix-Loop-Helix-zipper domain (bHLHzip) with which it binds the canonical DNA sequence CANNTG, known as the E box, following heterodimerization with Max proteins. This protein is likely a transcriptional repressor and an antagonist of Myc-dependent transcriptional activation and cell growth. This protein represses transcription by binding to DNA binding proteins at its N-terminal Sin3-interaction domain. |
| NA | ENSG00000127804 | METTL16 | methyltransferase like 16 | 79066 | NA |
| NA | ENSG00000132361 | CLUH | clustered mitochondria (cluA/CLU1) homolog | 23277 | NA |
| NA | ENSG00000132359 | RAP1GAP2 | RAP1 GTPase activating protein 2 | 23108 | This gene encodes a GTPase-activating protein that activates the small guanine-nucleotide-binding protein Rap1 in platelets. The protein interacts with synaptotagmin-like protein 1 and Rab27 and regulates secretion of dense granules from platelets at sites of endothelial damage. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197417 | SHPK | sedoheptulokinase | 23729 | The protein encoded by this gene has weak homology to several carbohydrate kinases, a class of proteins involved in the phosphorylation of sugars as they enter a cell, inhibiting return across the cell membrane. Sequence variation between this novel gene and known carbohydrate kinases suggests the possibility of a different substrate, cofactor or changes in kinetic properties distinguishing it from other carbohydrate kinases. The gene resides in a region commonly deleted in cystinosis patients, suggesting a role as a modifier for the cystinosis phenotype. The genomic region is also rich in Alu repetitive sequences, frequently involved in chromosomal rearrangements. |
| NA | ENSG00000040531 | CTNS | cystinosin, lysosomal cystine transporter | 1497 | This gene encodes a seven-transmembrane domain protein that functions to transport cystine out of lysosomes. Its activity is driven by the H+ electrochemical gradient of the lysosomal membrane. Mutations in this gene cause cystinosis, a lysosomal storage disorder. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000213977 | TAX1BP3 | Tax1 binding protein 3 | 30851 | NA |
| NA | ENSG00000127774 | EMC6 | ER membrane protein complex subunit 6 | 83460 | NA |
| NA | ENSG00000083454 | P2RX5 | purinergic receptor P2X 5 | 5026 | The product of this gene belongs to the family of purinoceptors for ATP. This receptor functions as a ligand-gated ion channel. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the neighboring downstream gene, TAX1BP3 (Tax1 binding protein 3). |
| NA | ENSG00000083457 | ITGAE | integrin subunit alpha E | 3682 | Integrins are heterodimeric integral membrane proteins composed of an alpha chain and a beta chain. This gene encodes an I-domain-containing alpha integrin that undergoes post-translational cleavage in the extracellular domain, yielding disulfide-linked heavy and light chains. In combination with the beta 7 integrin, this protein forms the E-cadherin binding integrin known as the human mucosal lymphocyte-1 antigen. This protein is preferentially expressed in human intestinal intraepithelial lymphocytes (IEL), and in addition to a role in adhesion, it may serve as an accessory molecule for IEL activation. |
| NA | ENSG00000177602 | GSG2 | germ cell associated 2 (haspin) | 83903 | NA |
| NA | ENSG00000074356 | NCBP3 | nuclear cap binding subunit 3 | 55421 | NA |
| NA | ENSG00000004660 | CAMKK1 | calcium/calmodulin-dependent protein kinase kinase 1 | 84254 | The product of this gene belongs to the Serine/Threonine protein kinase family, and to the Ca(2+)/calmodulin-dependent protein kinase subfamily. This protein plays a role in the calcium/calmodulin-dependent (CaM) kinase cascade. Three transcript variants encoding two distinct isoforms have been identified for this gene. |
| NA | ENSG00000074370 | ATP2A3 | ATPase sarcoplasmic/endoplasmic reticulum Ca2+ transporting 3 | 489 | This gene encodes one of the SERCA Ca(2+)-ATPases, which are intracellular pumps located in the sarcoplasmic or endoplasmic reticula of muscle cells. This enzyme catalyzes the hydrolysis of ATP coupled with the translocation of calcium from the cytosol to the sarcoplasmic reticulum lumen, and is involved in calcium sequestration associated with muscular excitation and contraction. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000074755 | ZZEF1 | zinc finger ZZ-type and EF-hand domain containing 1 | 23140 | NA |
| NA | ENSG00000167740 | CYB5D2 | cytochrome b5 domain containing 2 | 124936 | NA |
| NA | ENSG00000185722 | ANKFY1 | ankyrin repeat and FYVE domain containing 1 | 51479 | This gene encodes a cytoplasmic protein that contains a coiled-coil structure and a BTB/POZ domain at its N-terminus, ankyrin repeats in the middle portion, and a FYVE-finger motif at its C-terminus. This protein belongs to a subgroup of double zinc finger proteins which may be involved in vesicle or protein transport. Alternate splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000132388 | UBE2G1 | ubiquitin conjugating enzyme E2 G1 | 7326 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family and catalyzes the covalent attachment of ubiquitin to other proteins. The protein may be involved in degradation of muscle-specific proteins. |
| NA | ENSG00000132382 | MYBBP1A | MYB binding protein (P160) 1a | 10514 | This gene encodes a nucleolar transcriptional regulator that was first identified by its ability to bind specifically to the Myb proto-oncogene protein. The encoded protein is thought to play a role in many cellular processes including response to nucleolar stress, tumor suppression and synthesis of ribosomal DNA. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000188176 | SMTNL2 | smoothelin-like 2 | 342527 | NA |
| NA | ENSG00000141456 | PELP1 | proline, glutamate and leucine rich protein 1 | 27043 | This gene encodes a transcription factor which coactivates transcription of estrogen receptor responsive genes and corepresses genes activated by other hormone receptors or sequence-specific transcription factors. Expression of this gene is regulated by both members of the estrogen receptor family. This gene may be involved in the progression of several types of cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000141480 | ARRB2 | arrestin, beta 2 | 409 | Members of arrestin/beta-arrestin protein family are thought to participate in agonist-mediated desensitization of G-protein-coupled receptors and cause specific dampening of cellular responses to stimuli such as hormones, neurotransmitters, or sensory signals. Arrestin beta 2, like arrestin beta 1, was shown to inhibit beta-adrenergic receptor function in vitro. It is expressed at high levels in the central nervous system and may play a role in the regulation of synaptic receptors. Besides the brain, a cDNA for arrestin beta 2 was isolated from thyroid gland, and thus it may also be involved in hormone-specific desensitization of TSH receptors. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000142507 | PSMB6 | proteasome subunit beta 6 | 5694 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. The encoded protein is a member of the proteasome B-type family, also known as the T1B family, and is a 20S core beta subunit in the proteasome. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000129219 | PLD2 | phospholipase D2 | 5338 | The protein encoded by this gene catalyzes the hydrolysis of phosphatidylcholine to phosphatidic acid and choline. The activity of the encoded enzyme is enhanced by phosphatidylinositol 4,5-bisphosphate and ADP-ribosylation factor-1. This protein localizes to the peripheral membrane and may be involved in cytoskeletal organization, cell cycle control, transcriptional regulation, and/or regulated secretion. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000141503 | MINK1 | misshapen-like kinase 1 | 50488 | This gene encodes a serine/threonine kinase belonging to the germinal center kinase (GCK) family. The protein is structurally similar to the kinases that are related to NIK and may belong to a distinct subfamily of NIK-related kinases within the GCK family. Studies of the mouse homolog indicate an up-regulation of expression in the course of postnatal mouse cerebral development and activation of the cJun N-terminal kinase (JNK) and the p38 pathways. |
| NA | ENSG00000108528 | SLC25A11 | solute carrier family 25 member 11 | 8402 | The oxoglutarate/malate carrier transports 2-oxoglutarate across the inner membranes of mitochondria in an electroneutral exchange for malate or other dicarboxylic acids (summary by Iacobazzi et al., 1992 [PubMed 1457818]). |
| NA | ENSG00000108523 | RNF167 | ring finger protein 167 | 26001 | RNF167 is an E3 ubiquitin ligase that interacts with TSSC5 (SLC22A18; MIM 602631) and, together with UBCH6 (UBE2E1; MIM 602916), facilitates TSSC5 polyubiquitylation (Yamada and Gorbsky, 2006 [PubMed 16314844]). |
| NA | ENSG00000108518 | PFN1 | profilin 1 | 5216 | This gene encodes a member of the profilin family of small actin-binding proteins. The encoded protein plays an important role in actin dynamics by regulating actin polymerization in response to extracellular signals. Deletion of this gene is associated with Miller-Dieker syndrome, and the encoded protein may also play a role in Huntington disease. Multiple pseudogenes of this gene are located on chromosome 1. |
| NA | ENSG00000108515 | ENO3 | enolase 3 (beta, muscle) | 2027 | This gene encodes one of the three enolase isoenzymes found in mammals. This isoenzyme is found in skeletal muscle cells in the adult where it may play a role in muscle development and regeneration. A switch from alpha enolase to beta enolase occurs in muscle tissue during development in rodents. Mutations in this gene have be associated glycogen storage disease. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000091640 | SPAG7 | sperm associated antigen 7 | 9552 | NA |
| NA | ENSG00000108509 | CAMTA2 | calmodulin binding transcription activator 2 | 23125 | The protein encoded by this gene is a member of the calmodulin-binding transcription activator protein family. Members of this family share a common domain structure that consists of a transcription activation domain, a DNA-binding domain, and a calmodulin-binding domain. The encoded protein may be a transcriptional coactivator of genes involved in cardiac growth. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000129250 | KIF1C | kinesin family member 1C | 10749 | The protein encoded by this gene is a member of the kinesin-like protein family. The family members are microtubule-dependent molecular motors that transport organelles within cells and move chromosomes during cell division. Mutations in this gene are a cause of spastic ataxia 2, autosomal recessive. |
| NA | ENSG00000167840 | ZNF232 | zinc finger protein 232 | 7775 | NA |
| NA | ENSG00000129204 | USP6 | ubiquitin specific peptidase 6 | 9098 | NA |
| NA | ENSG00000180626 | ZNF594 | zinc finger protein 594 | 84622 | NA |
| NA | ENSG00000029725 | RABEP1 | rabaptin, RAB GTPase binding effector protein 1 | 9135 | NA |
| NA | ENSG00000108559 | NUP88 | nucleoporin 88kDa | 4927 | The nuclear pore complex is a massive structure that extends across the nuclear envelope, forming a gateway that regulates the flow of macromolecules between the nucleus and the cytoplasm. Nucleoporins, a family of 50 to 100 proteins, are the main components of the nuclear pore complex in eukaryotic cells. The protein encoded by this gene belongs to the nucleoporin family and is associated with the oncogenic nucleoporin CAN/Nup214 in a dynamic subcomplex. This protein is also overexpressed in a large number of malignant neoplasms and precancerous dysplasias. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000129197 | RPAIN | RPA interacting protein | 84268 | NA |
| NA | ENSG00000108561 | C1QBP | complement component 1, q subcomponent binding protein | 708 | The human complement subcomponent C1q associates with C1r and C1s in order to yield the first component of the serum complement system. The protein encoded by this gene is known to bind to the globular heads of C1q molecules and inhibit C1 activation. This protein has also been identified as the p32 subunit of pre-mRNA splicing factor SF2, as well as a hyaluronic acid-binding protein. |
| NA | ENSG00000005100 | DHX33 | DEAH-box helicase 33 | 56919 | This gene encodes a member of the DEAD box protein family. The DEAD box proteins are characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000072849 | DERL2 | derlin 2 | 51009 | Proteins that are unfolded or misfolded in the endoplasmic reticulum (ER) must be refolded or degraded to maintain the homeostasis of the ER. DERL2 is involved in the degradation of misfolded glycoproteins in the ER (Oda et al., 2006 [PubMed 16449189]). |
| NA | ENSG00000167842 | MIS12 | MIS12 kinetochore complex component | 79003 | NA |
| NA | ENSG00000091592 | NLRP1 | NLR family, pyrin domain containing 1 | 22861 | This gene encodes a member of the Ced-4 family of apoptosis proteins. Ced-family members contain a caspase recruitment domain (CARD) and are known to be key mediators of programmed cell death. The encoded protein contains a distinct N-terminal pyrin-like motif, which is possibly involved in protein-protein interactions. This protein interacts strongly with caspase 2 and weakly with caspase 9. Overexpression of this gene was demonstrated to induce apoptosis in cells. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene, but the biological validity of some variants has not been determined. |
| NA | ENSG00000179314 | LOC339166 | uncharacterized LOC339166 | 339166 | NA |
| NA | ENSG00000179314 | WSCD1 | WSC domain containing 1 | 23302 | NA |
| NA | ENSG00000129195 | FAM64A | family with sequence similarity 64 member A | 54478 | NA |
| NA | ENSG00000091622 | PITPNM3 | PITPNM family member 3 | 83394 | This gene encodes a member of a family of membrane-associated phosphatidylinositol transfer domain-containing proteins. The calcium-binding protein has phosphatidylinositol (PI) transfer activity and interacts with the protein tyrosine kinase PTK2B (also known as PYK2). The protein is homologous to a Drosophila protein that is implicated in the visual transduction pathway in flies. Mutations in this gene result in autosomal dominant cone dystrophy. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198920 | KIAA0753 | KIAA0753 | 9851 | NA |
| NA | ENSG00000129235 | TXNDC17 | thioredoxin domain containing 17 | 84817 | NA |
| NA | ENSG00000215067 | ALOX12-AS1 | ALOX12 antisense RNA 1 | 100506713 | NA |
| NA | ENSG00000219200 | RNASEK | ribonuclease K | 440400 | NA |
| TRUE | ENSG00000269871 | NA | NA | NA | NA |
| NA | ENSG00000161940 | BCL6B | B-cell CLL/lymphoma 6B | 255877 | NA |
| NA | ENSG00000141505 | ASGR1 | asialoglycoprotein receptor 1 | 432 | This gene encodes a subunit of the asialoglycoprotein receptor. This receptor is a transmembrane protein that plays a critical role in serum glycoprotein homeostasis by mediating the endocytosis and lysosomal degradation of glycoproteins with exposed terminal galactose or N-acetylgalactosamine residues. The asialoglycoprotein receptor may facilitate hepatic infection by multiple viruses including hepatitis B, and is also a target for liver-specific drug delivery. The asialoglycoprotein receptor is a hetero-oligomeric protein composed of major and minor subunits, which are encoded by different genes. The protein encoded by this gene is the more abundant major subunit. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000132535 | DLG4 | discs large homolog 4 | 1742 | This gene encodes a member of the membrane-associated guanylate kinase (MAGUK) family. It heteromultimerizes with another MAGUK protein, DLG2, and is recruited into NMDA receptor and potassium channel clusters. These two MAGUK proteins may interact at postsynaptic sites to form a multimeric scaffold for the clustering of receptors, ion channels, and associated signaling proteins. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000072778 | ACADVL | acyl-CoA dehydrogenase, very long chain | 37 | The protein encoded by this gene is targeted to the inner mitochondrial membrane where it catalyzes the first step of the mitochondrial fatty acid beta-oxidation pathway. This acyl-Coenzyme A dehydrogenase is specific to long-chain and very-long-chain fatty acids. A deficiency in this gene product reduces myocardial fatty acid beta-oxidation and is associated with cardiomyopathy. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000004975 | DVL2 | dishevelled segment polarity protein 2 | 1856 | This gene encodes a member of the dishevelled (dsh) protein family. The vertebrate dsh proteins have approximately 40% amino acid sequence similarity with Drosophila dsh. This gene encodes a 90-kD protein that undergoes posttranslational phosphorylation to form a 95-kD cytoplasmic protein, which may play a role in the signal transduction pathway mediated by multiple Wnt proteins. The mechanisms of dishevelled function in Wnt signaling are likely to be conserved among metazoans. |
| NA | ENSG00000040633 | PHF23 | PHD finger protein 23 | 79142 | NA |
| NA | ENSG00000175826 | CTDNEP1 | CTD nuclear envelope phosphatase 1 | 23399 | NA |
| NA | ENSG00000170291 | ELP5 | elongator acetyltransferase complex subunit 5 | 23587 | NA |
| NA | ENSG00000181856 | SLC2A4 | solute carrier family 2 member 4 | 6517 | This gene is a member of the solute carrier family 2 (facilitated glucose transporter) family and encodes a protein that functions as an insulin-regulated facilitative glucose transporter. In the absence of insulin, this integral membrane protein is sequestered within the cells of muscle and adipose tissue. Within minutes of insulin stimulation, the protein moves to the cell surface and begins to transport glucose across the cell membrane. Mutations in this gene have been associated with noninsulin-dependent diabetes mellitus (NIDDM). |
| NA | ENSG00000006047 | YBX2 | Y-box binding protein 2 | 51087 | This gene encodes a nucleic acid binding protein which is highly expressed in germ cells. The encoded protein binds to a Y-box element in the promoters of certain genes but also binds to mRNA transcribed from these genes. Pseudogenes for this gene are located on chromosome 10 and 15. |
| NA | ENSG00000132507 | EIF5A | eukaryotic translation initiation factor 5A | 1984 | NA |
| NA | ENSG00000174292 | TNK1 | tyrosine kinase, non-receptor, 1 | 8711 | The protein encoded by this gene belongs to the tyrosine protein kinase family. Tyrosine protein kinases are important regulators of intracellular signal transduction pathways, mediating cellular proliferation, survival, and development. This gene is highly expressed in fetal tissues and at lower levels in few adult tissues, thus may function in signaling pathways utilized broadly during fetal development, and more selectively in adult tissues. It plays a negative regulatory role in the Ras-Raf1-MAPK pathway, and knockout mice have been shown to develop spontaneous tumors, suggesting a role as a tumor suppressor gene. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169992 | NLGN2 | neuroligin 2 | 57555 | This gene encodes a member of a family of neuronal cell surface proteins. Members of this family may act as splice site-specific ligands for beta-neurexins and may be involved in the formation and remodeling of central nervous system synapses. |
| NA | ENSG00000181284 | TMEM102 | transmembrane protein 102 | 284114 | NA |
| NA | ENSG00000161958 | FGF11 | fibroblast growth factor 11 | 2256 | The protein encoded by this gene is a member of the fibroblast growth factor (FGF) family. FGF family members possess broad mitogenic and cell survival activities, and are involved in a variety of biological processes, including embryonic development, cell growth, morphogenesis, tissue repair, tumor growth and invasion. The function of this gene has not yet been determined. The expression pattern of the mouse homolog implies a role in nervous system development. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000170175 | CHRNB1 | cholinergic receptor nicotinic beta 1 subunit | 1140 | The muscle acetylcholine receptor is composed of five subunits: two alpha subunits and one beta, one gamma, and one delta subunit. This gene encodes the beta subunit of the acetylcholine receptor. The acetylcholine receptor changes conformation upon acetylcholine binding leading to the opening of an ion-conducting channel across the plasma membrane. Mutations in this gene are associated with slow-channel congenital myasthenic syndrome. |
| NA | ENSG00000174282 | ZBTB4 | zinc finger and BTB domain containing 4 | 57659 | NA |
| NA | ENSG00000181222 | POLR2A | polymerase (RNA) II subunit A | 5430 | This gene encodes the largest subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. The product of this gene contains a carboxy terminal domain composed of heptapeptide repeats that are essential for polymerase activity. These repeats contain serine and threonine residues that are phosphorylated in actively transcribing RNA polymerase. In addition, this subunit, in combination with several other polymerase subunits, forms the DNA binding domain of the polymerase, a groove in which the DNA template is transcribed into RNA. |
| NA | ENSG00000161956 | SENP3 | SUMO1/sentrin/SMT3 specific peptidase 3 | 26168 | The reversible posttranslational modification of proteins by the addition of small ubiquitin-like SUMO proteins (see SUMO1; MIM 601912) is required for numerous biologic processes. SUMO-specific proteases, such as SENP3, are responsible for the initial processing of SUMO precursors to generate a C-terminal diglycine motif required for the conjugation reaction. They also have isopeptidase activity for the removal of SUMO from high molecular mass SUMO conjugates (Di Bacco et al., 2006 [PubMed 16738315]). |
| NA | ENSG00000161960 | EIF4A1 | eukaryotic translation initiation factor 4A1 | 1973 | NA |
| NA | ENSG00000129194 | SOX15 | SRY-box 15 | 6665 | This gene encodes a member of the SOX (SRY-related HMG-box) family of transcription factors involved in the regulation of embryonic development and in the determination of the cell fate. The encoded protein may act as a transcriptional regulator after forming a protein complex with other proteins. |
| NA | ENSG00000129245 | FXR2 | FMR1 autosomal homolog 2 | 9513 | The protein encoded by this gene is a RNA binding protein containing two KH domains and one RCG box, which is similar to FMRP and FXR1. It associates with polyribosomes, predominantly with 60S large ribosomal subunits. This encoded protein may self-associate or interact with FMRP and FXR1. It may have a role in the development of fragile X mental retardation syndrome. |
| NA | ENSG00000141504 | SAT2 | spermidine/spermine N1-acetyltransferase family member 2 | 112483 | NA |
| NA | ENSG00000129244 | ATP1B2 | ATPase Na+/K+ transporting subunit beta 2 | 482 | The protein encoded by this gene belongs to the family of Na+/K+ and H+/K+ ATPases beta chain proteins, and to the subfamily of Na+/K+ -ATPases. Na+/K+ -ATPase is an integral membrane protein responsible for establishing and maintaining the electrochemical gradients of Na and K ions across the plasma membrane. These gradients are essential for osmoregulation, for sodium-coupled transport of a variety of organic and inorganic molecules, and for electrical excitability of nerve and muscle. This enzyme is composed of two subunits, a large catalytic subunit (alpha) and a smaller glycoprotein subunit (beta). The beta subunit regulates, through assembly of alpha/beta heterodimers, the number of sodium pumps transported to the plasma membrane. The glycoprotein subunit of Na+/K+ -ATPase is encoded by multiple genes. This gene encodes a beta 2 subunit. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000141510 | TP53 | tumor protein p53 | 7157 | This gene encodes a tumor suppressor protein containing transcriptional activation, DNA binding, and oligomerization domains. The encoded protein responds to diverse cellular stresses to regulate expression of target genes, thereby inducing cell cycle arrest, apoptosis, senescence, DNA repair, or changes in metabolism. Mutations in this gene are associated with a variety of human cancers, including hereditary cancers such as Li-Fraumeni syndrome. Alternative splicing of this gene and the use of alternate promoters result in multiple transcript variants and isoforms. Additional isoforms have also been shown to result from the use of alternate translation initiation codons (PMIDs: 12032546, 20937277). |
| NA | ENSG00000141499 | WRAP53 | WD repeat containing, antisense to TP53 | 55135 | This gene encodes an essential component of the telomerase holoenzyme complex, a ribonucleoprotein complex required for telomere synthesis. This protein is enriched in Cajal bodies, nuclear sites of RNP processing that are important for telomerase function. It interacts with dyskerin, TERT and TERC, other components of active telomerase, and with small Cajal body RNAs (scaRNAs), which are involved in modifying splicing RNAs. This mRNA also functions as a p53 antisense transcript, that regulates endogenous p53 mRNA levels and further induction of p53 protein by targeting the 5’ untranslated region of p53 mRNA. Alternatively spliced transcript variants which differ only in the 5’ UTR have been found for this gene. |
| NA | ENSG00000108947 | EFNB3 | ephrin-B3 | 1949 | EFNB3, a member of the ephrin gene family, is important in brain development as well as in its maintenance. Moreover, since levels of EFNB3 expression were particularly high in several forebrain subregions compared to other brain subregions, it may play a pivotal role in forebrain function. The EPH and EPH-related receptors comprise the largest subfamily of receptor protein-tyrosine kinases and have been implicated in mediating developmental events, particularly in the nervous system. EPH Receptors typically have a single kinase domain and an extracellular region containing a Cys-rich domain and 2 fibronectin type III repeats. The ephrin ligands and receptors have been named by the Eph Nomenclature Committee (1997). Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. The Eph family of receptors are similarly divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. |
| NA | ENSG00000132510 | KDM6B | lysine demethylase 6B | 23135 | NA |
| NA | ENSG00000167874 | TMEM88 | transmembrane protein 88 | 92162 | NA |
| NA | ENSG00000182224 | CYB5D1 | cytochrome b5 domain containing 1 | 124637 | NA |
| NA | ENSG00000170004 | CHD3 | chromodomain helicase DNA binding protein 3 | 1107 | This gene encodes a member of the CHD family of proteins which are characterized by the presence of chromo (chromatin organization modifier) domains and SNF2-related helicase/ATPase domains. This protein is one of the components of a histone deacetylase complex referred to as the Mi-2/NuRD complex which participates in the remodeling of chromatin by deacetylating histones. Chromatin remodeling is essential for many processes including transcription. Autoantibodies against this protein are found in a subset of patients with dermatomyositis. Three alternatively spliced transcripts encoding different isoforms have been described. |
| NA | ENSG00000170043 | TRAPPC1 | trafficking protein particle complex 1 | 58485 | This gene product plays a role in vesicular transport of proteins to the Golgi apparatus from the endoplasmic reticulum. The encoded protein is a component of the multisubunit transport protein particle (TRAPP) complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000170037 | CNTROB | centrobin, centrosomal BRCA2 interacting protein | 116840 | This gene encodes a centrosomal protein that interacts with BRCA2, and is required for centriole duplication and cytokinesis. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000179094 | PER1 | period circadian clock 1 | 5187 | This gene is a member of the Period family of genes and is expressed in a circadian pattern in the suprachiasmatic nucleus, the primary circadian pacemaker in the mammalian brain. Genes in this family encode components of the circadian rhythms of locomotor activity, metabolism, and behavior. This gene is upregulated by CLOCK/ARNTL heterodimers but then represses this upregulation in a feedback loop using PER/CRY heterodimers to interact with CLOCK/ARNTL. Polymorphisms in this gene may increase the risk of getting certain cancers. Alternative splicing has been observed in this gene; however, these variants have not been fully described. |
| NA | ENSG00000220205 | VAMP2 | vesicle associated membrane protein 2 | 6844 | The protein encoded by this gene is a member of the vesicle-associated membrane protein (VAMP)/synaptobrevin family. Synaptobrevins/VAMPs, syntaxins, and the 25-kD synaptosomal-associated protein SNAP25 are the main components of a protein complex involved in the docking and/or fusion of synaptic vesicles with the presynaptic membrane. This gene is thought to participate in neurotransmitter release at a step between docking and fusion. The protein forms a stable complex with syntaxin, synaptosomal-associated protein, 25 kD, and synaptotagmin. It also forms a distinct complex with synaptophysin. It is a likely candidate gene for familial infantile myasthenia (FIMG) because of its map location and because it encodes a synaptic vesicle protein of the type that has been implicated in the pathogenesis of FIMG. |
| NA | ENSG00000179029 | TMEM107 | transmembrane protein 107 | 84314 | NA |
| NA | ENSG00000178999 | AURKB | aurora kinase B | 9212 | This gene encodes a member of the aurora kinase subfamily of serine/threonine kinases. The genes encoding the other two members of this subfamily are located on chromosomes 19 and 20. These kinases participate in the regulation of alignment and segregation of chromosomes during mitosis and meiosis through association with microtubules. A pseudogene of this gene is located on chromosome 8. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000178971 | CTC1 | CTS telomere maintenance complex component 1 | 80169 | This gene encodes a component of the CST complex. This complex plays an essential role in protecting telomeres from degradation. This protein also forms a heterodimer with the CST complex subunit STN1 to form the enzyme alpha accessory factor. This enzyme regulates DNA replication. Mutations in this gene are the cause of cerebroretinal microangiopathy with calcifications and cysts. Alternate splicing results in both coding and non-coding variants. |
| NA | ENSG00000178921 | PFAS | phosphoribosylformylglycinamidine synthase | 5198 | Purines are necessary for many cellular processes, including DNA replication, transcription, and energy metabolism. Ten enzymatic steps are required to synthesize inosine monophosphate (IMP) in the de novo pathway of purine biosynthesis. The enzyme encoded by this gene catalyzes the fourth step of IMP biosynthesis. |
| NA | ENSG00000125434 | SLC25A35 | solute carrier family 25 member 35 | 399512 | SLC25A35 belongs to the SLC25 family of mitochondrial carrier proteins (Haitina et al., 2006 [PubMed 16949250]). |
| NA | ENSG00000108961 | RANGRF | RAN guanine nucleotide release factor | 29098 | This gene encodes a protein that has been shown to function as a guanine nucleotide release factor in mouse and to regulate the expression and function of the Nav1.5 cardiac sodium channel in human. Alternative splicing results in multiple transcript variants. |
| TRUE | ENSG00000198150 | NA | NA | NA | NA |
| NA | ENSG00000184619 | KRBA2 | KRAB-A domain containing 2 | 124751 | NA |
| NA | ENSG00000161970 | RPL26 | ribosomal protein L26 | 6154 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L24P family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Mutations in this gene result in Diamond-Blackfan anemia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166579 | NDEL1 | nudE neurodevelopment protein 1 like 1 | 81565 | This gene encodes a coiled-coil protein that plays a role in multiple processes including cytoskeletal organization, cell signaling and neuron migration, outgrowth and maintenance. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome X. |
| NA | ENSG00000133026 | MYH10 | myosin, heavy chain 10, non-muscle | 4628 | This gene encodes a member of the myosin superfamily. The protein represents a conventional non-muscle myosin; it should not be confused with the unconventional myosin-10 (MYO10). Myosins are actin-dependent motor proteins with diverse functions including regulation of cytokinesis, cell motility, and cell polarity. Mutations in this gene have been associated with May-Hegglin anomaly and developmental defects in brain and heart. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000141506 | PIK3R5 | phosphoinositide-3-kinase regulatory subunit 5 | 23533 | Phosphatidylinositol 3-kinases (PI3Ks) phosphorylate the inositol ring of phosphatidylinositol at the 3-prime position, and play important roles in cell growth, proliferation, differentiation, motility, survival and intracellular trafficking. The PI3Ks are divided into three classes: I, II and III, and only the class I PI3Ks are involved in oncogenesis. This gene encodes the 101 kD regulatory subunit of the class I PI3K gamma complex, which is a dimeric enzyme, consisting of a 110 kD catalytic subunit gamma and a regulatory subunit of either 55, 87 or 101 kD. This protein recruits the catalytic subunit from the cytosol to the plasma membrane through high-affinity interaction with G-beta-gamma proteins. Multiple alternatively spliced transcript variants encoding two distinct isoforms have been found. |
| NA | ENSG00000170310 | STX8 | syntaxin 8 | 9482 | The gene is a member of the syntaxin family. The encoded protein is involved in protein trafficking from early to late endosomes via vesicle fusion and exocytosis. A related pseudogene has been identified on chromosome 12. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000154914 | USP43 | ubiquitin specific peptidase 43 | 124739 | NA |
| NA | ENSG00000007237 | GAS7 | growth arrest specific 7 | 8522 | Growth arrest-specific 7 is expressed primarily in terminally differentiated brain cells and predominantly in mature cerebellar Purkinje neurons. GAS7 plays a putative role in neuronal development. Several transcript variants encoding proteins which vary in the N-terminus have been described. |
| NA | ENSG00000133028 | SCO1 | SCO1 cytochrome c oxidase assembly protein | 6341 | Mammalian cytochrome c oxidase (COX) catalyzes the transfer of reducing equivalents from cytochrome c to molecular oxygen and pumps protons across the inner mitochondrial membrane. In yeast, 2 related COX assembly genes, SCO1 and SCO2 (synthesis of cytochrome c oxidase), enable subunits 1 and 2 to be incorporated into the holoprotein. This gene is the human homolog to the yeast SCO1 gene. |
| NA | ENSG00000170222 | ADPRM | ADP-ribose/CDP-alcohol diphosphatase, manganese dependent | 56985 | NA |
| NA | ENSG00000187824 | TMEM220 | transmembrane protein 220 | 388335 | NA |
| NA | ENSG00000154957 | ZNF18 | zinc finger protein 18 | 7566 | NA |
| NA | ENSG00000065559 | MAP2K4 | mitogen-activated protein kinase kinase 4 | 6416 | This gene encodes a member of the mitogen-activated protein kinase (MAPK) family. Members of this family act as an integration point for multiple biochemical signals and are involved in a wide variety of cellular processes such as proliferation, differentiation, transcription regulation, and development. They form a three-tiered signaling module composed of MAPKKKs, MAPKKs, and MAPKs. This protein is phosphorylated at serine and threonine residues by MAPKKKs and subsequently phosphorylates downstream MAPK targets at threonine and tyrosine residues. A similar protein in mouse has been reported to play a role in liver organogenesis. A pseudogene of this gene is located on the long arm of chromosome X. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000141052 | MYOCD | myocardin | 93649 | This gene encodes a nuclear protein, which is expressed in heart, aorta, and in smooth muscle cell-containing tissues. It functions as a transcriptional co-activator of serum response factor (SRF) and modulates expression of cardiac and smooth muscle-specific SRF-target genes, and thus may play a crucial role in cardiogenesis and differentiation of the smooth muscle cell lineage. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000006740 | ARHGAP44 | Rho GTPase activating protein 44 | 9912 | NA |
| NA | ENSG00000006744 | ELAC2 | elaC ribonuclease Z 2 | 60528 | The protein encoded by this gene has a C-terminal domain with tRNA 3’ processing endoribonuclease activity, which catalyzes the removal of the 3’ trailer from precursor tRNAs. The protein also interacts with activated Smad family member 2 (Smad2) and its nuclear partner forkhead box H1 (also known as FAST-1), and reduced expression can suppress transforming growth factor-beta induced growth arrest. Mutations in this gene result in an increased risk of prostate cancer. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000153976 | HS3ST3A1 | heparan sulfate-glucosamine 3-sulfotransferase 3A1 | 9955 | Heparan sulfate biosynthetic enzymes are key components in generating a myriad of distinct heparan sulfate fine structures that carry out multiple biologic activities. The enzyme encoded by this gene is a member of the heparan sulfate biosynthetic enzyme family. It is a type II integral membrane protein and possesses heparan sulfate glucosaminyl 3-O-sulfotransferase activity. The sulfotransferase domain of this enzyme is highly similar to the same domain of heparan sulfate D-glucosaminyl 3-O-sulfotransferase 3B1, and these two enzymes sulfate an identical disaccharide. This gene is widely expressed, with the most abundant expression in liver and placenta. |
| NA | ENSG00000006695 | COX10 | COX10 heme A:farnesyltransferase cytochrome c oxidase assembly factor | 1352 | Cytochrome c oxidase (COX), the terminal component of the mitochondrial respiratory chain, catalyzes the electron transfer from reduced cytochrome c to oxygen. This component is a heteromeric complex consisting of 3 catalytic subunits encoded by mitochondrial genes and multiple structural subunits encoded by nuclear genes. The mitochondrially-encoded subunits function in electron transfer, and the nuclear-encoded subunits may function in the regulation and assembly of the complex. This nuclear gene encodes heme A:farnesyltransferase, which is not a structural subunit but required for the expression of functional COX and functions in the maturation of the heme A prosthetic group of COX. This protein is predicted to contain 7-9 transmembrane domains localized in the mitochondrial inner membrane. A gene mutation, which results in the substitution of a lysine for an asparagine (N204K), is identified to be responsible for cytochrome c oxidase deficiency. In addition, this gene is disrupted in patients with CMT1A (Charcot-Marie-Tooth type 1A) duplication and with HNPP (hereditary neuropathy with liability to pressure palsies) deletion. |
| NA | ENSG00000125430 | HS3ST3B1 | heparan sulfate-glucosamine 3-sulfotransferase 3B1 | 9953 | The protein encoded by this gene is a type II integral membrane protein that belongs to the 3-O-sulfotransferases family. These proteins catalyze the addition of sulfate groups at the 3-OH position of glucosamine in heparan sulfate. The substrate specificity of individual members of the family is based on prior modification of the heparan sulfate chain, thus allowing different members of the family to generate binding sites for different proteins on the same heparan sulfate chain. Following treatment with a histone deacetylase inhibitor, expression of this gene is activated in a pancreatic cell line. The increased expression results in promotion of the epithelial-mesenchymal transition. In addition, the modification catalyzed by this protein allows herpes simplex virus membrane fusion and penetration. A very closely related homolog with an almost identical sulfotransferase domain maps less than 1 Mb away. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175106 | TVP23C | trans-golgi network vesicle protein 23 homolog C (S. cerevisiae) | 201158 | NA |
| NA | ENSG00000221926 | TRIM16 | tripartite motif containing 16 | 10626 | This gene was identified as an estrogen and anti-estrogen regulated gene in epithelial cells stably expressing estrogen receptor. The protein encoded by this gene contains two B box domains and a coiled-coiled region that are characteristic of the B box zinc finger protein family. The proteins of this family have been reported to be involved in a variety of biological processes including cell growth, differentiation and pathogenesis. Expression of this gene was detected in most tissues. Its function, however, has not yet been determined. |
| NA | ENSG00000187607 | ZNF286A | zinc finger protein 286A | 57335 | NA |
| NA | ENSG00000170425 | ADORA2B | adenosine A2b receptor | 136 | This gene encodes an adenosine receptor that is a member of the G protein-coupled receptor superfamily. This integral membrane protein stimulates adenylate cyclase activity in the presence of adenosine. This protein also interacts with netrin-1, which is involved in axon elongation. The gene is located near the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000214941 | ZSWIM7 | zinc finger SWIM-type containing 7 | 125150 | NA |
| NA | ENSG00000011295 | TTC19 | tetratricopeptide repeat domain 19 | 54902 | This gene encodes a protein with a tetratricopeptide repeat (TPR) domain containing several TPRs of about 34 aa each. These repeats are found in a variety of organisms including bacteria, fungi and plants, and are involved in a variety of functions including protein-protein interactions. This protein is embedded in the inner mitochondrial membrane and is involved in the formation of the mitochondrial respiratory chain III. It has also been suggested that this protein plays a role in cytokinesis. Mutations in this gene cause mitochondrial complex III deficiency. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000141027 | NCOR1 | nuclear receptor corepressor 1 | 9611 | This gene encodes a protein that mediates ligand-independent transcription repression of thyroid-hormone and retinoic-acid receptors by promoting chromatin condensation and preventing access of the transcription machinery. It is part of a complex which also includes histone deacetylases and transcriptional regulators similar to the yeast protein Sin3p. This gene is located between the Charcot-Marie-Tooth and Smith-Magenis syndrome critical regions on chromosome 17. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 17 and 20. |
| NA | ENSG00000108474 | PIGL | phosphatidylinositol glycan anchor biosynthesis class L | 9487 | This gene encodes an enzyme that catalyzes the second step of glycosylphosphatidylinositol (GPI) biosynthesis, which is the de-N-acetylation of N-acetylglucosaminylphosphatidylinositol (GlcNAc-PI). Study of a similar rat enzyme suggests that this protein localizes to the endoplasmic reticulum. |
| NA | ENSG00000166582 | CENPV | centromere protein V | 201161 | NA |
| NA | ENSG00000170315 | UBB | ubiquitin B | 7314 | This gene encodes ubiquitin, one of the most conserved proteins known. Ubiquitin has a major role in targeting cellular proteins for degradation by the 26S proteosome. It is also involved in the maintenance of chromatin structure, the regulation of gene expression, and the stress response. Ubiquitin is synthesized as a precursor protein consisting of either polyubiquitin chains or a single ubiquitin moiety fused to an unrelated protein. This gene consists of three direct repeats of the ubiquitin coding sequence with no spacer sequence. Consequently, the protein is expressed as a polyubiquitin precursor with a final amino acid after the last repeat. An aberrant form of this protein has been detected in patients with Alzheimer’s disease and Down syndrome. Pseudogenes of this gene are located on chromosomes 1, 2, 13, and 17. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000181350 | LRRC75A | leucine rich repeat containing 75A | 388341 | NA |
| NA | ENSG00000141040 | ZNF287 | zinc finger protein 287 | 57336 | This gene encodes a member of the krueppel family of zinc finger proteins, suggesting a role as a transcription factor. Its specific function has not been determined. This gene is located near the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000197566 | ZNF624 | zinc finger protein 624 | 57547 | NA |
| NA | ENSG00000133030 | MPRIP | myosin phosphatase Rho interacting protein | 23164 | NA |
| NA | ENSG00000154803 | FLCN | folliculin | 201163 | This gene is located within the Smith-Magenis syndrome region on chromosome 17. Mutations in this gene are associated with Birt-Hogg-Dube syndrome, which is characterized by fibrofolliculomas, renal tumors, lung cysts, and pneumothorax. Alternative splicing of this gene results in two transcript variants encoding different isoforms. |
| NA | ENSG00000141030 | COPS3 | COP9 signalosome subunit 3 | 8533 | The protein encoded by this gene possesses kinase activity that phosphorylates regulators involved in signal transduction. It phosphorylates I kappa-Balpha, p105, and c-Jun. It acts as a docking site for complex-mediated phosphorylation. The gene is located within the Smith-Magenis syndrome region on chromosome 17. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000205309 | NT5M | 5’,3’-nucleotidase, mitochondrial | 56953 | This gene encodes a 5’ nucleotidase that localizes to the mitochondrial matrix. This enzyme dephosphorylates the 5’- and 2’(3’)-phosphates of uracil and thymine deoxyribonucleotides. The gene is located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000141026 | MED9 | mediator complex subunit 9 | 55090 | The multiprotein Mediator complex is a coactivator required for activation of RNA polymerase II transcription by DNA bound transcription factors. The protein encoded by this gene is thought to be a subunit of the Mediator complex. This gene is located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000133027 | PEMT | phosphatidylethanolamine N-methyltransferase | 10400 | Phosphatidylcholine (PC) is the most abundant mammalian phospholipid. This gene encodes an enzyme which converts phosphatidylethanolamine to phosphatidylcholine by sequential methylation in the liver. Another distinct synthetic pathway in nucleated cells converts intracellular choline to phosphatidylcholine by a three-step process. The protein isoforms encoded by this gene localize to the endoplasmic reticulum and mitochondria-associated membranes. Alternate splicing of this gene results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000072310 | SREBF1 | sterol regulatory element binding transcription factor 1 | 6720 | This gene encodes a transcription factor that binds to the sterol regulatory element-1 (SRE1), which is a decamer flanking the low density lipoprotein receptor gene and some genes involved in sterol biosynthesis. The protein is synthesized as a precursor that is attached to the nuclear membrane and endoplasmic reticulum. Following cleavage, the mature protein translocates to the nucleus and activates transcription by binding to the SRE1. Sterols inhibit the cleavage of the precursor, and the mature nuclear form is rapidly catabolized, thereby reducing transcription. The protein is a member of the basic helix-loop-helix-leucine zipper (bHLH-Zip) transcription factor family. This gene is located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000171953 | ATPAF2 | ATP synthase mitochondrial F1 complex assembly factor 2 | 91647 | This gene encodes an assembly factor for the F(1) component of the mitochondrial ATP synthase. This protein binds specifically to the F1 alpha subunit and is thought to prevent this subunit from forming nonproductive homooligomers during enzyme assembly. This gene is located within the Smith-Magenis syndrome region on chromosome 17. An alternatively spliced transcript variant has been described, but its biological validity has not been determined. |
| NA | ENSG00000141034 | GID4 | GID complex subunit 4 homolog | 79018 | The multiprotein Mediator complex is a coactivator required for activation of RNA polymerase II transcription by DNA bound transcription factors. The protein encoded by this gene is thought to be a subunit of the Mediator complex. This gene is located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000108591 | DRG2 | developmentally regulated GTP binding protein 2 | 1819 | This gene encodes a GTP-binding protein known to function in the regulation of cell growth and differentiation. Read-through transcripts containing this gene and a downstream gene have been identified, but they are not thought to encode a fusion protein. This gene is located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000131899 | LLGL1 | lethal giant larvae homolog 1, scribble cell polarity complex component | 3996 | This gene encodes a protein that is similar to a tumor suppressor in Drosophila. The protein is part of a cytoskeletal network and is associated with nonmuscle myosin II heavy chain and a kinase that specifically phosphorylates this protein at serine residues. The gene is located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000177731 | FLII | flightless I actin binding protein | 2314 | This gene encodes a protein with a gelsolin-like actin binding domain and an N-terminal leucine-rich repeat-protein protein interaction domain. The protein is similar to a Drosophila protein involved in early embryogenesis and the structural organization of indirect flight muscle. The gene is located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000177427 | MIEF2 | mitochondrial elongation factor 2 | 125170 | This gene encodes an outer mitochondrial membrane protein that functions in the regulation of mitochondrial morphology. It can directly recruit the fission mediator dynamin-related protein 1 (Drp1) to the mitochondrial surface. The gene is located within the Smith-Magenis syndrome region on chromosome 17. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000177302 | TOP3A | topoisomerase (DNA) III alpha | 7156 | This gene encodes a DNA topoisomerase, an enzyme that controls and alters the topologic states of DNA during transcription. This enzyme catalyzes the transient breaking and rejoining of a single strand of DNA which allows the strands to pass through one another, thus reducing the number of supercoils and altering the topology of DNA. This enzyme forms a complex with BLM which functions in the regulation of recombination in somatic cells. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000176974 | SHMT1 | serine hydroxymethyltransferase 1 (soluble) | 6470 | This gene encodes the cytosolic form of serine hydroxymethyltransferase, a pyridoxal phosphate-containing enzyme that catalyzes the reversible conversion of serine and tetrahydrofolate to glycine and 5,10-methylene tetrahydrofolate. This reaction provides one-carbon units for synthesis of methionine, thymidylate, and purines in the cytoplasm. This gene is located within the Smith-Magenis syndrome region on chromosome 17. A pseudogene of this gene is located on the short arm of chromosome 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000249459 | ZNF286B | zinc finger protein 286B | 729288 | NA |
| NA | ENSG00000108448 | TRIM16L | tripartite motif containing 16-like | 147166 | NA |
| NA | ENSG00000171928 | TVP23B | trans-golgi network vesicle protein 23 homolog B (S. cerevisiae) | 51030 | NA |
| NA | ENSG00000141127 | PRPSAP2 | phosphoribosyl pyrophosphate synthetase-associated protein 2 | 5636 | This gene encodes a protein that associates with the enzyme phosphoribosylpyrophosphate synthetase (PRS). PRS catalyzes the formation of phosphoribosylpyrophosphate which is a substrate for synthesis of purine and pyrimidine nucleotides, histidine, tryptophan and NAD. PRS exists as a complex with two catalytic subunits and two associated subunits. This gene encodes a non-catalytic associated subunit of PRS. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000188522 | FAM83G | family with sequence similarity 83 member G | 644815 | NA |
| NA | ENSG00000072134 | EPN2 | epsin 2 | 22905 | This gene encodes a protein which interacts with clathrin and adaptor-related protein complex 2, alpha 1 subunit. The protein is found in a brain-derived clathrin-coated vesicle fraction and localizes to the peri-Golgi region and the cell periphery. The protein is thought to be involved in clathrin-mediated endocytosis. Alternate splicing of this gene results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000108641 | B9D1 | B9 protein domain 1 | 27077 | This gene encodes a B9 domain-containing protein, one of several that are involved in ciliogenesis. Alterations in expression of this gene have been found in a family with Meckel syndrome. Meckel syndrome has been associated with at least six different genes. This gene is located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000166484 | MAPK7 | mitogen-activated protein kinase 7 | 5598 | The protein encoded by this gene is a member of the MAP kinase family. MAP kinases act as an integration point for multiple biochemical signals, and are involved in a wide variety of cellular processes such as proliferation, differentiation, transcription regulation and development. This kinase is specifically activated by mitogen-activated protein kinase kinase 5 (MAP2K5/MEK5). It is involved in the downstream signaling processes of various receptor molecules including receptor type kinases, and G protein-coupled receptors. In response to extracelluar signals, this kinase translocates to cell nucleus, where it regulates gene expression by phosphorylating, and activating different transcription factors. Four alternatively spliced transcript variants of this gene encoding two distinct isoforms have been reported. |
| NA | ENSG00000166482 | MFAP4 | microfibrillar associated protein 4 | 4239 | This gene encodes a protein with similarity to a bovine microfibril-associated protein. The protein has binding specificities for both collagen and carbohydrate. It is thought to be an extracellular matrix protein which is involved in cell adhesion or intercellular interactions. The gene is located within the Smith-Magenis syndrome region. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000072210 | ALDH3A2 | aldehyde dehydrogenase 3 family member A2 | 224 | Aldehyde dehydrogenase isozymes are thought to play a major role in the detoxification of aldehydes generated by alcohol metabolism and lipid peroxidation. This gene product catalyzes the oxidation of long-chain aliphatic aldehydes to fatty acid. Mutations in the gene cause Sjogren-Larsson syndrome. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000083290 | ULK2 | unc-51 like autophagy activating kinase 2 | 9706 | This gene encodes a protein that is similar to a serine/threonine kinase in C. elegans which is involved in axonal elongation. The structure of this protein is similar to the C. elegans protein in that both proteins have an N-terminal kinase domain, a central proline/serine rich (PS) domain, and a C-terminal (C) domain. The gene is located within the Smith-Magenis syndrome region on chromosome 17. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000108599 | AKAP10 | A-kinase anchoring protein 10 | 11216 | This gene encodes a member of the A-kinase anchor protein family. A-kinase anchor proteins bind to the regulatory subunits of protein kinase A (PKA) and confine the holoenzyme to discrete locations within the cell. The encoded protein is localized to mitochondria and interacts with both the type I and type II regulatory subunits of PKA. Polymorphisms in this gene may be associated with increased risk of arrhythmias and sudden cardiac death. |
| NA | ENSG00000128487 | SPECC1 | sperm antigen with calponin homology and coiled-coil domains 1 | 92521 | The protein encoded by this gene belongs to the cytospin-A family. It is localized in the nucleus, and highly expressed in testis and some cancer cell lines. A chromosomal translocation involving this gene and platelet-derived growth factor receptor, beta gene (PDGFRB) may be a cause of juvenile myelomonocytic leukemia. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000124422 | USP22 | ubiquitin specific peptidase 22 | 23326 | NA |
| NA | ENSG00000109016 | DHRS7B | dehydrogenase/reductase (SDR family) member 7B | 25979 | This gene is located within the Smith-Magenis syndrome region on chromosome 17. It encodes a protein of unknown function. |
| NA | ENSG00000178307 | TMEM11 | transmembrane protein 11 | 8834 | NA |
| TRUE | ENSG00000154035 | NA | NA | NA | NA |
| NA | ENSG00000034152 | MAP2K3 | mitogen-activated protein kinase kinase 3 | 5606 | The protein encoded by this gene is a dual specificity protein kinase that belongs to the MAP kinase kinase family. This kinase is activated by mitogenic and environmental stress, and participates in the MAP kinase-mediated signaling cascade. It phosphorylates and thus activates MAPK14/p38-MAPK. This kinase can be activated by insulin, and is necessary for the expression of glucose transporter. Expression of RAS oncogene is found to result in the accumulation of the active form of this kinase, which thus leads to the constitutive activation of MAPK14, and confers oncogenic transformation of primary cells. The inhibition of this kinase is involved in the pathogenesis of Yersina pseudotuberculosis. Multiple alternatively spliced transcript variants that encode distinct isoforms have been reported for this gene. |
| NA | ENSG00000263563 | UBBP4 | ubiquitin B pseudogene 4 | ENSG00000263563 | NA |
| NA | ENSG00000256618 | MTRNR2L1 | MT-RNR2-like 1 | 100462977 | NA |
| NA | ENSG00000141068 | KSR1 | kinase suppressor of ras 1 | 8844 | NA |
| NA | ENSG00000232859 | LYRM9 | LYR motif containing 9 | 201229 | NA |
| NA | ENSG00000087095 | NLK | nemo-like kinase | 51701 | NA |
| NA | ENSG00000109084 | TMEM97 | transmembrane protein 97 | 27346 | TMEM97 is a conserved integral membrane protein that plays a role in controlling cellular cholesterol levels (Bartz et al., 2009 [PubMed 19583955]). |
| NA | ENSG00000109083 | IFT20 | intraflagellar transport 20 | 90410 | This gene encodes a intraflagellar transport protein important for intracellular transport. The encoded protein forms part of a complex involved in trafficking of proteins from the Golgi body, including recycling of immune signalling components (Finetti et al., PubMed: 19855387). This gene is part of a complex set of sense-antisense loci that may be co-regulated. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. A pseudogene of this gene is located on the long arm of chromosome 14. |
| NA | ENSG00000109079 | TNFAIP1 | TNF alpha induced protein 1 | 7126 | This gene was identified as a gene whose expression can be induced by the tumor necrosis factor alpha (TNF) in umbilical vein endothelial cells. Studies of a similar gene in mouse suggest that the expression of this gene is developmentally regulated in a tissue-specific manner. |
| NA | ENSG00000004142 | POLDIP2 | polymerase (DNA) delta interacting protein 2 | 26073 | This gene encodes a protein that interacts with the DNA polymerase delta p50 subunit, as well as with proliferating cell nuclear antigen. The encoded protein maybe play a role in the ability of the replication fork to bypass DNA lesions. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000244045 | TMEM199 | transmembrane protein 199 | 147007 | The protein encoded by this gene has been observed to localize to the endoplasmic reticulum (ER)-Golgi intermediate compartment (ERGIC) and coat protein complex I (COPI) in some human cells. The encoded protein shares some homology with the yeast protein Vma12. Defects in this gene are a cause of congenital disorder of glycosylation, type IIp. |
| NA | ENSG00000004139 | SARM1 | sterile alpha and TIR motif containing 1 | 23098 | NA |
| NA | ENSG00000076351 | SLC46A1 | solute carrier family 46 member 1 | 113235 | This gene encodes a transmembrane proton-coupled folate transporter protein that facilitates the movement of folate and antifolate substrates across cell membranes, optimally in acidic pH environments. This protein is also expressed in the brain and choroid plexus where it transports folates into the central nervous system. This protein further functions as a heme transporter in duodenal enterocytes, and potentially in other tissues like liver and kidney. Its localization to the apical membrane or cytoplasm of intestinal cells is modulated by dietary iron levels. Mutations in this gene are associated with autosomal recessive hereditary folate malabsorption disease. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000258472 | RP11-192H23.4 | NA | ENSG00000258472 | NA |
| NA | ENSG00000109103 | UNC119 | unc-119 lipid binding chaperone | 9094 | This gene is specifically expressed in the photoreceptors in the retina. The encoded product shares strong homology with the C. elegans unc119 protein and it can functionally complement the C. elegans unc119 mutation. It has been localized to the photoreceptor synapses in the outer plexiform layer of the retina, and suggested to play a role in the mechanism of photoreceptor neurotransmitter release through the synaptic vesicle cycle. Two transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000087111 | PIGS | phosphatidylinositol glycan anchor biosynthesis class S | 94005 | This gene encodes a protein that is involved in GPI-anchor biosynthesis. The glycosylphosphatidylinositol (GPI) anchor is a glycolipid found on many blood cells and serves to anchor proteins to the cell surface. This gene encodes an essential component of the multisubunit enzyme, GPI transamidase. GPI transamidase mediates GPI anchoring in the endoplasmic reticulum, by catalyzing the transfer of fully assembled GPI units to proteins. |
| NA | ENSG00000109107 | ALDOC | aldolase, fructose-bisphosphate C | 230 | This gene encodes a member of the class I fructose-biphosphate aldolase gene family. Expressed specifically in the hippocampus and Purkinje cells of the brain, the encoded protein is a glycolytic enzyme that catalyzes the reversible aldol cleavage of fructose-1,6-biphosphate and fructose 1-phosphate to dihydroxyacetone phosphate and either glyceraldehyde-3-phosphate or glyceraldehyde, respectively. |
| NA | ENSG00000076382 | SPAG5 | sperm associated antigen 5 | 10615 | This gene encodes a protein associated with the mitotic spindle apparatus. The encoded protein may be involved in the functional and dynamic regulation of mitotic spindles. |
| NA | ENSG00000007202 | KIAA0100 | KIAA0100 | 9703 | NA |
| NA | ENSG00000109111 | SUPT6H | SPT6 homolog, histone chaperone | 6830 | NA |
| NA | ENSG00000167525 | PROCA1 | protein interacting with cyclin A1 | 147011 | NA |
| NA | ENSG00000109113 | RAB34 | RAB34, member RAS oncogene family | 83871 | This gene encodes a protein belonging to the RAB family of proteins, which are small GTPases involved in protein transport. This family member is a Golgi-bound member of the secretory pathway that is involved in the repositioning of lysosomes and the activation of macropinocytosis. Alternative splicing of this gene results in multiple transcript variants. This gene overlaps and shares exon structure with the nine-amino acid residue-repeats (NARR) gene, which encodes a functionally distinct nucleolar protein from a different reading frame. |
| NA | ENSG00000198242 | RPL23A | ribosomal protein L23a | 6147 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L23P family of ribosomal proteins. It is located in the cytoplasm. The protein may be one of the target molecules involved in mediating growth inhibition by interferon. In yeast, the corresponding protein binds to a specific site on the 26S rRNA. This gene is co-transcribed with the U42A, U42B, U101A, and U101B small nucleolar RNA genes, which are located in its third, first, second, and fourth introns, respectively. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000160606 | TLCD1 | TLC domain containing 1 | 116238 | NA |
| NA | ENSG00000160602 | NEK8 | NIMA related kinase 8 | 284086 | This gene encodes a member of the serine/threionine protein kinase family related to NIMA (never in mitosis, gene A) of Aspergillus nidulans. The encoded protein may play a role in cell cycle progression from G2 to M phase. Mutations in the related mouse gene are associated with a disease phenotype that closely parallels the juvenile autosomal recessive form of polycystic kidney disease in humans. |
| NA | ENSG00000076604 | TRAF4 | TNF receptor associated factor 4 | 9618 | This gene encodes a member of the TNF receptor associated factor (TRAF) family. TRAF proteins are associated with, and mediate signal transduction from members of the TNF receptor superfamily. The encoded protein has been shown to interact with neurotrophin receptor, p75 (NTR/NTSR1), and negatively regulate NTR induced cell death and NF-kappa B activation. This protein has been found to bind to p47phox, a cytosolic regulatory factor included in a multi-protein complex known as NAD(P)H oxidase. This protein thus, is thought to be involved in the oxidative activation of MAPK8/JNK. Alternatively spliced transcript variants have been observed but the full-length nature of only one has been determined. |
| NA | ENSG00000173065 | FAM222B | family with sequence similarity 222 member B | 55731 | NA |
| NA | ENSG00000132591 | ERAL1 | Era-like 12S mitochondrial rRNA chaperone 1 | 26284 | The protein encoded by this gene is a GTPase that localizes to the mitochondrion. The encoded protein binds to the 3’ terminal stem loop of 12S mitochondrial rRNA and is required for proper assembly of the 28S small mitochondrial ribosomal subunit. Deletion of this gene has been shown to cause mitochondrial dysfunction, growth retardation, and apoptosis. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132589 | FLOT2 | flotillin 2 | 2319 | Caveolae are small domains on the inner cell membrane involved in vesicular trafficking and signal transduction. This gene encodes a caveolae-associated, integral membrane protein, which is thought to function in neuronal signaling. |
| NA | ENSG00000167536 | DHRS13 | dehydrogenase/reductase (SDR family) member 13 | 147015 | NA |
| NA | ENSG00000109118 | PHF12 | PHD finger protein 12 | 57649 | NA |
| NA | ENSG00000179761 | PIPOX | pipecolic acid oxidase | 51268 | NA |
| NA | ENSG00000063015 | SEZ6 | seizure related 6 homolog (mouse) | 124925 | NA |
| NA | ENSG00000196535 | MYO18A | myosin XVIIIA | 399687 | NA |
| NA | ENSG00000108256 | NUFIP2 | nuclear fragile X mental retardation protein interacting protein 2 | 57532 | NA |
| NA | ENSG00000160551 | TAOK1 | TAO kinase 1 | 57551 | NA |
| NA | ENSG00000167543 | TP53I13 | tumor protein p53 inducible protein 13 | 90313 | NA |
| NA | ENSG00000108262 | GIT1 | GIT ArfGAP 1 | 28964 | NA |
| NA | ENSG00000198720 | ANKRD13B | ankyrin repeat domain 13B | 124930 | NA |
| NA | ENSG00000141298 | SSH2 | slingshot protein phosphatase 2 | 85464 | This gene encodes a protein tyrosine phosphatase that plays a key role in the regulation of actin filaments. The encoded protein dephosphorylates and activates cofilin, which promotes actin filament depolymerization. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000126653 | NSRP1 | nuclear speckle splicing regulatory protein 1 | 84081 | NA |
| NA | ENSG00000108582 | CPD | carboxypeptidase D | 1362 | The metallocarboxypeptidase family of enzymes is divided into 2 subfamilies based on sequence similarities. The pancreatic carboxypeptidase-like and the regulatory B-type carboxypeptidase subfamilies. Carboxypeptidase D has been identified as a regulatory B-type carboxypeptidase. CPD is a homolog of duck gp180, a hepatitis B virus-binding protein. Transcript variants utilizing alternative polyadenylation signals exist for this gene. |
| NA | ENSG00000108587 | GOSR1 | golgi SNAP receptor complex member 1 | 9527 | This gene encodes a trafficking membrane protein which transports proteins among the endoplasmic reticulum and the Golgi and between Golgi compartments. This protein is considered an essential component of the Golgi SNAP receptor (SNARE) complex. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000176390 | CRLF3 | cytokine receptor-like factor 3 | 51379 | This gene encodes a cytokine receptor-like factor that may negatively regulate cell cycle progression at the G0/G1 phase. Studies of the related rat protein suggest that it may regulate neuronal morphology and synaptic vesicle biogenesis. This gene is one of several genes located in the neurofibromatosis type I tumor suppressor region on the q arm of chromosome 17, a region that is subject to microdeletions, duplications, chromosomal breaks and rearrangements. Alternative splicing of this gene results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 2 and 5. |
| NA | ENSG00000176208 | ATAD5 | ATPase family, AAA domain containing 5 | 79915 | NA |
| NA | ENSG00000181481 | RNF135 | ring finger protein 135 | 84282 | The protein encoded by this gene contains a RING finger domain, a motif present in a variety of functionally distinct proteins and known to be involved in protein-protein and protein-DNA interactions. This gene is located in a chromosomal region known to be frequently deleted in patients with neurofibromatosis. Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000131242 | RAB11FIP4 | RAB11 family interacting protein 4 (class II) | 84440 | Proteins of the large Rab GTPase family (see RAB1A; MIM 179508) have regulatory roles in the formation, targeting, and fusion of intracellular transport vesicles. RAB11FIP4 is one of many proteins that interact with and regulate Rab GTPases (Hales et al., 2001 [PubMed 11495908]). |
| NA | ENSG00000172301 | COPRS | coordinator of PRMT5, differentiation stimulator | 55352 | NA |
| NA | ENSG00000108651 | UTP6 | UTP6, small subunit processome component | 55813 | NA |
| NA | ENSG00000178691 | SUZ12 | SUZ12 polycomb repressive complex 2 subunit | 23512 | This zinc finger gene has been identified at the breakpoints of a recurrent chromosomal translocation reported in endometrial stromal sarcoma. Recombination of these breakpoints results in the fusion of this gene and JAZF1. The protein encoded by this gene contains a zinc finger domain in the C terminus of the coding region. |
| NA | ENSG00000185158 | LRRC37B | leucine rich repeat containing 37B | 114659 | NA |
| NA | ENSG00000126858 | RHOT1 | ras homolog family member T1 | 55288 | NA |
| NA | ENSG00000141314 | RHBDL3 | rhomboid, veinlet-like 3 (Drosophila) | 162494 | NA |
| NA | ENSG00000108666 | C17orf75 | chromosome 17 open reading frame 75 | 64149 | NA |
| NA | ENSG00000010244 | ZNF207 | zinc finger protein 207 | 7756 | NA |
| NA | ENSG00000108671 | PSMD11 | proteasome 26S subunit, non-ATPase 11 | 5717 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. This gene encodes a member of the proteasome subunit S9 family that functions as a non-ATPase subunit of the 19S regulator and is phosphorylated by AMP-activated protein kinase. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000176749 | CDK5R1 | cyclin-dependent kinase 5, regulatory subunit 1 (p35) | 8851 | The protein encoded by this gene (p35) is a neuron-specific activator of cyclin-dependent kinase 5 (CDK5); the activation of CDK5 is required for proper development of the central nervous system. The p35 form of this protein is proteolytically cleaved by calpain, generating a p25 form. The cleavage of p35 into p25 results in relocalization of the protein from the cell periphery to nuclear and perinuclear regions. P25 deregulates CDK5 activity by prolonging its activation and changing its cellular location. The p25 form accumulates in the brain neurons of patients with Alzheimer’s disease. This accumulation correlates with an increase in CDK5 kinase activity, and may lead to aberrantly phosphorylated forms of the microtubule-associated protein tau, which contributes to Alzheimer’s disease. |
| NA | ENSG00000176658 | MYO1D | myosin ID | 4642 | NA |
| NA | ENSG00000006042 | TMEM98 | transmembrane protein 98 | 26022 | This gene encodes a transmembrane protein. A missense mutation in this gene result in Nanophthalmos 4 (NNO4). Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000108691 | CCL2 | C-C motif chemokine ligand 2 | 6347 | This gene is one of several cytokine genes clustered on the q-arm of chromosome 17. Chemokines are a superfamily of secreted proteins involved in immunoregulatory and inflammatory processes. The superfamily is divided into four subfamilies based on the arrangement of N-terminal cysteine residues of the mature peptide. This chemokine is a member of the CC subfamily which is characterized by two adjacent cysteine residues. This cytokine displays chemotactic activity for monocytes and basophils but not for neutrophils or eosinophils. It has been implicated in the pathogenesis of diseases characterized by monocytic infiltrates, like psoriasis, rheumatoid arthritis and atherosclerosis. It binds to chemokine receptors CCR2 and CCR4. |
| NA | ENSG00000198783 | ZNF830 | zinc finger protein 830 | 91603 | NA |
| NA | ENSG00000005156 | LIG3 | ligase III, DNA, ATP-dependent | 3980 | This gene is a member of the DNA ligase family. Each member of this family encodes a protein that catalyzes the joining of DNA ends but they each have a distinct role in DNA metabolism. The protein encoded by this gene is involved in excision repair and is located in both the mitochondria and nucleus, with translation initiation from the upstream start codon allowing for transport to the mitochondria and translation initiation from a downstream start codon allowing for transport to the nucleus. Additionally, alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000092871 | RFFL | ring finger and FYVE-like domain containing E3 ubiquitin protein ligase | 117584 | NA |
| NA | ENSG00000185379 | RAD51D | RAD51 paralog D | 5892 | The protein encoded by this gene is a member of the RAD51 protein family. RAD51 family members are highly similar to bacterial RecA and Saccharomyces cerevisiae Rad51, which are known to be involved in the homologous recombination and repair of DNA. This protein forms a complex with several other members of the RAD51 family, including RAD51L1, RAD51L2, and XRCC2. The protein complex formed with this protein has been shown to catalyze homologous pairing between single- and double-stranded DNA, and is thought to play a role in the early stage of recombinational repair of DNA. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the downstream ring finger and FYVE-like domain containing 1 (RFFL) gene. |
| NA | ENSG00000073536 | NLE1 | notchless homolog 1 (Drosophila) | 54475 | NA |
| NA | ENSG00000166750 | SLFN5 | schlafen family member 5 | 162394 | NA |
| NA | ENSG00000172123 | SLFN12 | schlafen family member 12 | 55106 | NA |
| NA | ENSG00000108733 | PEX12 | peroxisomal biogenesis factor 12 | 5193 | This gene belongs to the peroxin-12 family. Peroxins (PEXs) are proteins that are essential for the assembly of functional peroxisomes. The peroxisome biogenesis disorders (PBDs) are a group of genetically heterogeneous autosomal recessive, lethal diseases characterized by multiple defects in peroxisome function. The peroxisomal biogenesis disorders are a heterogeneous group with at least 14 complementation groups and with more than 1 phenotype being observed in cases falling into particular complementation groups. Although the clinical features of PBD patients vary, cells from all PBD patients exhibit a defect in the import of one or more classes of peroxisomal matrix proteins into the organelle. Defects in this gene are a cause of Zellweger syndrome (ZWS). |
| NA | ENSG00000006125 | AP2B1 | adaptor related protein complex 2 beta 1 subunit | 163 | The protein encoded by this gene is one of two large chain components of the assembly protein complex 2, which serves to link clathrin to receptors in coated vesicles. The encoded protein is found on the cytoplasmic face of coated vesicles in the plasma membrane. Two transcript variants encoding different isoforms have been found for this gene. |
| TRUE | ENSG00000141150 | NA | NA | NA | NA |
| TRUE | ENSG00000187456 | NA | NA | NA | NA |
| TRUE | ENSG00000184886 | NA | NA | NA | NA |
| TRUE | ENSG00000108272 | NA | NA | NA | NA |
| TRUE | ENSG00000129282 | NA | NA | NA | NA |
| TRUE | ENSG00000132142 | NA | NA | NA | NA |
| TRUE | ENSG00000108264 | NA | NA | NA | NA |
| TRUE | ENSG00000161326 | NA | NA | NA | NA |
| TRUE | ENSG00000141141 | NA | NA | NA | NA |
| TRUE | ENSG00000174093 | NA | NA | NA | NA |
| TRUE | ENSG00000179294 | NA | NA | NA | NA |
| TRUE | ENSG00000108292 | NA | NA | NA | NA |
| TRUE | ENSG00000230055 | NA | NA | NA | NA |
| TRUE | ENSG00000056661 | NA | NA | NA | NA |
| TRUE | ENSG00000108294 | NA | NA | NA | NA |
| TRUE | ENSG00000141720 | NA | NA | NA | NA |
| TRUE | ENSG00000108296 | NA | NA | NA | NA |
| NA | ENSG00000125691 | RPL23 | ribosomal protein L23 | 9349 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L14P family of ribosomal proteins. It is located in the cytoplasm. This gene has been referred to as rpL17 because the encoded protein shares amino acid identity with ribosomal protein L17 from Saccharomyces cerevisiae; however, its official symbol is RPL23. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000002834 | LASP1 | LIM and SH3 protein 1 | 3927 | This gene encodes a member of a subfamily of LIM proteins, characterized by a LIM motif and a domain of Src homology region 3, and also a member of the nebulin family of actin-binding proteins. The encoded protein is a cAMP and cGMP dependent signaling protein and binds to the actin cytoskeleton at extensions of the cell membrane. The encoded protein has been linked to metastatic breast cancer, hematopoetic tumors such as B-cell lymphomas, and colorectal cancer. |
| NA | ENSG00000067191 | CACNB1 | calcium voltage-gated channel auxiliary subunit beta 1 | 782 | The protein encoded by this gene belongs to the calcium channel beta subunit family. It plays an important role in the calcium channel by modulating G protein inhibition, increasing peak calcium current, controlling the alpha-1 subunit membrane targeting and shifting the voltage dependence of activation and inactivation. Alternative splicing occurs at this locus and three transcript variants encoding three distinct isoforms have been identified. |
| NA | ENSG00000108298 | RPL19 | ribosomal protein L19 | 6143 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L19E family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000141750 | STAC2 | SH3 and cysteine rich domain 2 | 342667 | NA |
| NA | ENSG00000108306 | FBXL20 | F-box and leucine-rich repeat protein 20 | 84961 | Members of the F-box protein family, such as FBXL20, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000125686 | MED1 | mediator complex subunit 1 | 5469 | The activation of gene transcription is a multistep process that is triggered by factors that recognize transcriptional enhancer sites in DNA. These factors work with co-activators to direct transcriptional initiation by the RNA polymerase II apparatus. The protein encoded by this gene is a subunit of the CRSP (cofactor required for SP1 activation) complex, which, along with TFIID, is required for efficient activation by SP1. This protein is also a component of other multisubunit complexes e.g. thyroid hormone receptor-(TR-) associated proteins which interact with TR and facilitate TR function on DNA templates in conjunction with initiation factors and cofactors. It also regulates p53-dependent apoptosis and it is essential for adipogenesis. This protein is known to have the ability to self-oligomerize. |
| NA | ENSG00000167258 | CDK12 | cyclin-dependent kinase 12 | 51755 | NA |
| NA | ENSG00000131771 | PPP1R1B | protein phosphatase 1 regulatory inhibitor subunit 1B | 84152 | This gene encodes a bifunctional signal transduction molecule. Dopaminergic and glutamatergic receptor stimulation regulates its phosphorylation and function as a kinase or phosphatase inhibitor. As a target for dopamine, this gene may serve as a therapeutic target for neurologic and psychiatric disorders. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000131748 | STARD3 | StAR related lipid transfer domain containing 3 | 10948 | This gene encodes a member of a subfamily of lipid trafficking proteins that are characterized by a C-terminal steroidogenic acute regulatory domain and an N-terminal metastatic lymph node 64 domain. The encoded protein localizes to the membranes of late endosomes and may be involved in exporting cholesterol. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000173991 | TCAP | titin-cap | 8557 | Sarcomere assembly is regulated by the muscle protein titin. Titin is a giant elastic protein with kinase activity that extends half the length of a sarcomere. It serves as a scaffold to which myofibrils and other muscle related proteins are attached. This gene encodes a protein found in striated and cardiac muscle that binds to the titin Z1-Z2 domains and is a substrate of titin kinase, interactions thought to be critical to sarcomere assembly. Mutations in this gene are associated with limb-girdle muscular dystrophy type 2G. |
| NA | ENSG00000141744 | PNMT | phenylethanolamine N-methyltransferase | 5409 | The product of this gene catalyzes the last step of the catecholamine biosynthesis pathway, which methylates norepinephrine to form epinephrine (adrenaline). The enzyme also has beta-carboline 2N-methyltransferase activity. This gene is thought to play a key step in regulating epinephrine production. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000161395 | PGAP3 | post-GPI attachment to proteins 3 | 93210 | This gene encodes a glycosylphosphatidylinositol (GPI)-specific phospholipase that primarily localizes to the Golgi apparatus. This ubiquitously expressed gene is predicted to encode a seven-transmembrane protein that removes unsaturated fatty acids from the sn-2 position of GPI. The remodeling of the constituent fatty acids on GPI is thought to be important for the proper association between GPI-anchored proteins and lipid rafts. The tethering of proteins to plasma membranes via posttranslational GPI-anchoring is thought to play a role in protein sorting and trafficking. Mutations in this gene cause the autosomal recessive neurologic disorder hyperphosphatasia with mental retardation syndrome 4 (HPMRS4). Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000141736 | ERBB2 | erb-b2 receptor tyrosine kinase 2 | 2064 | This gene encodes a member of the epidermal growth factor (EGF) receptor family of receptor tyrosine kinases. This protein has no ligand binding domain of its own and therefore cannot bind growth factors. However, it does bind tightly to other ligand-bound EGF receptor family members to form a heterodimer, stabilizing ligand binding and enhancing kinase-mediated activation of downstream signalling pathways, such as those involving mitogen-activated protein kinase and phosphatidylinositol-3 kinase. Allelic variations at amino acid positions 654 and 655 of isoform a (positions 624 and 625 of isoform b) have been reported, with the most common allele, Ile654/Ile655, shown here. Amplification and/or overexpression of this gene has been reported in numerous cancers, including breast and ovarian tumors. Alternative splicing results in several additional transcript variants, some encoding different isoforms and others that have not been fully characterized. |
| NA | ENSG00000141738 | GRB7 | growth factor receptor bound protein 7 | 2886 | The product of this gene belongs to a small family of adapter proteins that are known to interact with a number of receptor tyrosine kinases and signaling molecules. This gene encodes a growth factor receptor-binding protein that interacts with epidermal growth factor receptor (EGFR) and ephrin receptors. The protein plays a role in the integrin signaling pathway and cell migration by binding with focal adhesion kinase (FAK). Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000073605 | GSDMB | gasdermin B | 55876 | This gene encodes a member of the gasdermin-domain containing protein family. Other gasdermin-family genes are implicated in the regulation of apoptosis in epithelial cells, and are linked to cancer. Multiple transcript variants encoding different isoforms have been found for this gene. Additional variants have been described, but they are candidates for nonsense-mediated mRNA decay (NMD) and are unlikely to be protein-coding. |
| NA | ENSG00000172057 | ORMDL3 | ORMDL sphingolipid biosynthesis regulator 3 | 94103 | NA |
| NA | ENSG00000108344 | PSMD3 | proteasome 26S subunit, non-ATPase 3 | 5709 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. This gene encodes a member of the proteasome subunit S3 family that functions as one of the non-ATPase subunits of the 19S regulator lid. Single nucleotide polymorphisms in this gene are associated with neutrophil count. |
| NA | ENSG00000008838 | MED24 | mediator complex subunit 24 | 9862 | This gene encodes a component of the mediator complex (also known as TRAP, SMCC, DRIP, or ARC), a transcriptional coactivator complex thought to be required for the expression of almost all genes. The mediator complex is recruited by transcriptional activators or nuclear receptors to induce gene expression, possibly by interacting with RNA polymerase II and promoting the formation of a transcriptional pre-initiation complex. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000126351 | THRA | thyroid hormone receptor, alpha | 7067 | The protein encoded by this gene is a nuclear hormone receptor for triiodothyronine. It is one of the several receptors for thyroid hormone, and has been shown to mediate the biological activities of thyroid hormone. Knockout studies in mice suggest that the different receptors, while having certain extent of redundancy, may mediate different functions of thyroid hormone. Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000126368 | NR1D1 | nuclear receptor subfamily 1 group D member 1 | 9572 | This gene encodes a transcription factor that is a member of the nuclear receptor subfamily 1. The encoded protein is a ligand-sensitive transcription factor that negatively regulates the expression of core clock proteins. In particular this protein represses the circadian clock transcription factor aryl hydrocarbon receptor nuclear translocator-like protein 1 (ARNTL). This protein may also be involved in regulating genes that function in metabolic, inflammatory and cardiovascular processes. |
| NA | ENSG00000108349 | CASC3 | cancer susceptibility candidate 3 | 22794 | The product of this gene is a core component of the exon junction complex (EJC), a protein complex that is deposited on spliced mRNAs at exon-exon junctions and functions in nonsense-mediated mRNA decay (NMD). The encoded protein binds RNA and interacts with two other EJC core components. It is predominantly located in the cytoplasm, but shuttles into the nucleus where it localizes to nuclear speckles. |
| NA | ENSG00000108352 | RAPGEFL1 | Rap guanine nucleotide exchange factor like 1 | 51195 | NA |
| NA | ENSG00000171475 | WIPF2 | WAS/WASL interacting protein family member 2 | 147179 | This gene encodes a WASP interacting protein (WIP)-related protein. It has been shown that this protein has a role in the WASP-mediated organization of the actin cytoskeleton and that this protein is a potential link between the activated platelet-derived growth factor receptor and the actin polymerization machinery. |
| NA | ENSG00000094804 | CDC6 | cell division cycle 6 | 990 | The protein encoded by this gene is highly similar to Saccharomyces cerevisiae Cdc6, a protein essential for the initiation of DNA replication. This protein functions as a regulator at the early steps of DNA replication. It localizes in cell nucleus during cell cyle G1, but translocates to the cytoplasm at the start of S phase. The subcellular translocation of this protein during cell cyle is regulated through its phosphorylation by Cdks. Transcription of this protein was reported to be regulated in response to mitogenic signals through transcriptional control mechanism involving E2F proteins. |
| NA | ENSG00000131759 | RARA | retinoic acid receptor alpha | 5914 | This gene represents a nuclear retinoic acid receptor. The encoded protein, retinoic acid receptor alpha, regulates transcription in a ligand-dependent manner. This gene has been implicated in regulation of development, differentiation, apoptosis, granulopoeisis, and transcription of clock genes. Translocations between this locus and several other loci have been associated with acute promyelocytic leukemia. Alternatively spliced transcript variants have been found for this locus. |
| NA | ENSG00000131747 | TOP2A | topoisomerase (DNA) II alpha | 7153 | This gene encodes a DNA topoisomerase, an enzyme that controls and alters the topologic states of DNA during transcription. This nuclear enzyme is involved in processes such as chromosome condensation, chromatid separation, and the relief of torsional stress that occurs during DNA transcription and replication. It catalyzes the transient breaking and rejoining of two strands of duplex DNA which allows the strands to pass through one another, thus altering the topology of DNA. Two forms of this enzyme exist as likely products of a gene duplication event. The gene encoding this form, alpha, is localized to chromosome 17 and the beta gene is localized to chromosome 3. The gene encoding this enzyme functions as the target for several anticancer agents and a variety of mutations in this gene have been associated with the development of drug resistance. Reduced activity of this enzyme may also play a role in ataxia-telangiectasia. |
| NA | ENSG00000141753 | IGFBP4 | insulin like growth factor binding protein 4 | 3487 | This gene is a member of the insulin-like growth factor binding protein (IGFBP) family and encodes a protein with an IGFBP domain and a thyroglobulin type-I domain. The protein binds both insulin-like growth factors (IGFs) I and II and circulates in the plasma in both glycosylated and non-glycosylated forms. Binding of this protein prolongs the half-life of the IGFs and alters their interaction with cell surface receptors. |
| NA | ENSG00000073584 | SMARCE1 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily e, member 1 | 6605 | The protein encoded by this gene is part of the large ATP-dependent chromatin remodeling complex SWI/SNF, which is required for transcriptional activation of genes normally repressed by chromatin. The encoded protein, either alone or when in the SWI/SNF complex, can bind to 4-way junction DNA, which is thought to mimic the topology of DNA as it enters or exits the nucleosome. The protein contains a DNA-binding HMG domain, but disruption of this domain does not abolish the DNA-binding or nucleosome-displacement activities of the SWI/SNF complex. Unlike most of the SWI/SNF complex proteins, this protein has no yeast counterpart. |
| NA | ENSG00000186395 | KRT10 | keratin 10 | 3858 | This gene encodes a member of the type I (acidic) cytokeratin family, which belongs to the superfamily of intermediate filament (IF) proteins. Keratins are heteropolymeric structural proteins which form the intermediate filament. These filaments, along with actin microfilaments and microtubules, compose the cytoskeleton of epithelial cells. Mutations in this gene are associated with epidermolytic hyperkeratosis. This gene is located within a cluster of keratin family members on chromosome 17q21. |
| NA | ENSG00000167920 | TMEM99 | transmembrane protein 99 | 147184 | NA |
| NA | ENSG00000171345 | KRT19 | keratin 19 | 3880 | The protein encoded by this gene is a member of the keratin family. The keratins are intermediate filament proteins responsible for the structural integrity of epithelial cells and are subdivided into cytokeratins and hair keratins. The type I cytokeratins consist of acidic proteins which are arranged in pairs of heterotypic keratin chains. Unlike its related family members, this smallest known acidic cytokeratin is not paired with a basic cytokeratin in epithelial cells. It is specifically expressed in the periderm, the transiently superficial layer that envelopes the developing epidermis. The type I cytokeratins are clustered in a region of chromosome 17q12-q21. |
| NA | ENSG00000173801 | JUP | junction plakoglobin | 3728 | This gene encodes a major cytoplasmic protein which is the only known constituent common to submembranous plaques of both desmosomes and intermediate junctions. This protein forms distinct complexes with cadherins and desmosomal cadherins and is a member of the catenin family since it contains a distinct repeating amino acid motif called the armadillo repeat. Mutation in this gene has been associated with Naxos disease. Alternative splicing occurs in this gene; however, not all transcripts have been fully described. |
| NA | ENSG00000173812 | EIF1 | eukaryotic translation initiation factor 1 | 10209 | NA |
| NA | ENSG00000173805 | HAP1 | huntingtin-associated protein 1 | 9001 | Huntington’s disease (HD), a neurodegenerative disorder characterized by loss of striatal neurons, is caused by an expansion of a polyglutamine tract in the HD protein huntingtin. This gene encodes a protein that interacts with huntingtin, with two cytoskeletal proteins (dynactin and pericentriolar autoantigen protein 1), and with a hepatocyte growth factor-regulated tyrosine kinase substrate. The interactions with cytoskeletal proteins and a kinase substrate suggest a role for this protein in vesicular trafficking or organelle transport. Several alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000141696 | P3H4 | prolyl 3-hydroxylase family member 4 (non-enzymatic) | 10609 | This nucleolar protein was first characterized because it was an autoantigen in cases on interstitial cystitis. The protein, with a predicted molecular weight of 50 kDa, appears to be localized in the particulate compartment of the interphase nucleolus, with a distribution distinct from that of nucleolar protein B23. During mitosis it is associated with chromosomes. |
| NA | ENSG00000141756 | FKBP10 | FK506 binding protein 10 | 60681 | The protein encoded by this gene belongs to the FKBP-type peptidyl-prolyl cis/trans isomerase (PPIase) family. This protein localizes to the endoplasmic reticulum and acts as a molecular chaperone. Alternatively spliced variants encoding different isoforms have been reported, but their biological validity has not been determined. |
| NA | ENSG00000141698 | NT5C3B | 5’-nucleotidase, cytosolic IIIB | 115024 | NA |
| NA | ENSG00000131473 | ACLY | ATP citrate lyase | 47 | ATP citrate lyase is the primary enzyme responsible for the synthesis of cytosolic acetyl-CoA in many tissues. The enzyme is a tetramer (relative molecular weight approximately 440,000) of apparently identical subunits. It catalyzes the formation of acetyl-CoA and oxaloacetate from citrate and CoA with a concomitant hydrolysis of ATP to ADP and phosphate. The product, acetyl-CoA, serves several important biosynthetic pathways, including lipogenesis and cholesterogenesis. In nervous tissue, ATP citrate-lyase may be involved in the biosynthesis of acetylcholine. Multiple transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000173786 | CNP | 2’,3’-cyclic nucleotide 3’ phosphodiesterase | 1267 | NA |
| NA | ENSG00000168259 | DNAJC7 | DnaJ heat shock protein family (Hsp40) member C7 | 7266 | This gene encodes a member of the DNAJ heat shock protein 40 family of proteins that is characterized by two N-terminal tetratricopeptide repeat domains and a C-terminal DNAJ domain. This protein binds the chaperone proteins heat shock proteins 70 and 90 in an ATP-dependent manner and may function as a co-chaperone. Pseudogenes of this gene are found on chromosomes 1 and 6. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000168256 | NKIRAS2 | NFKB inhibitor interacting Ras-like 2 | 28511 | NA |
| NA | ENSG00000187595 | ZNF385C | zinc finger protein 385C | 201181 | NA |
| NA | ENSG00000108771 | DHX58 | DEXH-box helicase 58 | 79132 | NA |
| NA | ENSG00000108773 | KAT2A | lysine acetyltransferase 2A | 2648 | KAT2A, or GCN5, is a histone acetyltransferase (HAT) that functions primarily as a transcriptional activator. It also functions as a repressor of NF-kappa-B (see MIM 164011) by promoting ubiquitination of the NF-kappa-B subunit RELA (MIM 164014) in a HAT-independent manner (Mao et al., 2009 [PubMed 19339690]). |
| NA | ENSG00000108774 | RAB5C | RAB5C, member RAS oncogene family | 5878 | Members of the Rab protein family are small GTPases of the Ras superfamily that are thought to ensure fidelity in the process of docking and/or fusion of vesicles with their correct acceptor compartment (Han et al., 1996 [PubMed 8646882]). |
| NA | ENSG00000167925 | GHDC | GH3 domain containing | 84514 | NA |
| NA | ENSG00000173757 | STAT5B | signal transducer and activator of transcription 5B | 6777 | The protein encoded by this gene is a member of the STAT family of transcription factors. In response to cytokines and growth factors, STAT family members are phosphorylated by the receptor associated kinases, and then form homo- or heterodimers that translocate to the cell nucleus where they act as transcription activators. This protein mediates the signal transduction triggered by various cell ligands, such as IL2, IL4, CSF1, and different growth hormones. It has been shown to be involved in diverse biological processes, such as TCR signaling, apoptosis, adult mammary gland development, and sexual dimorphism of liver gene expression. This gene was found to fuse to retinoic acid receptor-alpha (RARA) gene in a small subset of acute promyelocytic leukemias (APLL). The dysregulation of the signaling pathways mediated by this protein may be the cause of the APLL. |
| NA | ENSG00000126561 | STAT5A | signal transducer and activator of transcription 5A | 6776 | The protein encoded by this gene is a member of the STAT family of transcription factors. In response to cytokines and growth factors, STAT family members are phosphorylated by the receptor associated kinases, and then form homo- or heterodimers that translocate to the cell nucleus where they act as transcription activators. This protein is activated by, and mediates the responses of many cell ligands, such as IL2, IL3, IL7 GM-CSF, erythropoietin, thrombopoietin, and different growth hormones. Activation of this protein in myeloma and lymphoma associated with a TEL/JAK2 gene fusion is independent of cell stimulus and has been shown to be essential for tumorigenesis. The mouse counterpart of this gene is found to induce the expression of BCL2L1/BCL-X(L), which suggests the antiapoptotic function of this gene in cells. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000168610 | STAT3 | signal transducer and activator of transcription 3 (acute-phase response factor) | 6774 | The protein encoded by this gene is a member of the STAT protein family. In response to cytokines and growth factors, STAT family members are phosphorylated by the receptor associated kinases, and then form homo- or heterodimers that translocate to the cell nucleus where they act as transcription activators. This protein is activated through phosphorylation in response to various cytokines and growth factors including IFNs, EGF, IL5, IL6, HGF, LIF and BMP2. This protein mediates the expression of a variety of genes in response to cell stimuli, and thus plays a key role in many cellular processes such as cell growth and apoptosis. The small GTPase Rac1 has been shown to bind and regulate the activity of this protein. PIAS3 protein is a specific inhibitor of this protein. Mutations in this gene are associated with infantile-onset multisystem autoimmune disease and hyper-immunoglobulin E syndrome. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000177469 | PTRF | polymerase I and transcript release factor | 284119 | This gene encodes a protein that enables the dissociation of paused ternary polymerase I transcription complexes from the 3’ end of pre-rRNA transcripts. This protein regulates rRNA transcription by promoting the dissociation of transcription complexes and the reinitiation of polymerase I on nascent rRNA transcripts. This protein also localizes to caveolae at the plasma membrane and is thought to play a critical role in the formation of caveolae and the stabilization of caveolins. This protein translocates from caveolae to the cytoplasm after insulin stimulation. Caveolae contain truncated forms of this protein and may be the site of phosphorylation-dependent proteolysis. This protein is also thought to modify lipid metabolism and insulin-regulated gene expression. Mutations in this gene result in a disorder characterized by generalized lipodystrophy and muscular dystrophy. |
| NA | ENSG00000033627 | ATP6V0A1 | ATPase H+ transporting V0 subunit a1 | 535 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A and three B subunits, two G subunits plus the C, D, E, F, and H subunits. The V1 domain contains the ATP catalytic site. The V0 domain consists of five different subunits: a, c, c’, c’, and d. Additional isoforms of many of the V1 and V0 subunit proteins are encoded by multiple genes or alternatively spliced transcript variants. This gene encodes one of three A subunit proteins and the encoded protein is associated with clathrin-coated vesicles. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000108784 | NAGLU | N-acetylglucosaminidase, alpha | 4669 | This gene encodes an enzyme that degrades heparan sulfate by hydrolysis of terminal N-acetyl-D-glucosamine residues in N-acetyl-alpha-D-glucosaminides. Defects in this gene are the cause of mucopolysaccharidosis type IIIB (MPS-IIIB), also known as Sanfilippo syndrome B. This disease is characterized by the lysosomal accumulation and urinary excretion of heparan sulfate. |
| NA | ENSG00000068120 | COASY | Coenzyme A synthase | 80347 | Coenzyme A (CoA) functions as a carrier of acetyl and acyl groups in cells and thus plays an important role in numerous synthetic and degradative metabolic pathways in all organisms. In eukaryotes, CoA and its derivatives are also involved in membrane trafficking and signal transduction. This gene encodes the bifunctional protein coenzyme A synthase (CoAsy) which carries out the last two steps in the biosynthesis of CoA from pantothenic acid (vitamin B5). The phosphopantetheine adenylyltransferase domain of this bifunctional protein catalyzes the conversion of 4’-phosphopantetheine into dephospho-coenzyme A (dpCoA) while its dephospho-CoA kinase domain completes the final step by phosphorylating dpCoA to form CoA. Mutations in this gene are associated with neurodegeneration with brain iron accumulation (NBIA). Alternative splicing results in multiple isoforms. |
| NA | ENSG00000108788 | MLX | MLX, MAX dimerization protein | 6945 | The product of this gene belongs to the family of basic helix-loop-helix leucine zipper (bHLH-Zip) transcription factors. These factors form heterodimers with Mad proteins and play a role in proliferation, determination and differentiation. This gene product may act to diversify Mad family function by its restricted association with a subset of the Mad family of transcriptional repressors, namely, Mad1 and Mad4. Alternatively spliced transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000141699 | FAM134C | family with sequence similarity 134 member C | 162427 | NA |
| NA | ENSG00000131462 | TUBG1 | tubulin gamma 1 | 7283 | This gene encodes a member of the tubulin superfamily. The encoded protein localizes to the centrosome where it binds to microtubules as part of a complex referred to as the gamma-tubulin ring complex. The protein mediates microtubule nucleation and is required for microtubule formation and progression of the cell cycle. A pseudogene of this gene is found on chromosome 7. |
| NA | ENSG00000037042 | TUBG2 | tubulin gamma 2 | 27175 | NA |
| NA | ENSG00000068137 | PLEKHH3 | pleckstrin homology, MyTH4 and FERM domain containing H3 | 79990 | NA |
| NA | ENSG00000108797 | CNTNAP1 | contactin associated protein 1 | 8506 | The gene product was initially identified as a 190-kD protein associated with the contactin-PTPRZ1 complex. The 1,384-amino acid protein, also designated p190 or CASPR for ‘contactin-associated protein,’ includes an extracellular domain with several putative protein-protein interaction domains, a putative transmembrane domain, and a 74-amino acid cytoplasmic domain. Northern blot analysis showed that the gene is transcribed predominantly in brain as a transcript of 6.2 kb, with weak expression in several other tissues tested. The architecture of its extracellular domain is similar to that of neurexins, and this protein may be the signaling subunit of contactin, enabling recruitment and activation of intracellular signaling pathways in neurons. |
| NA | ENSG00000108799 | EZH1 | enhancer of zeste 1 polycomb repressive complex 2 subunit | 2145 | EZH1 is a component of a noncanonical Polycomb repressive complex-2 (PRC2) that mediates methylation of histone H3 (see MIM 602812) lys27 (H3K27) and functions in the maintenance of embryonic stem cell pluripotency and plasticity (Shen et al., 2008 [PubMed 19026780]). |
| NA | ENSG00000131477 | RAMP2 | receptor (G protein-coupled) activity modifying protein 2 | 10266 | The protein encoded by this gene is a member of the RAMP family of single-transmembrane-domain proteins, called receptor (calcitonin) activity modifying proteins (RAMPs). RAMPs are type I transmembrane proteins with an extracellular N terminus and a cytoplasmic C terminus. RAMPs are required to transport calcitonin-receptor-like receptor (CRLR) to the plasma membrane. CRLR, a receptor with seven transmembrane domains, can function as either a calcitonin-gene-related peptide (CGRP) receptor or an adrenomedullin receptor, depending on which members of the RAMP family are expressed. In the presence of this (RAMP2) protein, CRLR functions as an adrenomedullin receptor. The RAMP2 protein is involved in core glycosylation and transportation of adrenomedullin receptor to the cell surface. |
| NA | ENSG00000131475 | VPS25 | vacuolar protein sorting 25 homolog (S. cerevisiae) | 84313 | This gene encodes a protein that is a subunit of the endosomal sorting complex required for transport II (ESCRT-II). This protein complex functions in sorting of ubiquitinated membrane proteins during endocytosis. A pseudogene of this gene is present on chromosome 1. |
| NA | ENSG00000183978 | COA3 | cytochrome c oxidase assembly factor 3 | 28958 | This gene encodes a member of the cytochrome c oxidase assembly factor family. Studies of a related gene in fly suggest that the encoded protein is localized to mitochondria and is essential for cytochrome c oxidase function. |
| NA | ENSG00000126581 | BECN1 | beclin 1, autophagy related | 8678 | This gene encodes a protein that regulates autophagy, a catabolic process of degradation induced by starvation. The encoded protein is a component of the phosphatidylinositol-3-kinase (PI3K) complex which mediates vesicle-trafficking processes. This protein is thought to play a role in multiple cellular processes, including tumorigenesis, neurodegeneration and apoptosis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000131467 | PSME3 | proteasome activator subunit 3 | 10197 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. The immunoproteasome contains an alternate regulator, referred to as the 11S regulator or PA28, that replaces the 19S regulator. Three subunits (alpha, beta and gamma) of the 11S regulator have been identified. This gene encodes the gamma subunit of the 11S regulator. Six gamma subunits combine to form a homohexameric ring. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000266967 | AARSD1 | alanyl-tRNA synthetase domain containing 1 | 80755 | NA |
| NA | ENSG00000198863 | RUNDC1 | RUN domain containing 1 | 146923 | NA |
| NA | ENSG00000131469 | RPL27 | ribosomal protein L27 | 6155 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L27E family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000068079 | IFI35 | interferon induced protein 35 | 3430 | NA |
| NA | ENSG00000108828 | VAT1 | vesicle amine transport 1 | 10493 | Synaptic vesicles are responsible for regulating the storage and release of neurotransmitters in the nerve terminal. The protein encoded by this gene is an abundant integral membrane protein of cholinergic synaptic vesicles and is thought to be involved in vesicular transport. It belongs to the quinone oxidoreductase subfamily of zinc-containing alcohol dehydrogenase proteins. |
| NA | ENSG00000012048 | BRCA1 | breast cancer 1 | 672 | This gene encodes a nuclear phosphoprotein that plays a role in maintaining genomic stability, and it also acts as a tumor suppressor. The encoded protein combines with other tumor suppressors, DNA damage sensors, and signal transducers to form a large multi-subunit protein complex known as the BRCA1-associated genome surveillance complex (BASC). This gene product associates with RNA polymerase II, and through the C-terminal domain, also interacts with histone deacetylase complexes. This protein thus plays a role in transcription, DNA repair of double-stranded breaks, and recombination. Mutations in this gene are responsible for approximately 40% of inherited breast cancers and more than 80% of inherited breast and ovarian cancers. Alternative splicing plays a role in modulating the subcellular localization and physiological function of this gene. Many alternatively spliced transcript variants, some of which are disease-associated mutations, have been described for this gene, but the full-length natures of only some of these variants has been described. A related pseudogene, which is also located on chromosome 17, has been identified. |
| NA | ENSG00000188554 | NBR1 | neighbor of BRCA1 gene 1 | 4077 | The protein encoded by this gene was originally identified as an ovarian tumor antigen monitored in ovarian cancer. The encoded protein contains a B-box/coiled-coil motif, which is present in many genes with transformation potential. It functions as a specific autophagy receptor for the selective autophagic degradation of peroxisomes by forming intracellular inclusions with ubiquitylated autophagic substrates. This gene is located on a region of chromosome 17q21.1 that is in close proximity to the BRCA1 tumor suppressor gene. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000184988 | TMEM106A | transmembrane protein 106A | 113277 | NA |
| NA | ENSG00000175906 | ARL4D | ADP ribosylation factor like GTPase 4D | 379 | ADP-ribosylation factor 4D is a member of the ADP-ribosylation factor family of GTP-binding proteins. ARL4D is closely similar to ARL4A and ARL4C and each has a nuclear localization signal and an unusually high guanine nucleotide exchange rate. This protein may play a role in membrane-associated intracellular trafficking. Mutations in this gene have been associated with Bardet-Biedl syndrome (BBS). |
| NA | ENSG00000067596 | DHX8 | DEAH-box helicase 8 | 1659 | This gene is a member of the DEAH box polypeptide family. The encoded protein contains the DEAH (Asp-Glu-Ala-His) motif which is characteristic of all DEAH box proteins, and is thought to function as an ATP-dependent RNA helicase that regulates the release of spliced mRNAs from spliceosomes prior to their export from the nucleus. This protein may be required for the replication of human immunodeficiency virus type 1 (HIV-1). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000108861 | DUSP3 | dual specificity phosphatase 3 | 1845 | The protein encoded by this gene is a member of the dual specificity protein phosphatase subfamily. These phosphatases inactivate their target kinases by dephosphorylating both the phosphoserine/threonine and phosphotyrosine residues. They negatively regulate members of the mitogen-activated protein (MAP) kinase superfamily (MAPK/ERK, SAPK/JNK, p38), which are associated with cellular proliferation and differentiation. Different members of the family of dual specificity phosphatases show distinct substrate specificities for various MAP kinases, different tissue distribution and subcellular localization, and different modes of inducibility of their expression by extracellular stimuli. This gene maps in a region that contains the BRCA1 locus which confers susceptibility to breast and ovarian cancer. Although DUSP3 is expressed in both breast and ovarian tissues, mutation screening in breast cancer pedigrees and in sporadic tumors was negative, leading to the conclusion that this gene is not BRCA1. |
| NA | ENSG00000161647 | MPP3 | membrane protein, palmitoylated 3 | 4356 | This gene product is a member of a family of membrane-associated proteins termed MAGUKs (membrane-associated guanylate kinase homologs). MAGUKs interact with the cytoskeleton and regulate cell proliferation, signaling pathways, and intracellular junctions. This protein contains a conserved sequence, called the SH3 (src homology 3) motif, found in several other proteins that associate with the cytoskeleton and are suspected to play important roles in signal transduction. Alternatively spliced transcript variants have been identified. One transcript variant is experimentally supported, but it doesn’t encode a protein. |
| NA | ENSG00000108852 | MPP2 | membrane protein, palmitoylated 2 | 4355 | Palmitoylated membrane protein 2 is a member of a family of membrane-associated proteins termed MAGUKs (membrane-associated guanylate kinase homologs). MAGUKs interact with the cytoskeleton and regulate cell proliferation, signaling pathways, and intracellular junctions. Palmitoylated membrane protein 2 contains a conserved sequence, called the SH3 (src homology 3) motif, found in several other proteins that associate with the cytoskeleton and are suspected to play important roles in signal transduction. |
| NA | ENSG00000131096 | PYY | peptide YY | 5697 | This gene encodes a member of the neuropeptide Y (NPY) family of peptides. The encoded preproprotein is proteolytically processed to generate two alternative peptide products that differ in length by three amino acids. These peptides, secreted by endocrine cells in the gut, exhibit different binding affinities for each of the neuropeptide Y receptors. Binding of the encoded peptides to these receptors mediates regulation of pancreatic secretion, gut mobility and energy homeostasis. Rare variations in this gene could increase susceptibility to obesity and elevated serum levels of the encoded peptides may be associated with anorexia nervosa. |
| NA | ENSG00000091947 | TMEM101 | transmembrane protein 101 | 84336 | NA |
| NA | ENSG00000161654 | LSM12 | LSM12 homolog | 124801 | NA |
| NA | ENSG00000141349 | G6PC3 | glucose 6 phosphatase catalytic subunit 3 | 92579 | This gene encodes the catalytic subunit of glucose-6-phosphatase (G6Pase). G6Pase is located in the endoplasmic reticulum (ER) and catalyzes the hydrolysis of glucose-6-phosphate to glucose and phosphate in the last step of the gluconeogenic and glycogenolytic pathways. Mutations in this gene result in autosomal recessive severe congenital neutropenia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000108840 | HDAC5 | histone deacetylase 5 | 10014 | Histones play a critical role in transcriptional regulation, cell cycle progression, and developmental events. Histone acetylation/deacetylation alters chromosome structure and affects transcription factor access to DNA. The protein encoded by this gene belongs to the class II histone deacetylase/acuc/apha family. It possesses histone deacetylase activity and represses transcription when tethered to a promoter. It coimmunoprecipitates only with HDAC3 family member and might form multicomplex proteins. It also interacts with myocyte enhancer factor-2 (MEF2) proteins, resulting in repression of MEF2-dependent genes. This gene is thought to be associated with colon cancer. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125319 | C17orf53 | chromosome 17 open reading frame 53 | 78995 | NA |
| NA | ENSG00000087152 | ATXN7L3 | ataxin 7 like 3 | 56970 | NA |
| NA | ENSG00000108312 | UBTF | upstream binding transcription factor, RNA polymerase I | 7343 | This gene encodes a member of the HMG-box DNA-binding protein family. The encoded protein plays a critical role in ribosomal RNA transcription as a key component of the pre-initiation complex, mediating the recruitment of RNA polymerase I to rDNA promoter regions. The encoded protein may also play important roles in chromatin remodeling and pre-rRNA processing, and its activity is regulated by both phosphorylation and acetylation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. Pseudogenes of this gene are located on the short arm of chromosomes 3, 11 and X and the long arm of chromosome 11. |
| NA | ENSG00000108309 | RUNDC3A | RUN domain containing 3A | 10900 | NA |
| NA | ENSG00000013306 | SLC25A39 | solute carrier family 25 member 39 | 51629 | This gene encodes a member of the SLC25 transporter or mitochondrial carrier family of proteins. Members of this family are encoded by the nuclear genome while their protein products are usually embedded in the inner mitochondrial membrane and exhibit wide-ranging substrate specificity. Although the encoded protein is currently considered an orphan transporter, this protein is related to other carriers known to transport amino acids. This protein may play a role in iron homeostasis. |
| NA | ENSG00000030582 | GRN | granulin | 2896 | Granulins are a family of secreted, glycosylated peptides that are cleaved from a single precursor protein with 7.5 repeats of a highly conserved 12-cysteine granulin/epithelin motif. The 88 kDa precursor protein, progranulin, is also called proepithelin and PC cell-derived growth factor. Cleavage of the signal peptide produces mature granulin which can be further cleaved into a variety of active, 6 kDa peptides. These smaller cleavage products are named granulin A, granulin B, granulin C, etc. Epithelins 1 and 2 are synonymous with granulins A and B, respectively. Both the peptides and intact granulin protein regulate cell growth. However, different members of the granulin protein family may act as inhibitors, stimulators, or have dual actions on cell growth. Granulin family members are important in normal development, wound healing, and tumorigenesis. |
| NA | ENSG00000161682 | FAM171A2 | family with sequence similarity 171 member A2 | 284069 | NA |
| NA | ENSG00000005961 | ITGA2B | integrin subunit alpha 2b | 3674 | This gene encodes a member of the integrin alpha chain family of proteins. The encoded preproprotein is proteolytically processed to generate light and heavy chains that associate through disulfide linkages to form a subunit of the alpha-IIb/beta-3 integrin cell adhesion receptor. This receptor plays a crucial role in the blood coagulation system, by mediating platelet aggregation. Mutations in this gene are associated with platelet-type bleeding disorders, which are characterized by a failure of platelet aggregation, including Glanzmann thrombasthenia. |
| NA | ENSG00000186566 | GPATCH8 | G-patch domain containing 8 | 23131 | The protein encoded by this gene contains an RNA-processing domain, a zinc finger domain, a lysine-rich region and a serine-rich region. A mutation in the serine-rich region of the protein is thought to be associated with hyperuricemia (PMID: 21594610). Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000180340 | FZD2 | frizzled class receptor 2 | 2535 | This intronless gene is a member of the frizzled gene family. Members of this family encode seven-transmembrane domain proteins that are receptors for the wingless type MMTV integration site family of signaling proteins. This gene encodes a protein that is coupled to the beta-catenin canonical signaling pathway. Competition between the wingless-type MMTV integration site family, member 3A and wingless-type MMTV integration site family, member 5A gene products for binding of this protein is thought to regulate the beta-catenin-dependent and -independent pathways. |
| NA | ENSG00000180336 | MEIOC | meiosis specific with coiled-coil domain | 284071 | NA |
| NA | ENSG00000180329 | CCDC43 | coiled-coil domain containing 43 | 124808 | NA |
| NA | ENSG00000073670 | ADAM11 | ADAM metallopeptidase domain 11 | 4185 | This gene encodes a member of the ADAM (a disintegrin and metalloprotease) protein family. Members of this family are membrane-anchored proteins structurally related to snake venom disintegrins, and have been implicated in a variety of biological processes involving cell-cell and cell-matrix interactions, including fertilization, muscle development, and neurogenesis. The encoded preproprotein is proteolytically processed to generate the mature protease. This gene represents a candidate tumor suppressor gene for human breast cancer based on its location within a minimal region of chromosome 17q21 previously defined by tumor deletion mapping. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000182963 | GJC1 | gap junction protein gamma 1 | 10052 | This gene is a member of the connexin gene family. The encoded protein is a component of gap junctions, which are composed of arrays of intercellular channels that provide a route for the diffusion of low molecular weight materials from cell to cell. Alternatively spliced transcript variants encoding the same isoform have been described. |
| NA | ENSG00000108883 | EFTUD2 | elongation factor Tu GTP binding domain containing 2 | 9343 | This gene encodes a GTPase which is a component of the spliceosome complex which processes precursor mRNAs to produce mature mRNAs. Mutations in this gene are associated with mandibulofacial dysostosis with microcephaly. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000186185 | KIF18B | kinesin family member 18B | 146909 | NA |
| NA | ENSG00000172992 | DCAKD | dephospho-CoA kinase domain containing | 79877 | NA |
| NA | ENSG00000136448 | NMT1 | N-myristoyltransferase 1 | 4836 | Myristate, a rare 14-carbon saturated fatty acid, is cotranslationally attached by an amide linkage to the N-terminal glycine residue of cellular and viral proteins with diverse functions. N-myristoyltransferase (NMT; EC 2.3.1.97) catalyzes the transfer of myristate from CoA to proteins. N-myristoylation appears to be irreversible and is required for full expression of the biologic activities of several N-myristoylated proteins, including the alpha subunit of the signal-transducing guanine nucleotide-binding protein (G protein) GO (GNAO1; MIM 139311) (Duronio et al., 1992 [PubMed 1570339]). |
| NA | ENSG00000161714 | PLCD3 | phospholipase C delta 3 | 113026 | This gene encodes a member of the phospholipase C family, which catalyze the hydrolysis of phosphatidylinositol 4,5-bisphosphate to generate the second messengers diacylglycerol and inositol 1,4,5-trisphosphate (IP3). Diacylglycerol and IP3 mediate a variety of cellular responses to extracellular stimuli by inducing protein kinase C and increasing cytosolic Ca(2+) concentrations. This enzyme localizes to the plasma membrane and requires calcium for activation. Its activity is inhibited by spermine, sphingosine, and several phospholipids. |
| NA | ENSG00000186834 | HEXIM1 | hexamethylene bis-acetamide inducible 1 | 10614 | Expression of this gene is induced by hexamethylene-bis-acetamide in vascular smooth muscle cells. This gene has no introns. |
| NA | ENSG00000168517 | HEXIM2 | hexamethylene bis-acetamide inducible 2 | 124790 | This gene encodes a member of the HEXIM family of proteins. This protein is a component of the 7SK small nuclear ribonucleoprotein. This protein has been found to negatively regulate the kinase activity of the cyclin-dependent kinase P-TEFb, which phosphorylates multiple target proteins to promote transcriptional elongation. This gene is located approximately 7 kb downstream from related family member HEXIM1 on chromosome 17. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000184922 | FMNL1 | formin like 1 | 752 | This gene encodes a formin-related protein. Formin-related proteins have been implicated in morphogenesis, cytokinesis, and cell polarity. An alternative splice variant has been described but its full length sequence has not been determined. |
| NA | ENSG00000159314 | ARHGAP27 | Rho GTPase activating protein 27 | 201176 | This gene encodes a member of a large family of proteins that activate Rho-type guanosine triphosphate (GTP) metabolizing enzymes. The encoded protein may pay a role in clathrin-mediated endocytosis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000225190 | PLEKHM1 | pleckstrin homology and RUN domain containing M1 | 9842 | The protein encoded by this gene is essential for bone resorption, and may play a critical role in vesicular transport in the osteoclast. Mutations in this gene are associated with autosomal recessive osteopetrosis type 6 (OPTB6). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000120088 | CRHR1 | corticotropin releasing hormone receptor 1 | 1394 | This gene encodes a G-protein coupled receptor that binds neuropeptides of the corticotropin releasing hormone family that are major regulators of the hypothalamic-pituitary-adrenal pathway. The encoded protein is essential for the activation of signal transduction pathways that regulate diverse physiological processes including stress, reproduction, immune response and obesity. Alternative splicing results in multiple transcript variants. Readthrough transcription also exists between this gene and upstream GeneID:401884 (ADP-ribosylation factor 3 pseudogene), and the readthrough transcripts encode isoforms that share similarity with the products of this gene. |
| NA | ENSG00000120071 | KANSL1 | KAT8 regulatory NSL complex subunit 1 | 284058 | This gene encodes a nuclear protein that is a subunit of two protein complexes involved with histone acetylation, the MLL1 complex and the NSL1 complex. The corresponding protein in Drosophila interacts with K(lysine) acetyltransferase 8, which is also a subunit of both the MLL1 and NSL1 complexes. |
| NA | ENSG00000228696 | ARL17B | ADP ribosylation factor like GTPase 17B | 100506084 | NA |
| NA | ENSG00000228696 | ARL17A | ADP ribosylation factor like GTPase 17A | 51326 | NA |
| NA | ENSG00000228696 | LOC100996709 | ADP-ribosylation factor-like protein 17 | 100996709 | NA |
| NA | ENSG00000228696 | LOC100294341 | ADP-ribosylation factor-like protein 17 | 100294341 | NA |
| NA | ENSG00000185829 | ARL17B | ADP ribosylation factor like GTPase 17B | 100506084 | NA |
| NA | ENSG00000185829 | ARL17A | ADP ribosylation factor like GTPase 17A | 51326 | NA |
| NA | ENSG00000185829 | LOC100996709 | ADP-ribosylation factor-like protein 17 | 100996709 | NA |
| NA | ENSG00000073969 | NSF | N-ethylmaleimide sensitive factor | 4905 | NA |
| NA | ENSG00000108433 | GOSR2 | golgi SNAP receptor complex member 2 | 9570 | This gene encodes a trafficking membrane protein which transports proteins among the medial- and trans-Golgi compartments. Due to its chromosomal location and trafficking function, this gene may be involved in familial essential hypertension. |
| NA | ENSG00000108424 | KPNB1 | karyopherin subunit beta 1 | 3837 | Nucleocytoplasmic transport, a signal- and energy-dependent process, takes place through nuclear pore complexes embedded in the nuclear envelope. The import of proteins containing a nuclear localization signal (NLS) requires the NLS import receptor, a heterodimer of importin alpha and beta subunits also known as karyopherins. Importin alpha binds the NLS-containing cargo in the cytoplasm and importin beta docks the complex at the cytoplasmic side of the nuclear pore complex. In the presence of nucleoside triphosphates and the small GTP binding protein Ran, the complex moves into the nuclear pore complex and the importin subunits dissociate. Importin alpha enters the nucleoplasm with its passenger protein and importin beta remains at the pore. Interactions between importin beta and the FG repeats of nucleoporins are essential in translocation through the pore complex. The protein encoded by this gene is a member of the importin beta family. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198933 | TBKBP1 | TBK1 binding protein 1 | 9755 | TBKBP1 is an adaptor protein that binds to TBK1 (MIM 604834) and is part of the interaction network in the TNF (MIM 191160)/NFKB (see MIM 164011) pathway (Bouwmeester et al., 2004 [PubMed 14743216]). |
| NA | ENSG00000159111 | MRPL10 | mitochondrial ribosomal protein L10 | 124995 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. Sequence analysis identified three transcript variants that encode two different isoforms. A pseudogene corresponding to this gene is found on chromosome 5q. |
| NA | ENSG00000141295 | SCRN2 | secernin 2 | 90507 | NA |
| NA | ENSG00000167182 | SP2 | Sp2 transcription factor | 6668 | This gene encodes a member of the Sp subfamily of Sp/XKLF transcription factors. Sp family proteins are sequence-specific DNA-binding proteins characterized by an amino-terminal trans-activation domain and three carboxy-terminal zinc finger motifs. This protein contains the least conserved DNA-binding domain within the Sp subfamily of proteins, and its DNA sequence specificity differs from the other Sp proteins. It localizes primarily within subnuclear foci associated with the nuclear matrix, and can activate or in some cases repress expression from different promoters. |
| NA | ENSG00000108439 | PNPO | pyridoxamine 5’-phosphate oxidase | 55163 | The enzyme encoded by this gene catalyzes the terminal, rate-limiting step in the synthesis of pyridoxal 5’-phosphate, also known as vitamin B6. Vitamin B6 is a required co-factor for enzymes involved in both homocysteine metabolism and synthesis of neurotransmitters such as catecholamine. Mutations in this gene result in pyridoxamine 5’-phosphate oxidase (PNPO) deficiency, a form of neonatal epileptic encephalopathy. |
| NA | ENSG00000108465 | CDK5RAP3 | CDK5 regulatory subunit associated protein 3 | 80279 | This gene encodes a protein that has been reported to function in signaling pathways governing transcriptional regulation and cell cycle progression. It may play a role in tumorigenesis and metastasis. A pseudogene of this gene is located on the long arm of chromosome 20. Alternative splicing results in multiple transcript variants that encode different isoforms. |
| NA | ENSG00000082641 | NFE2L1 | nuclear factor, erythroid 2 like 1 | 4779 | This gene encodes a protein that is involved in globin gene expression in erythrocytes. Confusion has occurred in bibliographic databases due to the shared symbol of NRF1 for this gene, NFE2L1, and for ‘nuclear respiratory factor 1’ which has an official symbol of NRF1. |
| NA | ENSG00000108468 | CBX1 | chromobox 1 | 10951 | This gene encodes a highly conserved nonhistone protein, which is a member of the heterochromatin protein family . The protein is enriched in the heterochromatin and associated with centromeres. The protein has a single N-terminal chromodomain which can bind to histone proteins via methylated lysine residues, and a C-terminal chromo shadow-domain (CSD) which is responsible for the homodimerization and interaction with a number of chromatin-associated nonhistone proteins. The protein may play an important role in the epigenetic control of chromatin structure and gene expression. Several related pseudogenes are located on chromosomes 1, 3, and X. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000002919 | SNX11 | sorting nexin 11 | 29916 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein does not contain a coiled coil region, like some family members. This gene encodes a protein of unknown function. This gene results in two transcript variants differing in the 5’ UTR, but encoding the same protein. |
| NA | ENSG00000170703 | TTLL6 | tubulin tyrosine ligase like 6 | 284076 | NA |
| NA | ENSG00000136436 | CALCOCO2 | calcium binding and coiled-coil domain 2 | 10241 | This gene encodes a coiled-coil domain-containing protein. The encoded protein functions as a receptor for ubiquitin-coated bacteria and plays an important role in innate immunity by mediating macroautophagy. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000159199 | ATP5G1 | ATP synthase, H+ transporting, mitochondrial Fo complex subunit C1 (subunit 9) | 516 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. The catalytic portion of mitochondrial ATP synthase consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and a single representative of the other 3. The proton channel seems to have nine subunits (a, b, c, d, e, f, g, F6 and 8). This gene is one of three genes that encode subunit c of the proton channel. Each of the three genes have distinct mitochondrial import sequences but encode the identical mature protein. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000159202 | UBE2Z | ubiquitin conjugating enzyme E2 Z | 65264 | This gene encodes an enzyme which ubiquitinates proteins which participate in signaling pathways and apoptosis. |
| NA | ENSG00000159210 | SNF8 | SNF8, ESCRT-II complex subunit | 11267 | The protein encoded by this gene is a component of the endosomal sorting complex required for transport II (ESCRT-II), which regulates the movement of ubiquitinylated transmembrane proteins to the lysosome for degradation. This complex also interacts with the RNA polymerase II elongation factor (ELL) to overcome the repressive effects of ELL on RNA polymerase II activity. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000159217 | IGF2BP1 | insulin like growth factor 2 mRNA binding protein 1 | 10642 | This gene encodes a member of the insulin-like growth factor 2 mRNA-binding protein family. The protein encoded by this gene contains four K homology domains and two RNA recognition motifs. It functions by binding to the mRNAs of certain genes, including insulin-like growth factor 2, beta-actin and beta-transducin repeat-containing protein, and regulating their translation. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198740 | ZNF652 | zinc finger protein 652 | 22834 | NA |
| NA | ENSG00000167085 | PHB | prohibitin | 5245 | This gene is evolutionarily conserved, and its product is proposed to play a role in human cellular senescence and tumor suppression. Antiproliferative activity is reported to be localized to the 3’ UTR, which is proposed to function as a trans-acting regulatory RNA. Several pseudogenes of this gene have been identified. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000064300 | NGFR | nerve growth factor receptor | 4804 | Nerve growth factor receptor contains an extracellular domain containing four 40-amino acid repeats with 6 cysteine residues at conserved positions followed by a serine/threonine-rich region, a single transmembrane domain, and a 155-amino acid cytoplasmic domain. The cysteine-rich region contains the nerve growth factor binding domain. |
| NA | ENSG00000121067 | SPOP | speckle type BTB/POZ protein | 8405 | This gene encodes a protein that may modulate the transcriptional repression activities of death-associated protein 6 (DAXX), which interacts with histone deacetylase, core histones, and other histone-associated proteins. In mouse, the encoded protein binds to the putative leucine zipper domain of macroH2A1.2, a variant H2A histone that is enriched on inactivated X chromosomes. The BTB/POZ domain of this protein has been shown in other proteins to mediate transcriptional repression and to interact with components of histone deacetylase co-repressor complexes. Alternative splicing of this gene results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000121073 | SLC35B1 | solute carrier family 35 member B1 | 10237 | This gene encodes a nucleotide sugar transporter which is a member of solute carrier family 35. The transporters in this family are highly conserved hydrophobic proteins with multiple transmembrane domains. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000121104 | FAM117A | family with sequence similarity 117 member A | 81558 | NA |
| NA | ENSG00000005884 | ITGA3 | integrin subunit alpha 3 | 3675 | The gene encodes a member of the integrin alpha chain family of proteins. Integrins are heterodimeric integral membrane proteins composed of an alpha chain and a beta chain that function as cell surface adhesion molecules. The encoded preproprotein is proteolytically processed to generate light and heavy chains that comprise the alpha 3 subunit. This subunit joins with a beta 1 subunit to form an integrin that interacts with extracellular matrix proteins including members of the laminin family. Expression of this gene may be correlated with breast cancer metastasis. |
| NA | ENSG00000005882 | PDK2 | pyruvate dehydrogenase kinase 2 | 5164 | This gene encodes a member of the pyruvate dehydrogenase kinase family. The encoded protein phosphorylates pyruvate dehydrogenase, down-regulating the activity of the mitochondrial pyruvate dehydrogenase complex. Overexpression of this gene may play a role in both cancer and diabetes. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000167100 | SAMD14 | sterile alpha motif domain containing 14 | 201191 | NA |
| NA | ENSG00000108819 | PPP1R9B | protein phosphatase 1 regulatory subunit 9B | 84687 | This gene encodes a scaffold protein that functions as a regulatory subunit of protein phosphatase 1a. Expression of this gene is particularly high in dendritic spines, suggesting that the encoded protein may play a role in receiving signals from the central nervous system. The encoded protein has putative tumor suppressor function and decreased expression has been observed in tumors. |
| NA | ENSG00000167105 | TMEM92 | transmembrane protein 92 | 162461 | NA |
| NA | ENSG00000015532 | XYLT2 | xylosyltransferase II | 64132 | The protein encoded by this gene is an isoform of xylosyltransferase, which belongs to a family of glycosyltransferases. This enzyme transfers xylose from UDP-xylose to specific serine residues of the core protein and initiates the biosynthesis of glycosaminoglycan chains in proteoglycans including chondroitin sulfate, heparan sulfate, heparin and dermatan sulfate. The enzyme activity, which is increased in scleroderma patients, is a diagnostic marker for the determination of sclerotic activity in systemic sclerosis. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000108826 | MRPL27 | mitochondrial ribosomal protein L27 | 51264 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000154920 | EME1 | essential meiotic structure-specific endonuclease 1 | 146956 | This gene encodes a protein that complexes with methyl methanesulfonate-sensitive UV-sensitive 81 protein to form an endonuclease complex. The encoded protein interacts with specifc DNA structures including nicked Holliday junctions, 3’-flap structures and aberrant replication fork structures. This protein may be involved in repairing DNA damage and in maintaining genomic stability. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000108829 | LRRC59 | leucine rich repeat containing 59 | 55379 | NA |
| NA | ENSG00000167107 | ACSF2 | acyl-CoA synthetase family member 2 | 80221 | NA |
| NA | ENSG00000006282 | SPATA20 | spermatogenesis associated 20 | 64847 | NA |
| NA | ENSG00000006283 | CACNA1G | calcium voltage-gated channel subunit alpha1 G | 8913 | Voltage-sensitive calcium channels mediate the entry of calcium ions into excitable cells, and are also involved in a variety of calcium-dependent processes, including muscle contraction, hormone or neurotransmitter release, gene expression, cell motility, cell division, and cell death. This gene encodes a T-type, low-voltage activated calcium channel. The T-type channels generate currents that are both transient, owing to fast inactivation, and tiny, owing to small conductance. T-type channels are thought to be involved in pacemaker activity, low-threshold calcium spikes, neuronal oscillations and resonance, and rebound burst firing. Many alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000154945 | ANKRD40 | ankyrin repeat domain 40 | 91369 | NA |
| NA | ENSG00000141232 | TOB1 | transducer of ERBB2, 1 | 10140 | This gene encodes a member of the transducer of erbB-2 /B-cell translocation gene protein family. Members of this family are anti-proliferative factors that have the potential to regulate cell growth. The encoded protein may function as a tumor suppressor. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000008294 | SPAG9 | sperm associated antigen 9 | 9043 | This gene encodes a member of the cancer testis antigen gene family. The encoded protein functions as a scaffold protein that structurally organizes mitogen-activated protein kinases and mediates c-Jun-terminal kinase signaling. This protein also binds to kinesin-1 and may be involved in microtubule-based membrane transport. This protein may play a role in tumor growth and development. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000239672 | NME1 | NME/NM23 nucleoside diphosphate kinase 1 | 4830 | This gene (NME1) was identified because of its reduced mRNA transcript levels in highly metastatic cells. Nucleoside diphosphate kinase (NDK) exists as a hexamer composed of ‘A’ (encoded by this gene) and ‘B’ (encoded by NME2) isoforms. Mutations in this gene have been identified in aggressive neuroblastomas. Two transcript variants encoding different isoforms have been found for this gene. Co-transcription of this gene and the neighboring downstream gene (NME2) generates naturally-occurring transcripts (NME1-NME2), which encodes a fusion protein comprised of sequence sharing identity with each individual gene product. |
| NA | ENSG00000243678 | NME2 | NME/NM23 nucleoside diphosphate kinase 2 | 4831 | Nucleoside diphosphate kinase (NDK) exists as a hexamer composed of ‘A’ (encoded by NME1) and ‘B’ (encoded by this gene) isoforms. Multiple alternatively spliced transcript variants have been found for this gene. Read-through transcription from the neighboring upstream gene (NME1) generates naturally-occurring transcripts (NME1-NME2) that encode a fusion protein comprised of sequence sharing identity with each individual gene product. |
| NA | ENSG00000011258 | MBTD1 | mbt domain containing 1 | 54799 | NA |
| NA | ENSG00000141198 | TOM1L1 | target of myb1 like 1 membrane trafficking protein | 10040 | NA |
| NA | ENSG00000166260 | COX11 | COX11 cytochrome c oxidase copper chaperone | 1353 | Cytochrome c oxidase (COX), the terminal component of the mitochondrial respiratory chain, catalyzes the electron transfer from reduced cytochrome c to oxygen. This component is a heteromeric complex consisting of 3 catalytic subunits encoded by mitochondrial genes and multiple structural subunits encoded by nuclear genes. The mitochondrially-encoded subunits function in electron transfer, and the nuclear-encoded subunits may function in the regulation and assembly of the complex. This nuclear gene encodes a protein which is not a structural subunit, but may be a heme A biosynthetic enzyme involved in COX formation, according to the yeast mutant studies. However, the studies in Rhodobacter sphaeroides suggest that this gene is not required for heme A biosynthesis, but required for stable formation of the Cu(B) and magnesium centers of COX. This human protein is predicted to contain a transmembrane domain localized in the mitochondrial inner membrane. Multiple transcript variants encoding different isoforms have been found for this gene. A related pseudogene has been found on chromosome 6. |
| NA | ENSG00000108960 | MMD | monocyte to macrophage differentiation-associated | 23531 | This protein is expressed by in vitro differentiated macrophages but not freshly isolated monocytes. Although sequence analysis identifies seven potential transmembrane domains, this protein has little homology to G-protein receptors and it has not been positively identified as a receptor. A suggested alternative function is that of an ion channel protein in maturing macrophages. |
| NA | ENSG00000141179 | PCTP | phosphatidylcholine transfer protein | 58488 | NA |
| NA | ENSG00000214226 | C17orf67 | chromosome 17 open reading frame 67 | 339210 | NA |
| NA | ENSG00000153933 | DGKE | diacylglycerol kinase epsilon | 8526 | Diacylglycerol kinases are thought to be involved mainly in the regeneration of phosphatidylinositol (PI) from diacylglycerol in the PI-cycle during cell signal transduction. When expressed in mammalian cells, DGK-epsilon shows specificity for arachidonyl-containing diacylglycerol. DGK-epsilon is expressed predominantly in testis. |
| NA | ENSG00000121064 | SCPEP1 | serine carboxypeptidase 1 | 59342 | NA |
| NA | ENSG00000153944 | MSI2 | musashi RNA binding protein 2 | 124540 | This gene encodes a protein containing two conserved tandem RNA recognition motifs. Similar proteins in other species function as RNA-binding proteins and play central roles in posttranscriptional gene regulation. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000181610 | MRPS23 | mitochondrial ribosomal protein S23 | 51649 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein. A pseudogene corresponding to this gene is found on chromosome 7p. |
| NA | ENSG00000180891 | CUEDC1 | CUE domain containing 1 | 404093 | NA |
| NA | ENSG00000136451 | VEZF1 | vascular endothelial zinc finger 1 | 7716 | Transcriptional regulatory proteins containing tandemly repeated zinc finger domains are thought to be involved in both normal and abnormal cellular proliferation and differentiation. ZNF161 is a C2H2-type zinc finger protein (Koyano-Nakagawa et al., 1994 [PubMed 8035792]). See MIM 603971 for general information on zinc finger proteins. |
| NA | ENSG00000266086 | RP11-159D12.5 | NA | ENSG00000266086 | NA |
| NA | ENSG00000136450 | SRSF1 | serine/arginine-rich splicing factor 1 | 6426 | This gene encodes a member of the arginine/serine-rich splicing factor protein family, and functions in both constitutive and alternative pre-mRNA splicing. The protein binds to pre-mRNA transcripts and components of the spliceosome, and can either activate or repress splicing depending on the location of the pre-mRNA binding site. The protein’s ability to activate splicing is regulated by phosphorylation and interactions with other splicing factor associated proteins. Multiple transcript variants encoding different isoforms have been found for this gene. In addition, a pseudogene of this gene has been found on chromosome 13. |
| NA | ENSG00000264364 | DYNLL2 | dynein light chain LC8-type 2 | 140735 | NA |
| NA | ENSG00000011143 | MKS1 | Meckel syndrome, type 1 | 54903 | The protein encoded by this gene localizes to the basal body and is required for formation of the primary cilium in ciliated epithelial cells. Mutations in this gene result in Meckel syndrome type 1 and in Bardet-Biedl syndrome type 13. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000005379 | TSPOAP1 | TSPO associated protein 1 | 9256 | NA |
| NA | ENSG00000213246 | SUPT4H1 | SPT4 homolog, DSIF elongation factor subunit | 6827 | This gene encodes the small subunit of DRB (5,6-dichloro-1-beta-d-ribofuranosylbenzimidazole) sensitivity-inducing factor (DSIF) complex, which regulates mRNA processing and transcription elongation by RNA polymerase II. The encoded protein is localized to the nucleus and interacts with the large subunit (SUPT5H) to form the DSIF complex. Related pseudogenes have been identified on chromosomes 2 and 12. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000108387 | SEPT4 | septin 4 | 5414 | This gene is a member of the septin family of nucleotide binding proteins, originally described in yeast as cell division cycle regulatory proteins. Septins are highly conserved in yeast, Drosophila, and mouse, and appear to regulate cytoskeletal organization. Disruption of septin function disturbs cytokinesis and results in large multinucleate or polyploid cells. This gene is highly expressed in brain and heart. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. One of the isoforms (known as ARTS) is distinct; it is localized to the mitochondria, and has a role in apoptosis and cancer. |
| NA | ENSG00000121101 | TEX14 | testis expressed 14 | 56155 | The protein encoded by this gene is necessary for intercellular bridges in germ cells, which are required for spermatogenesis. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000108384 | RAD51C | RAD51 paralog C | 5889 | This gene is a member of the RAD51 family. RAD51 family members are highly similar to bacterial RecA and Saccharomyces cerevisiae Rad51 and are known to be involved in the homologous recombination and repair of DNA. This protein can interact with other RAD51 paralogs and is reported to be important for Holliday junction resolution. Mutations in this gene are associated with Fanconi anemia-like syndrome. This gene is one of four localized to a region of chromosome 17q23 where amplification occurs frequently in breast tumors. Overexpression of the four genes during amplification has been observed and suggests a possible role in tumor progression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000108395 | TRIM37 | tripartite motif containing 37 | 4591 | This gene encodes a member of the tripartite motif (TRIM) family, whose members are involved in diverse cellular functions such as developmental patterning and oncogenesis. The TRIM motif includes zinc-binding domains, a RING finger region, a B-box motif and a coiled-coil domain. The RING finger and B-box domains chelate zinc and might be involved in protein-protein and/or protein-nucleic acid interactions. The gene mutations are associated with mulibrey (muscle-liver-brain-eye) nanism, an autosomal recessive disorder that involves several tissues of mesodermal origin. |
| NA | ENSG00000068489 | PRR11 | proline rich 11 | 55771 | NA |
| NA | ENSG00000167447 | SMG8 | SMG8 nonsense mediated mRNA decay factor | 55181 | NA |
| NA | ENSG00000153982 | GDPD1 | glycerophosphodiester phosphodiesterase domain containing 1 | 284161 | This gene encodes a member of the glycerophosphodiester phosphodiesterase family of enzymes that catalyze the hydrolysis of deacylated glycerophospholipids to glycerol phosphate and alcohol. The encoded protein is localized to the cytoplasm and concentrates near the perinuclear region. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175155 | YPEL2 | yippee like 2 | 388403 | NA |
| NA | ENSG00000141367 | CLTC | clathrin heavy chain | 1213 | Clathrin is a major protein component of the cytoplasmic face of intracellular organelles, called coated vesicles and coated pits. These specialized organelles are involved in the intracellular trafficking of receptors and endocytosis of a variety of macromolecules. The basic subunit of the clathrin coat is composed of three heavy chains and three light chains. |
| NA | ENSG00000141378 | PTRH2 | peptidyl-tRNA hydrolase 2 | 51651 | The protein encoded by this gene is a mitochondrial protein with two putative domains, an N-terminal mitochondrial localization sequence, and a UPF0099 domain. In vitro assays suggest that this protein possesses peptidyl-tRNA hydrolase activity, to release the peptidyl moiety from tRNA, thereby preventing the accumulation of dissociated peptidyl-tRNA that could reduce the efficiency of translation. This protein also plays a role regulating cell survival and death. It promotes survival as part of an integrin-signaling pathway for cells attached to the extracellular matrix (ECM), but also promotes apoptosis in cells that have lost their attachment to the ECM, a process called anoikos. After loss of cell attachment to the ECM, this protein is phosphorylated, is released from the mitochondria into the cytosol, and promotes caspase-independent apoptosis through interactions with transcriptional regulators. This gene has been implicated in the development and progression of tumors, and mutations in this gene have been associated with an infantile multisystem neurologic, endocrine, and pancreatic disease (INMEPD) characterized by intellectual disability, postnatal microcephaly, progressive cerebellar atrophy, hearing impairment, polyneuropathy, failure to thrive, and organ fibrosis with exocrine pancreas insufficiency (PMID: 25574476). Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000062716 | VMP1 | vacuole membrane protein 1 | 81671 | NA |
| NA | ENSG00000108423 | TUBD1 | tubulin delta 1 | 51174 | NA |
| NA | ENSG00000108443 | RPS6KB1 | ribosomal protein S6 kinase B1 | 6198 | This gene encodes a member of the ribosomal S6 kinase family of serine/threonine kinases. The encoded protein responds to mTOR (mammalian target of rapamycin) signaling to promote protein synthesis, cell growth, and cell proliferation. Activity of this gene has been associated with human cancer. Alternatively spliced transcript variants have been observed. The use of alternative translation start sites results in isoforms with longer or shorter N-termini which may differ in their subcellular localizations. There are two pseudogenes for this gene on chromosome 17. |
| NA | ENSG00000189050 | RNFT1 | ring finger protein, transmembrane 1 | 51136 | NA |
| NA | ENSG00000068097 | HEATR6 | HEAT repeat containing 6 | 63897 | NA |
| NA | ENSG00000170832 | USP32 | ubiquitin specific peptidase 32 | 84669 | NA |
| NA | ENSG00000062725 | APPBP2 | amyloid beta precursor protein binding protein 2 | 10513 | The protein encoded by this gene interacts with microtubules and is functionally associated with beta-amyloid precursor protein transport and/or processing. The beta-amyloid precursor protein is a cell surface protein with signal-transducing properties, and it is thought to play a role in the pathogenesis of Alzheimer’s disease. The encoded protein may be involved in regulating cell death. This gene has been found to be highly expressed in breast cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000170836 | PPM1D | protein phosphatase, Mg2+/Mn2+ dependent 1D | 8493 | The protein encoded by this gene is a member of the PP2C family of Ser/Thr protein phosphatases. PP2C family members are known to be negative regulators of cell stress response pathways. The expression of this gene is induced in a p53-dependent manner in response to various environmental stresses. While being induced by tumor suppressor protein TP53/p53, this phosphatase negatively regulates the activity of p38 MAP kinase, MAPK/p38, through which it reduces the phosphorylation of p53, and in turn suppresses p53-mediated transcription and apoptosis. This phosphatase thus mediates a feedback regulation of p38-p53 signaling that contributes to growth inhibition and the suppression of stress induced apoptosis. This gene is located in a chromosomal region known to be amplified in breast cancer. The amplification of this gene has been detected in both breast cancer cell line and primary breast tumors, which suggests a role of this gene in cancer development. |
| NA | ENSG00000141376 | BCAS3 | breast carcinoma amplified sequence 3 | 54828 | NA |
| NA | ENSG00000253506 | NACA2 | nascent polypeptide-associated complex alpha subunit 2 | 342538 | NA |
| NA | ENSG00000136492 | BRIP1 | BRCA1 interacting protein C-terminal helicase 1 | 83990 | The protein encoded by this gene is a member of the RecQ DEAH helicase family and interacts with the BRCT repeats of breast cancer, type 1 (BRCA1). The bound complex is important in the normal double-strand break repair function of breast cancer, type 1 (BRCA1). This gene may be a target of germline cancer-inducing mutations. |
| NA | ENSG00000108506 | INTS2 | integrator complex subunit 2 | 57508 | INTS2 is a subunit of the Integrator complex, which associates with the C-terminal domain of RNA polymerase II large subunit (POLR2A; MIM 180660) and mediates 3-prime end processing of small nuclear RNAs U1 (RNU1; MIM 180680) and U2 (RNU2; MIM 180690) (Baillat et al., 2005 [PubMed 16239144]). |
| NA | ENSG00000108510 | MED13 | mediator complex subunit 13 | 9969 | This gene encodes a component of the mediator complex (also known as TRAP, SMCC, DRIP, or ARC), a transcriptional coactivator complex thought to be required for the expression of almost all genes. The mediator complex is recruited by transcriptional activators or nuclear receptors to induce gene expression, possibly by interacting with RNA polymerase II and promoting the formation of a transcriptional pre-initiation complex. The product of this gene is proposed to form a sub-complex with MED12, cyclin C, and CDK8 that can negatively regulate transactivation by mediator. |
| NA | ENSG00000087995 | METTL2A | methyltransferase like 2A | 339175 | NA |
| NA | ENSG00000146872 | TLK2 | tousled like kinase 2 | 11011 | This gene encodes a nuclear serine/threonine kinase that was first identified in Arabidopsis. The encoded protein is thought to function in the regulation of chromatin assembly in the S phase of the cell cycle by regulating the levels of a histone H3/H4 chaperone. This protein is associated with double-strand break repair of DNA damage caused by radiation. Pseudogenes of this gene are present on chromosomes 10 and 17. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000170921 | TANC2 | tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 2 | 26115 | NA |
| NA | ENSG00000008283 | CYB561 | cytochrome b561 | 1534 | NA |
| NA | ENSG00000136485 | DCAF7 | DDB1 and CUL4 associated factor 7 | 10238 | This gene encodes a protein with multiple WD40 repeats which facilitate protein-protein interactions and thereby enable the assembly of multiprotein complexes. This protein has been shown to function as a scaffold protein for protein complexes involved in kinase signaling. This highly conserved gene is present in eukaryotic plants, fungi, and animals. The ortholog of this gene was first identified in plants as a key regulator of anthocyanin biosynthesis and flower pigmentation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136463 | TACO1 | translational activator of mitochondrially encoded cytochrome c oxidase I | 51204 | This gene encodes a mitochondrial protein that function as a translational activator of mitochondrially-encoded cytochrome c oxidase 1. Mutations in this gene are associated with Leigh syndrome. |
| NA | ENSG00000136490 | LIMD2 | LIM domain containing 2 | 80774 | NA |
| NA | ENSG00000108588 | CCDC47 | coiled-coil domain containing 47 | 57003 | NA |
| NA | ENSG00000198231 | DDX42 | DEAD-box helicase 42 | 11325 | This gene encodes a member of the Asp-Glu-Ala-Asp (DEAD) box protein family. Members of this protein family are putative RNA helicases, and are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. Two transcript variants encoding the same protein have been identified for this gene. |
| NA | ENSG00000108592 | FTSJ3 | FtsJ homolog 3 (E. coli) | 117246 | Although the function of this gene is not known, the existence of this gene is supported by mRNA and EST data. A possible function of the encoded protein can be inferred from amino acid sequence similarity to the E.coli FtsJ protein and to a mouse protein possibly involved in embryogenesis. |
| NA | ENSG00000087191 | PSMC5 | proteasome 26S subunit, ATPase 5 | 5705 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes one of the ATPase subunits, a member of the triple-A family of ATPases which have a chaperone-like activity. In addition to participation in proteasome functions, this subunit may participate in transcriptional regulation since it has been shown to interact with the thyroid hormone receptor and retinoid X receptor-alpha. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000108604 | SMARCD2 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 2 | 6603 | The protein encoded by this gene is a member of the SWI/SNF family of proteins, whose members display helicase and ATPase activities and which are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The encoded protein is part of the large ATP-dependent chromatin remodeling complex SNF/SWI and has sequence similarity to the yeast Swp73 protein. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000007312 | CD79B | CD79b molecule | 974 | The B lymphocyte antigen receptor is a multimeric complex that includes the antigen-specific component, surface immunoglobulin (Ig). Surface Ig non-covalently associates with two other proteins, Ig-alpha and Ig-beta, which are necessary for expression and function of the B-cell antigen receptor. This gene encodes the Ig-beta protein of the B-cell antigen component. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000007314 | SCN4A | sodium voltage-gated channel alpha subunit 4 | 6329 | Voltage-gated sodium channels are transmembrane glycoprotein complexes composed of a large alpha subunit with 24 transmembrane domains and one or more regulatory beta subunits. They are responsible for the generation and propagation of action potentials in neurons and muscle. This gene encodes one member of the sodium channel alpha subunit gene family. It is expressed in skeletal muscle, and mutations in this gene have been linked to several myotonia and periodic paralysis disorders. |
| NA | ENSG00000178607 | ERN1 | endoplasmic reticulum to nucleus signaling 1 | 2081 | The protein encoded by this gene is the ER to nucleus signalling 1 protein, a human homologue of the yeast Ire1 gene product. This protein possesses intrinsic kinase activity and an endoribonuclease activity and it is important in altering gene expression as a response to endoplasmic reticulum-based stress signals. |
| NA | ENSG00000136478 | TEX2 | testis expressed 2 | 55852 | NA |
| NA | ENSG00000256525 | POLG2 | polymerase (DNA) gamma 2, accessory subunit | 11232 | This gene encodes the processivity subunit of the mitochondrial DNA polymerase gamma. The encoded protein forms a heterotrimer containing one catalytic subunit and two processivity subunits. This protein enhances DNA binding and promotes processive DNA synthesis. Mutations in this gene result in autosomal dominant progressive external ophthalmoplegia with mitochondrial DNA deletions. |
| NA | ENSG00000108654 | DDX5 | DEAD-box helicase 5 | 1655 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which is a RNA-dependent ATPase, and also a proliferation-associated nuclear antigen, specifically reacting with the simian virus 40 tumor antigen. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000108854 | SMURF2 | SMAD specific E3 ubiquitin protein ligase 2 | 64750 | NA |
| NA | ENSG00000176809 | LRRC37A3 | leucine-rich repeat containing 37 member A3 | 374819 | NA |
| NA | ENSG00000120063 | GNA13 | G protein subunit alpha 13 | 10672 | NA |
| NA | ENSG00000108370 | RGS9 | regulator of G-protein signaling 9 | 8787 | This gene encodes a member of the RGS family of GTPase activating proteins that function in various signaling pathways by accelerating the deactivation of G proteins. This protein is anchored to photoreceptor membranes in retinal cells and deactivates G proteins in the rod and cone phototransduction cascades. Mutations in this gene result in bradyopsia. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000168646 | AXIN2 | axin 2 | 8313 | The Axin-related protein, Axin2, presumably plays an important role in the regulation of the stability of beta-catenin in the Wnt signaling pathway, like its rodent homologs, mouse conductin/rat axil. In mouse, conductin organizes a multiprotein complex of APC (adenomatous polyposis of the colon), beta-catenin, glycogen synthase kinase 3-beta, and conductin, which leads to the degradation of beta-catenin. Apparently, the deregulation of beta-catenin is an important event in the genesis of a number of malignancies. The AXIN2 gene has been mapped to 17q23-q24, a region that shows frequent loss of heterozygosity in breast cancer, neuroblastoma, and other tumors. Mutations in this gene have been associated with colorectal cancer with defective mismatch repair. |
| NA | ENSG00000154240 | CEP112 | centrosomal protein 112kDa | 201134 | This gene encodes a coiled-coil domain containing protein that belongs to the cell division control protein 42 effector protein family. In neurons, it localizes to the cytoplasm of dendrites and is also enriched in the nucleus where it interacts with the RNA polymerase III transcriptional repressor Maf1 to regulate gamma-aminobutyric acid A receptor surface expression. In addition, the protein has been identified as a component of the human centrosome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000154229 | PRKCA | protein kinase C alpha | 5578 | Protein kinase C (PKC) is a family of serine- and threonine-specific protein kinases that can be activated by calcium and the second messenger diacylglycerol. PKC family members phosphorylate a wide variety of protein targets and are known to be involved in diverse cellular signaling pathways. PKC family members also serve as major receptors for phorbol esters, a class of tumor promoters. Each member of the PKC family has a specific expression profile and is believed to play a distinct role in cells. The protein encoded by this gene is one of the PKC family members. This kinase has been reported to play roles in many different cellular processes, such as cell adhesion, cell transformation, cell cycle checkpoint, and cell volume control. Knockout studies in mice suggest that this kinase may be a fundamental regulator of cardiac contractility and Ca(2+) handling in myocytes. |
| NA | ENSG00000154217 | PITPNC1 | phosphatidylinositol transfer protein, cytoplasmic 1 | 26207 | This gene encodes a member of the phosphatidylinositol transfer protein family. The encoded cytoplasmic protein plays a role in multiple processes including cell signaling and lipid metabolism by facilitating the transfer of phosphatidylinositol between membrane compartments. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 1. |
| NA | ENSG00000130935 | NOL11 | nucleolar protein 11 | 25926 | NA |
| NA | ENSG00000171634 | BPTF | bromodomain PHD finger transcription factor | 2186 | This gene was identified by the reactivity of its encoded protein to a monoclonal antibody prepared against brain homogenates from patients with Alzheimer’s disease. Analysis of the original protein (fetal Alz-50 reactive clone 1, or FAC1), identified as an 810 aa protein containing a DNA-binding domain and a zinc finger motif, suggested it might play a role in the regulation of transcription. High levels of FAC1 were detected in fetal brain and in patients with neurodegenerative diseases. The protein encoded by this gene is actually much larger than originally thought, and it also contains a C-terminal bromodomain characteristic of proteins that regulate transcription during proliferation. The encoded protein is highly similar to the largest subunit of the Drosophila NURF (nucleosome remodeling factor) complex. In Drosophila, the NURF complex, which catalyzes nucleosome sliding on DNA and interacts with sequence-specific transcription factors, is necessary for the chromatin remodeling required for transcription. Two alternative transcripts encoding different isoforms have been described completely. |
| NA | ENSG00000186665 | C17orf58 | chromosome 17 open reading frame 58 | 284018 | NA |
| NA | ENSG00000182481 | KPNA2 | karyopherin subunit alpha 2 | 3838 | The import of proteins into the nucleus is a process that involves at least 2 steps. The first is an energy-independent docking of the protein to the nuclear envelope and the second is an energy-dependent translocation through the nuclear pore complex. Imported proteins require a nuclear localization sequence (NLS) which generally consists of a short region of basic amino acids or 2 such regions spaced about 10 amino acids apart. Proteins involved in the first step of nuclear import have been identified in different systems. These include the Xenopus protein importin and its yeast homolog, SRP1 (a suppressor of certain temperature-sensitive mutations of RNA polymerase I in Saccharomyces cerevisiae), which bind to the NLS. KPNA2 protein interacts with the NLSs of DNA helicase Q1 and SV40 T antigen and may be involved in the nuclear transport of proteins. KPNA2 also may play a role in V(D)J recombination. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196704 | AMZ2 | archaelysin family metallopeptidase 2 | 51321 | NA |
| NA | ENSG00000141337 | ARSG | arylsulfatase G | 22901 | The protein encoded by this gene belongs to the sulfatase enzyme family. Sulfatases hydrolyze sulfate esters from sulfated steroids, carbohydrates, proteoglycans, and glycolipids. They are involved in hormone biosynthesis, modulation of cell signaling, and degradation of macromolecules. This protein displays arylsulfatase activity at acidic pH, as is typical of lysosomal sulfatases, and has been shown to localize in the lysosomes. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000070540 | WIPI1 | WD repeat domain, phosphoinositide interacting 1 | 55062 | This gene encodes a WD40 repeat protein. Members of the WD40 repeat family are key components of many essential biologic functions. They regulate the assembly of multiprotein complexes by presenting a beta-propeller platform for simultaneous and reversible protein-protein interactions. Members of the WIPI subfamily of WD40 repeat proteins have a 7-bladed propeller structure and contain a conserved motif for interaction with phospholipids. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000108946 | PRKAR1A | protein kinase cAMP-dependent type I regulatory subunit alpha | 5573 | cAMP is a signaling molecule important for a variety of cellular functions. cAMP exerts its effects by activating the cAMP-dependent protein kinase, which transduces the signal through phosphorylation of different target proteins. The inactive kinase holoenzyme is a tetramer composed of two regulatory and two catalytic subunits. cAMP causes the dissociation of the inactive holoenzyme into a dimer of regulatory subunits bound to four cAMP and two free monomeric catalytic subunits. Four different regulatory subunits and three catalytic subunits have been identified in humans. This gene encodes one of the regulatory subunits. This protein was found to be a tissue-specific extinguisher that down-regulates the expression of seven liver genes in hepatoma x fibroblast hybrids. Mutations in this gene cause Carney complex (CNC). This gene can fuse to the RET protooncogene by gene rearrangement and form the thyroid tumor-specific chimeric oncogene known as PTC2. A nonconventional nuclear localization sequence (NLS) has been found for this protein which suggests a role in DNA replication via the protein serving as a nuclear transport protein for the second subunit of the Replication Factor C (RFC40). Several alternatively spliced transcript variants encoding two different isoforms have been observed. |
| NA | ENSG00000154265 | ABCA5 | ATP binding cassette subfamily A member 5 | 23461 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intracellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, and White). This encoded protein is a member of the ABC1 subfamily. Members of the ABC1 subfamily comprise the only major ABC subfamily found exclusively in multicellular eukaryotes. This gene is clustered among 4 other ABC1 family members on 17q24, but neither the substrate nor the function of this gene is known. Alternative splicing of this gene results in several transcript variants; however, not all variants have been fully described. |
| NA | ENSG00000125398 | SOX9 | SRY-box 9 | 6662 | The protein encoded by this gene recognizes the sequence CCTTGAG along with other members of the HMG-box class DNA-binding proteins. It acts during chondrocyte differentiation and, with steroidogenic factor 1, regulates transcription of the anti-Muellerian hormone (AMH) gene. Deficiencies lead to the skeletal malformation syndrome campomelic dysplasia, frequently with sex reversal. |
| NA | ENSG00000133195 | SLC39A11 | solute carrier family 39 member 11 | 201266 | NA |
| NA | ENSG00000180616 | SSTR2 | somatostatin receptor 2 | 6752 | Somatostatin acts at many sites to inhibit the release of many hormones and other secretory proteins. The biologic effects of somatostatin are probably mediated by a family of G protein-coupled receptors that are expressed in a tissue-specific manner. SSTR2 is a member of the superfamily of receptors having seven transmembrane segments and is expressed in highest levels in cerebrum and kidney. |
| NA | ENSG00000166685 | COG1 | component of oligomeric golgi complex 1 | 9382 | The protein encoded by this gene is one of eight proteins (Cog1-8) which form a Golgi-localized complex (COG) required for normal Golgi morphology and function. It is thought that this protein is required for steps in the normal medial and trans Golgi-associated processing of glycoconjugates and plays a role in the organization of the Golgi-localized complex. |
| NA | ENSG00000133193 | FAM104A | family with sequence similarity 104 member A | 84923 | NA |
| NA | ENSG00000141219 | C17orf80 | chromosome 17 open reading frame 80 | 55028 | NA |
| NA | ENSG00000179604 | CDC42EP4 | CDC42 effector protein 4 | 23580 | The product of this gene is a member of the CDC42-binding protein family. Members of this family interact with Rho family GTPases and regulate the organization of the actin cytoskeleton. This protein has been shown to bind both CDC42 and TC10 GTPases in a GTP-dependent manner. When overexpressed in fibroblasts, this protein was able to induce pseudopodia formation, which suggested a role in inducing actin filament assembly and cell shape control. |
| NA | ENSG00000069188 | SDK2 | sidekick cell adhesion molecule 2 | 54549 | The protein encoded by this gene is a member of the immunoglobulin superfamily. The protein contains two immunoglobulin domains and thirteen fibronectin type III domains. Fibronectin type III domains are present in both extracellular and intracellular proteins and tandem repeats are known to contain binding sites for DNA, heparin and the cell surface. This protein, and a homologous mouse sequence, are very similar to the Drosophila sidekick gene product but the specific function of this superfamily member is not yet known. Evidence for alternative splicing at this gene locus has been observed but the full-length nature of additional variants has not yet been determined. |
| NA | ENSG00000172809 | RPL38 | ribosomal protein L38 | 6169 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L38E family of ribosomal proteins. It is located in the cytoplasm. Alternative splice variants have been identified, both encoding the same protein. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome, including one located in the promoter region of the type 1 angiotensin II receptor gene. |
| NA | ENSG00000141540 | TTYH2 | tweety family member 2 | 94015 | This gene encodes a member of the tweety family of proteins. Members of this family function as chloride anion channels. The encoded protein functions as a calcium(2+)-activated large conductance chloride(-) channel, and may play a role in kidney tumorigenesis. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000204347 | BTBD17 | BTB domain containing 17 | 388419 | NA |
| NA | ENSG00000170412 | GPRC5C | G protein-coupled receptor class C group 5 member C | 55890 | The protein encoded by this gene is a member of the type 3 G protein-coupled receptor family. Members of this superfamily are characterized by a signature 7-transmembrane domain motif. The specific function of this protein is unknown; however, this protein may mediate the cellular effects of retinoic acid on the G protein signal transduction cascade. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000172794 | RAB37 | RAB37, member RAS oncogene family | 326624 | Rab proteins are low molecular mass GTPases that are critical regulators of vesicle trafficking. For additional background information on Rab proteins, see MIM 179508. |
| NA | ENSG00000109062 | SLC9A3R1 | SLC9A3 regulator 1 | 9368 | This gene encodes a sodium/hydrogen exchanger regulatory cofactor. The protein interacts with and regulates various proteins including the cystic fibrosis transmembrane conductance regulator and G-protein coupled receptors such as the beta2-adrenergic receptor and the parathyroid hormone 1 receptor. The protein also interacts with proteins that function as linkers between integral membrane and cytoskeletal proteins. The protein localizes to actin-rich structures including membrane ruffles, microvilli, and filopodia. Mutations in this gene result in hypophosphatemic nephrolithiasis/osteoporosis type 2, and loss of heterozygosity of this gene is implicated in breast cancer. |
| NA | ENSG00000109065 | NAT9 | N-acetyltransferase 9 (putative) | 26151 | NA |
| NA | ENSG00000109066 | TMEM104 | transmembrane protein 104 | 54868 | NA |
| NA | ENSG00000161513 | FDXR | ferredoxin reductase | 2232 | This gene encodes a mitochondrial flavoprotein that initiates electron transport for cytochromes P450 receiving electrons from NADPH. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000109089 | CDR2L | cerebellar degeneration-related protein 2-like | 30850 | NA |
| NA | ENSG00000167862 | ICT1 | immature colon carcinoma transcript 1 | 3396 | The protein encoded by this gene is a peptidyl-tRNA hydrolase and a vital component of the large mitochondrial ribosome. The encoded protein serves as a ribosome release factor for this ribosome, which translates mitochondrial genes. This protein may be responsible for degrading prematurely-terminated polypeptides and for reusing stalled ribosomes. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000180901 | KCTD2 | potassium channel tetramerization domain containing 2 | 23510 | NA |
| NA | ENSG00000170190 | SLC16A5 | solute carrier family 16 member 5 | 9121 | This gene encodes a member of the monocarboxylate transporter family and the major facilitator superfamily. The encoded protein is localized to the cell membrane and acts as a proton-linked transporter of bumetanide. Transport by the encoded protein is inhibited by four loop diuretics, nateglinide, thiazides, probenecid, and glibenclamide. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000125449 | ARMC7 | armadillo repeat containing 7 | 79637 | NA |
| NA | ENSG00000125458 | NT5C | 5’, 3’-nucleotidase, cytosolic | 30833 | This gene encodes a nucleotidase that catalyzes the dephosphorylation of the 5’ deoxyribonucleotides (dNTP) and 2’(3’)-dNTP and ribonucleotides, but not 5’ ribonucleotides. Of the different forms of nucleotidases characterized, this enzyme is unique in its preference for 5’-dNTP. It may be one of the enzymes involved in regulating the size of dNTP pools in cells. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000189159 | HN1 | hematological and neurological expressed 1 | 51155 | NA |
| NA | ENSG00000188612 | SUMO2 | small ubiquitin-like modifier 2 | 6613 | This gene encodes a protein that is a member of the SUMO (small ubiquitin-like modifier) protein family. It functions in a manner similar to ubiquitin in that it is bound to target proteins as part of a post-translational modification system. However, unlike ubiquitin which targets proteins for degradation, this protein is involved in a variety of cellular processes, such as nuclear transport, transcriptional regulation, apoptosis, and protein stability. It is not active until the last two amino acids of the carboxy-terminus have been cleaved off. Numerous pseudogenes have been reported for this gene. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000125450 | NUP85 | nucleoporin 85kDa | 79902 | This gene encodes a protein component of the Nup107-160 subunit of the nuclear pore complex. Nuclear pore complexes are embedded in the nuclear envelope and promote bidirectional transport of macromolecules between the cytoplasm and nucleus. The encoded protein can also bind to the C-terminus of chemokine (C-C motif) receptor 2 (CCR2) and promote chemotaxis of monocytes, thereby participating in the inflammatory response. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000125445 | MRPS7 | mitochondrial ribosomal protein S7 | 51081 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein. In the prokaryotic ribosome, the comparable protein is thought to play an essential role in organizing the 3’ domain of the 16 S rRNA in the vicinity of the P- and A-sites. Pseudogenes corresponding to this gene are found on chromosomes 8p and 12p. |
| NA | ENSG00000125457 | MIF4GD | MIF4G domain containing | 57409 | This gene encodes a protein which interacts with the N-terminus of the stem-loop binding protein (SLBP) and the 3’ end of histone mRNA. This interaction facilitates the activation of histone mRNA translation. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000125454 | SLC25A19 | solute carrier family 25 member 19 | 60386 | This gene encodes a mitochondrial protein that is a member of the solute carrier family. Although this protein was initially thought to be the mitochondrial deoxynucleotide carrier involved in the uptake of deoxynucleotides into the matrix of the mitochondria, further studies have demonstrated that this protein instead functions as the mitochondrial thiamine pyrophosphate carrier, which transports thiamine pyrophosphates into mitochondria. Mutations in this gene cause microcephaly, Amish type, a metabolic disease that results in severe congenital microcephaly, severe 2-ketoglutaric aciduria, and death within the first year. Multiple alternatively spliced variants, encoding the same protein, have been identified for this gene. |
| NA | ENSG00000177885 | GRB2 | growth factor receptor bound protein 2 | 2885 | The protein encoded by this gene binds the epidermal growth factor receptor and contains one SH2 domain and two SH3 domains. Its two SH3 domains direct complex formation with proline-rich regions of other proteins, and its SH2 domain binds tyrosine phosphorylated sequences. This gene is similar to the Sem5 gene of C.elegans, which is involved in the signal transduction pathway. Two alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000177728 | TMEM94 | transmembrane protein 94 | 9772 | NA |
| NA | ENSG00000177303 | CASKIN2 | CASK interacting protein 2 | 57513 | This gene encodes a large protein that contains six ankyrin repeats, as well as a Src homology 3 (SH3) domain and two sterile alpha motif (SAM) domains, which may be involved in protein-protein interactions. The C-terminal portion of this protein is proline-rich and contains a conserved region. A related protein interacts with calcium/calmodulin-dependent serine protein kinase (CASK). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000182173 | TSEN54 | tRNA splicing endonuclease subunit 54 | 283989 | This gene encodes a subunit of the tRNA splicing endonuclease complex, which catalyzes the removal of introns from precursor tRNAs. The complex is also implicated in pre-mRNA 3-prime end processing. Mutations in this gene result in pontocerebellar hypoplasia type 2. |
| NA | ENSG00000073350 | LLGL2 | lethal giant larvae homolog 2, scribble cell polarity complex component | 3993 | The lethal (2) giant larvae protein of Drosophila plays a role in asymmetric cell division, epithelial cell polarity, and cell migration. This human gene encodes a protein similar to lethal (2) giant larvae of Drosophila. In fly, the protein’s ability to localize cell fate determinants is regulated by the atypical protein kinase C (aPKC). In human, this protein interacts with aPKC-containing complexes and is cortically localized in mitotic cells. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000108469 | RECQL5 | RecQ like helicase 5 | 9400 | The protein encoded by this gene is a helicase that is important for genome stability. The encoded protein also prevents aberrant homologous recombination by displacing RAD51 from ssDNA. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000161526 | SAP30BP | SAP30 binding protein | 29115 | NA |
| NA | ENSG00000108479 | GALK1 | galactokinase 1 | 2584 | Galactokinase is a major enzyme for the metabolism of galactose and its deficiency causes congenital cataracts during infancy and presenile cataracts in the adult population. |
| NA | ENSG00000132475 | H3F3B | H3 histone, family 3B (H3.3B) | 3021 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene contains introns and its mRNA is polyadenylated, unlike most histone genes. The protein encoded by this gene is a replication-independent histone that is a member of the histone H3 family. Pseudogenes of this gene have been identified on the X chromosome, and on chromosomes 5, 13 and 17. |
| NA | ENSG00000132478 | UNK | unkempt family zinc finger | 85451 | NA |
| NA | ENSG00000092929 | UNC13D | unc-13 homolog D (C. elegans) | 201294 | This gene encodes a protein that is a member of the UNC13 family, containing similar domain structure as other family members but lacking an N-terminal phorbol ester-binding C1 domain present in other Munc13 proteins. The protein appears to play a role in vesicle maturation during exocytosis and is involved in regulation of cytolytic granules secretion. Mutations in this gene are associated with familial hemophagocytic lymphohistiocytosis type 3, a genetically heterogeneous, rare autosomal recessive disorder. |
| NA | ENSG00000132471 | WBP2 | WW domain binding protein 2 | 23558 | The globular WW domain is composed of 38 to 40 semiconserved amino acids shared by proteins of diverse functions including structural, regulatory, and signaling proteins. The domain is involved in mediating protein-protein interactions through the binding of polyproline ligands. This gene encodes a WW domain binding protein, which binds to the WW domain of Yes kinase-associated protein by its PY motifs. The function of this protein has not been determined. |
| NA | ENSG00000141569 | TRIM65 | tripartite motif containing 65 | 201292 | NA |
| NA | ENSG00000204316 | MRPL38 | mitochondrial ribosomal protein L38 | 64978 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000188878 | FBF1 | Fas (TNFRSF6) binding factor 1 | ENSG00000188878 | NA |
| NA | ENSG00000161533 | ACOX1 | acyl-CoA oxidase 1, palmitoyl | 51 | The protein encoded by this gene is the first enzyme of the fatty acid beta-oxidation pathway, which catalyzes the desaturation of acyl-CoAs to 2-trans-enoyl-CoAs. It donates electrons directly to molecular oxygen, thereby producing hydrogen peroxide. Defects in this gene result in pseudoneonatal adrenoleukodystrophy, a disease that is characterized by accumulation of very long chain fatty acids. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000257949 | TEN1 | TEN1 CST complex subunit | 100134934 | C17ORF106, or TEN1, appears to function in a telomere-associated complex with STN1 (OBFC1; MIM 613128) and CTC1 (C17ORF68; MIM 613129) (Miyake et al., 2009 [PubMed 19854130]). |
| NA | ENSG00000250506 | CDK3 | cyclin-dependent kinase 3 | ENSG00000250506 | NA |
| NA | ENSG00000167881 | SRP68 | signal recognition particle 68kDa | 6730 | This gene encodes a subunit of the signal recognition particle (SRP). The SRP is a ribonucleoprotein complex that transports secreted and membrane proteins to the endoplasmic reticulum for processing. The complex includes a 7S RNA and six protein subunits. The encoded protein is the 68kDa component of the SRP, and forms a heterodimer with the 72kDa subunit that is required for SRP function. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and three pseudogenes of this gene are located within the Smith-Magenis syndrome region on chromosome 17. |
| NA | ENSG00000182473 | EXOC7 | exocyst complex component 7 | 23265 | The protein encoded by this gene is a component of the exocyst complex. The exocyst complex plays a critical role in vesicular trafficking and the secretory pathway by targeting post-Golgi vesicles to the plasma membrane. The encoded protein is required for assembly of the exocyst complex and docking of the complex to the plasma membrane. The encoded protein may also play a role in pre-mRNA splicing through interactions with pre-mRNA-processing factor 19. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 4. |
| NA | ENSG00000129654 | FOXJ1 | forkhead box J1 | 2302 | This gene encodes a member of the forkhead family of transcription factors. Similar genes in zebrafish and mouse have been shown to regulate the transcription of genes that control the production of motile cilia. The mouse ortholog also functions in the determination of left-right asymmetry. Polymorphisms in this gene are associated with systemic lupus erythematosus and allergic rhinitis. |
| NA | ENSG00000141576 | RNF157 | ring finger protein 157 | 114804 | NA |
| NA | ENSG00000185262 | UBALD2 | UBA like domain containing 2 | 283991 | NA |
| NA | ENSG00000161542 | PRPSAP1 | phosphoribosyl pyrophosphate synthetase-associated protein 1 | 5635 | NA |
| NA | ENSG00000175931 | UBE2O | ubiquitin conjugating enzyme E2 O | 63893 | NA |
| NA | ENSG00000129667 | RHBDF2 | rhomboid 5 homolog 2 (Drosophila) | 79651 | NA |
| NA | ENSG00000070731 | ST6GALNAC2 | ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 2 | 10610 | ST6GALNAC2 belongs to a family of sialyltransferases that add sialic acids to the nonreducing ends of glycoconjugates. At the cell surface, these modifications have roles in cell-cell and cell-substrate interactions, bacterial adhesion, and protein targeting (Samyn-Petit et al., 2000 [PubMed 10742600]). |
| NA | ENSG00000182534 | MXRA7 | matrix-remodelling associated 7 | 439921 | NA |
| NA | ENSG00000070495 | JMJD6 | jumonji domain containing 6 | 23210 | This gene encodes a nuclear protein with a JmjC domain. JmjC domain-containing proteins are predicted to function as protein hydroxylases or histone demethylases. This protein was first identified as a putative phosphatidylserine receptor involved in phagocytosis of apoptotic cells; however, subsequent studies have indicated that it does not directly function in the clearance of apoptotic cells, and questioned whether it is a true phosphatidylserine receptor. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000161547 | SRSF2 | serine/arginine-rich splicing factor 2 | 6427 | The protein encoded by this gene is a member of the serine/arginine (SR)-rich family of pre-mRNA splicing factors, which constitute part of the spliceosome. Each of these factors contains an RNA recognition motif (RRM) for binding RNA and an RS domain for binding other proteins. The RS domain is rich in serine and arginine residues and facilitates interaction between different SR splicing factors. In addition to being critical for mRNA splicing, the SR proteins have also been shown to be involved in mRNA export from the nucleus and in translation. Two transcript variants encoding the same protein and one non-coding transcript variant have been found for this gene. In addition, a pseudogene of this gene has been found on chromosome 11. |
| NA | ENSG00000092931 | MFSD11 | major facilitator superfamily domain containing 11 | 79157 | NA |
| NA | ENSG00000167889 | MGAT5B | mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase, isozyme B | 146664 | The MGAT5B gene encodes a beta-1,6-N-acetylglucosaminyltransferase (EC 2.4.1.155) that functions in the synthesis of complex cell surface N-glycans (Kaneko et al., 2003 [PubMed 14623122]). |
| NA | ENSG00000129657 | SEC14L1 | SEC14 like lipid binding 1 | 6397 | The protein encoded by this gene belongs to the SEC14 cytosolic factor family. It has similarity to yeast SEC14 and to Japanese flying squid RALBP which suggests a possible role of the gene product in an intracellular transport system. Multiple alternatively spliced transcript variants have been found for this gene; some variants represent read-through transcripts that include exons from the upstream gene C17orf86. |
| NA | ENSG00000184640 | SEPT9 | septin 9 | 10801 | This gene is a member of the septin family involved in cytokinesis and cell cycle control. This gene is a candidate for the ovarian tumor suppressor gene. Mutations in this gene cause hereditary neuralgic amyotrophy, also known as neuritis with brachial predilection. A chromosomal translocation involving this gene on chromosome 17 and the MLL gene on chromosome 11 results in acute myelomonocytic leukemia. Multiple alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000141524 | TMC6 | transmembrane channel like 6 | 11322 | Epidermodysplasia verruciformis (EV) is an autosomal recessive dermatosis characterized by abnormal susceptibility to human papillomaviruses (HPVs) and a high rate of progression to squamous cell carcinoma on sun-exposed skin. EV is caused by mutations in either of two adjacent genes located on chromosome 17q25.3. Both of these genes encode integral membrane proteins that localize to the endoplasmic reticulum and are predicted to form transmembrane channels. This gene encodes a transmembrane channel-like protein with 10 transmembrane domains and 2 leucine zipper motifs. |
| NA | ENSG00000108639 | SYNGR2 | synaptogyrin 2 | 9144 | This gene encodes an integral membrane protein containing four transmembrane regions and a C-terminal cytoplasmic tail that is tyrosine phosphorylated. The exact function of this protein is unclear, but studies of a similar rat protein suggest that it may play a role in regulating membrane traffic in non-neuronal cells. The gene belongs to the synaptogyrin gene family. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000167900 | TK1 | thymidine kinase 1, soluble | 7083 | NA |
| NA | ENSG00000183077 | AFMID | arylformamidase | 125061 | NA |
| NA | ENSG00000089685 | BIRC5 | baculoviral IAP repeat containing 5 | 332 | This gene is a member of the inhibitor of apoptosis (IAP) gene family, which encode negative regulatory proteins that prevent apoptotic cell death. IAP family members usually contain multiple baculovirus IAP repeat (BIR) domains, but this gene encodes proteins with only a single BIR domain. The encoded proteins also lack a C-terminus RING finger domain. Gene expression is high during fetal development and in most tumors, yet low in adult tissues. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000184557 | SOCS3 | suppressor of cytokine signaling 3 | 9021 | This gene encodes a member of the STAT-induced STAT inhibitor (SSI), also known as suppressor of cytokine signaling (SOCS), family. SSI family members are cytokine-inducible negative regulators of cytokine signaling. The expression of this gene is induced by various cytokines, including IL6, IL10, and interferon (IFN)-gamma. The protein encoded by this gene can bind to JAK2 kinase, and inhibit the activity of JAK2 kinase. Studies of the mouse counterpart of this gene suggested the roles of this gene in the negative regulation of fetal liver hematopoiesis, and placental development. |
| NA | ENSG00000087157 | PGS1 | phosphatidylglycerophosphate synthase 1 | 9489 | NA |
| NA | ENSG00000108669 | CYTH1 | cytohesin 1 | 9267 | The protein encoded by this gene is a member of the PSCD family. Members of this family have identical structural organization that consists of an N-terminal coiled-coil motif, a central Sec7 domain, and a C-terminal pleckstrin homology (PH) domain. The coiled-coil motif is involved in homodimerization, the Sec7 domain contains guanine-nucleotide exchange protein activity, and the PH domain interacts with phospholipids and is responsible for association of PSCDs with membranes. Members of this family appear to mediate the regulation of protein sorting and membrane trafficking. This gene is highly expressed in natural killer and peripheral T cells, and regulates the adhesiveness of integrins at the plasma membrane of lymphocytes. A pseudogene of this gene has been defined on the X chromosome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000055483 | USP36 | ubiquitin specific peptidase 36 | 57602 | This gene encodes a member of the peptidase C19 or ubiquitin-specific protease family of cysteine proteases. Members of this family remove ubiquitin molecules from polyubiquitinated proteins. The encoded protein may deubiquitinate and stabilize the transcription factor c-Myc, also known as MYC, an important oncoprotein known to be upregulated in most human cancers. The encoded protease may also regulate the activation of autophagy. This gene exhibits elevated expression in some breast and lung cancers. |
| NA | ENSG00000035862 | TIMP2 | TIMP metallopeptidase inhibitor 2 | 7077 | This gene is a member of the TIMP gene family. The proteins encoded by this gene family are natural inhibitors of the matrix metalloproteinases, a group of peptidases involved in degradation of the extracellular matrix. In addition to an inhibitory role against metalloproteinases, the encoded protein has a unique role among TIMP family members in its ability to directly suppress the proliferation of endothelial cells. As a result, the encoded protein may be critical to the maintenance of tissue homeostasis by suppressing the proliferation of quiescent tissues in response to angiogenic factors, and by inhibiting protease activity in tissues undergoing remodelling of the extracellular matrix. |
| NA | ENSG00000171302 | CANT1 | calcium activated nucleotidase 1 | 124583 | This protein encoded by this gene belongs to the apyrase family. It functions as a calcium-dependent nucleotidase with a preference for UDP. Mutations in this gene are associated with Desbuquois dysplasia with hand anomalies. Alternatively spliced transcript variants have been noted for this gene. |
| NA | ENSG00000167280 | ENGASE | endo-beta-N-acetylglucosaminidase | 64772 | This gene encodes a cytosolic enzyme which catalyzes the hydrolysis of peptides and proteins with mannose modifications to produce free oligosaccharides. |
| NA | ENSG00000167281 | RBFOX3 | RNA binding protein, fox-1 homolog (C. elegans) 3 | 146713 | NA |
| NA | ENSG00000173894 | CBX2 | chromobox 2 | 84733 | This gene encodes a component of the polycomb multiprotein complex, which is required to maintain the transcriptionally repressive state of many genes throughout development via chromatin remodeling and modification of histones. Disruption of this gene in mice results in male-to-female gonadal sex reversal. Mutations in this gene are also associated with gonadal dysgenesis in humans. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000141582 | CBX4 | chromobox 4 | 8535 | NA |
| NA | ENSG00000167291 | TBC1D16 | TBC1 domain family member 16 | 125058 | NA |
| NA | ENSG00000141519 | CCDC40 | coiled-coil domain containing 40 | 55036 | This gene encodes a protein that is necessary for motile cilia function. It functions in correct left-right axis formation by regulating the assembly of the inner dynein arm and the dynein regulatory complexes, which control ciliary beat. Mutations in this gene cause ciliary dyskinesia type 15, a disorder due to defects in cilia motility. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171298 | GAA | glucosidase, alpha; acid | 2548 | This gene encodes lysosomal alpha-glucosidase, which is essential for the degradation of glycogen to glucose in lysosomes. The encoded preproprotein is proteolytically processed to generate multiple intermediate forms and the mature form of the enzyme. Defects in this gene are the cause of glycogen storage disease II, also known as Pompe’s disease, which is an autosomal recessive disorder with a broad clinical spectrum. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000141543 | EIF4A3 | eukaryotic translation initiation factor 4A3 | 9775 | This gene encodes a member of the DEAD box protein family. DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. The protein encoded by this gene is a nuclear matrix protein. Its amino acid sequence is highly similar to the amino acid sequences of the translation initiation factors eIF4AI and eIF4AII, two other members of the DEAD box protein family. |
| NA | ENSG00000181523 | SGSH | N-sulfoglucosamine sulfohydrolase | 6448 | This gene encodes one of several enzymes involved in the lysosomal degradation of heparan sulfate. Mutations in this gene are associated with Sanfilippo syndrome A, one type of the lysosomal storage disease mucopolysaccaridosis III, which results from impaired degradation of heparan sulfate. Transcripts of varying sizes have been reported but their biological validity has not been determined. |
| NA | ENSG00000181045 | SLC26A11 | solute carrier family 26 member 11 | 284129 | This gene encodes a member of the solute linked carrier 26 family of anion exchangers. Members of this family of proteins are essential for numerous cellular functions including homeostasis and intracellular electrolyte balance. The encoded protein is a sodium independent sulfate transporter that is sensitive to the anion exchanger inhibitor 4,4’-diisothiocyanostilbene-2,2’-disulfonic acid. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000173821 | RNF213 | ring finger protein 213 | 57674 | This gene encodes a protein containing a C3HC4-type RING finger domain, which is a specialized type of Zn-finger that binds two atoms of zinc and is thought to be involved in mediating protein-protein interactions. The protein also contains an AAA domain, which is associated with ATPase activity. This gene is a susceptibility gene for Moyamoya disease, a vascular disorder of intracranial arteries. This gene is also a translocation partner in anaplastic large cell lymphoma and inflammatory myofibroblastic tumor cases, where a t(2;17)(p23;q25) translocation has been identified with the anaplastic lymphoma kinase (ALK) gene on chromosome 2, and a t(8;17)(q24;q25) translocation has been identified with the MYC gene on chromosome 8. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000173818 | ENDOV | endonuclease V | 284131 | NA |
| NA | ENSG00000141564 | RPTOR | regulatory associated protein of MTOR, complex 1 | 57521 | This gene encodes a component of a signaling pathway that regulates cell growth in response to nutrient and insulin levels. The encoded protein forms a stoichiometric complex with the mTOR kinase, and also associates with eukaryotic initiation factor 4E-binding protein-1 and ribosomal protein S6 kinase. The protein positively regulates the downstream effector ribosomal protein S6 kinase, and negatively regulates the mTOR kinase. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000176108 | CHMP6 | charged multivesicular body protein 6 | 79643 | This gene encodes a member of the chromatin-modifying protein/charged multivesicular body protein family. Proteins in this family are part of the ESCRT-III (endosomal sorting complex required for transport III) which degrades surface receptors, and in biosynthesis of endosomes. |
| NA | ENSG00000175866 | BAIAP2 | BAI1 associated protein 2 | 10458 | The protein encoded by this gene has been identified as a brain-specific angiogenesis inhibitor (BAI1)-binding protein. This adaptor protein links membrane bound G-proteins to cytoplasmic effector proteins. This protein functions as an insulin receptor tyrosine kinase substrate and suggests a role for insulin in the central nervous system. It also associates with a downstream effector of Rho small G proteins, which is associated with the formation of stress fibers and cytokinesis. This protein is involved in lamellipodia and filopodia formation in motile cells and may affect neuronal growth-cone guidance. This protein has also been identified as interacting with the dentatorubral-pallidoluysian atrophy gene, which is associated with an autosomal dominant neurodegenerative disease. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000181409 | AATK | apoptosis-associated tyrosine kinase | 9625 | The protein encoded by this gene contains a tyrosine kinase domain at the N-terminus and a proline-rich domain at the C-terminus. This gene is induced during apoptosis, and expression of this gene may be a necessary pre-requisite for the induction of growth arrest and/or apoptosis of myeloid precursor cells. This gene has been shown to produce neuronal differentiation in a neuroblastoma cell line. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000141577 | CEP131 | centrosomal protein 131kDa | 22994 | NA |
| NA | ENSG00000167302 | ENTHD2 | ENTH domain containing 2 | 146705 | NA |
| NA | ENSG00000224877 | C17orf89 | chromosome 17 open reading frame 89 | 284184 | NA |
| NA | ENSG00000157637 | SLC38A10 | solute carrier family 38 member 10 | 124565 | NA |
| NA | ENSG00000184009 | ACTG1 | actin gamma 1 | 71 | Actins are highly conserved proteins that are involved in various types of cell motility, and maintenance of the cytoskeleton. In vertebrates, three main groups of actin isoforms, alpha, beta and gamma have been identified. The alpha actins are found in muscle tissues and are a major constituent of the contractile apparatus. The beta and gamma actins co-exist in most cell types as components of the cytoskeleton, and as mediators of internal cell motility. Actin, gamma 1, encoded by this gene, is a cytoplasmic actin found in non-muscle cells. Mutations in this gene are associated with DFNA20/26, a subtype of autosomal dominant non-syndromic sensorineural progressive hearing loss. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000185504 | FAAP100 | Fanconi anemia core complex associated protein 100 | 80233 | FAAP100 is a component of the Fanconi anemia (FA; MIM 277650) core complex and is required for core complex stability and FANCD2 (see MIM 227646) monoubiquitination (Ling et al., 2007 [PubMed 17396147]). |
| NA | ENSG00000182446 | NPLOC4 | NPL4 homolog, ubiquitin recognition factor | 55666 | NA |
| NA | ENSG00000204237 | OXLD1 | oxidoreductase-like domain containing 1 | 339229 | NA |
| NA | ENSG00000185298 | CCDC137 | coiled-coil domain containing 137 | 339230 | NA |
| NA | ENSG00000185359 | HGS | hepatocyte growth factor-regulated tyrosine kinase substrate | 9146 | The protein encoded by this gene regulates endosomal sorting and plays a critical role in the recycling and degradation of membrane receptors. The encoded protein sorts monoubiquitinated membrane proteins into the multivesicular body, targeting these proteins for lysosome-dependent degradation. |
| NA | ENSG00000262814 | MRPL12 | mitochondrial ribosomal protein L12 | 6182 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein which forms homodimers. In prokaryotic ribosomes, two L7/L12 dimers and one L10 protein form the L8 protein complex. |
| NA | ENSG00000183048 | SLC25A10 | solute carrier family 25 member 10 | 1468 | This gene encodes a member of a family of proteins that translocate small metabolites across the mitochondrial membrane. The encoded protein exchanges dicarboxylates, such as malate and succinate, for phosphate, sulfate, and other small molecules, thereby providing substrates for metabolic processes including the Krebs cycle and fatty acid synthesis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000225663 | FAM195B | family with sequence similarity 195 member B | 348262 | NA |
| NA | ENSG00000185624 | P4HB | prolyl 4-hydroxylase subunit beta | 5034 | This gene encodes the beta subunit of prolyl 4-hydroxylase, a highly abundant multifunctional enzyme that belongs to the protein disulfide isomerase family. When present as a tetramer consisting of two alpha and two beta subunits, this enzyme is involved in hydroxylation of prolyl residues in preprocollagen. This enzyme is also a disulfide isomerase containing two thioredoxin domains that catalyze the formation, breakage and rearrangement of disulfide bonds. Other known functions include its ability to act as a chaperone that inhibits aggregation of misfolded proteins in a concentration-dependent manner, its ability to bind thyroid hormone, its role in both the influx and efflux of S-nitrosothiol-bound nitric oxide, and its function as a subunit of the microsomal triglyceride transfer protein complex. |
| NA | ENSG00000141522 | ARHGDIA | Rho GDP dissociation inhibitor (GDI) alpha | 396 | This gene encodes a protein that plays a key role in the regulation of signaling through Rho GTPases. The encoded protein inhibits the disassociation of Rho family members from GDP (guanine diphosphate), thereby maintaining these factors in an inactive state. Activity of this protein is important in a variety of cellular processes, and expression of this gene may be altered in tumors. Mutations in this gene have been found in individuals with nephrotic syndrome, type 8. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000183684 | ALYREF | Aly/REF export factor | 10189 | The protein encoded by this gene is a heat stable, nuclear protein and functions as a molecular chaperone. It is thought to regulate dimerization, DNA binding, and transcriptional activity of basic region-leucine zipper (bZIP) proteins. |
| NA | ENSG00000185813 | PCYT2 | phosphate cytidylyltransferase 2, ethanolamine | 5833 | This gene encodes an enzyme that catalyzes the formation of CDP-ethanolamine from CTP and phosphoethanolamine in the Kennedy pathway of phospholipid synthesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000187531 | SIRT7 | sirtuin 7 | 51547 | This gene encodes a member of the sirtuin family of proteins, homologs to the yeast Sir2 protein. Members of the sirtuin family are characterized by a sirtuin core domain and grouped into four classes. The functions of human sirtuins have not yet been determined; however, yeast sirtuin proteins are known to regulate epigenetic gene silencing and suppress recombination of rDNA. Studies suggest that the human sirtuins may function as intracellular regulatory proteins with mono-ADP-ribosyltransferase activity. The protein encoded by this gene is included in class IV of the sirtuin family. |
| NA | ENSG00000197063 | MAFG | v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog G | 4097 | Globin gene expression is regulated through nuclear factor erythroid-2 (NFE2) elements located in enhancer-like locus control regions positioned many kb upstream of alpha- and beta-gene clusters (summarized by Blank et al., 1997 [PubMed 9166829]). NFE2 DNA-binding activity consists of a heterodimer containing a ubiquitous small Maf protein (MafF, MIM 604877; MafG; or MafK, MIM 600197) and the tissue-restricted protein p45 NFE2 (MIM 601490). Both subunits are members of the activator protein-1-like superfamily of basic leucine zipper (bZIP) proteins (see MIM 165160). |
| NA | ENSG00000183010 | PYCR1 | pyrroline-5-carboxylate reductase 1 | 5831 | This gene encodes an enzyme that catalyzes the NAD(P)H-dependent conversion of pyrroline-5-carboxylate to proline. This enzyme may also play a physiologic role in the generation of NADP(+) in some cell types. The protein forms a homopolymer and localizes to the mitochondrion. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169696 | ASPSCR1 | alveolar soft part sarcoma chromosome region, candidate 1 | 79058 | The protein encoded by this gene contains a UBX domain and interacts with glucose transporter type 4 (GLUT4). This protein is a tether, which sequesters the GLUT4 in intracellular vesicles in muscle and fat cells in the absence of insulin, and redistributes the GLUT4 to the plasma membrane within minutes of insulin stimulation. Translocation t(X;17)(p11;q25) of this gene with transcription factor TFE3 gene results in a ASPSCR1-TFE3 fusion protein in alveolar soft part sarcoma and in renal cell carcinomas. Multiple alternatively spliced transcript variants have been found. |
| NA | ENSG00000169689 | STRA13 | stimulated by retinoic acid 13 | 201254 | NA |
| NA | ENSG00000169683 | LRRC45 | leucine rich repeat containing 45 | 201255 | NA |
| NA | ENSG00000169750 | RAC3 | ras-related C3 botulinum toxin substrate 3 (rho family, small GTP binding protein Rac3) | 5881 | The protein encoded by this gene is a GTPase which belongs to the RAS superfamily of small GTP-binding proteins. Members of this superfamily appear to regulate a diverse array of cellular events, including the control of cell growth, cytoskeletal reorganization, and the activation of protein kinases. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169738 | DCXR | dicarbonyl/L-xylulose reductase | 51181 | The protein encoded by this gene acts as a homotetramer to catalyze diacetyl reductase and L-xylulose reductase reactions. The encoded protein may play a role in the uronate cycle of glucose metabolism and in the cellular osmoregulation in the proximal renal tubules. Defects in this gene are a cause of pentosuria. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169733 | RFNG | RFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase | 5986 | NA |
| NA | ENSG00000169727 | GPS1 | G protein pathway suppressor 1 | 2873 | This gene is known to suppress G-protein and mitogen-activated signal transduction in mammalian cells. The encoded protein shares significant similarity with Arabidopsis FUS6, which is a regulator of light-mediated signal transduction in plant cells. |
| NA | ENSG00000169718 | DUS1L | dihydrouridine synthase 1 like | 64118 | NA |
| NA | ENSG00000169710 | FASN | fatty acid synthase | 2194 | The enzyme encoded by this gene is a multifunctional protein. Its main function is to catalyze the synthesis of palmitate from acetyl-CoA and malonyl-CoA, in the presence of NADPH, into long-chain saturated fatty acids. In some cancer cell lines, this protein has been found to be fused with estrogen receptor-alpha (ER-alpha), in which the N-terminus of FAS is fused in-frame with the C-terminus of ER-alpha. |
| NA | ENSG00000176155 | CCDC57 | coiled-coil domain containing 57 | 284001 | NA |
| NA | ENSG00000141551 | CSNK1D | casein kinase 1 delta | 1453 | This gene is a member of the casein kinase I (CKI) gene family whose members have been implicated in the control of cytoplasmic and nuclear processes, including DNA replication and repair. The encoded protein may also be involved in the regulation of apoptosis, circadian rhythm, microtubule dynamics, chromosome segregation, and p53-mediated effects on growth. The encoded protein is highly similar to the mouse and rat CK1 delta homologs. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000181396 | OGFOD3 | 2-oxoglutarate and iron dependent oxygenase domain containing 3 | 79701 | NA |
| NA | ENSG00000169660 | HEXDC | hexosaminidase (glycosyl hydrolase family 20, catalytic domain) containing | 284004 | NA |
| NA | ENSG00000178927 | C17orf62 | chromosome 17 open reading frame 62 | 79415 | NA |
| NA | ENSG00000141562 | NARF | nuclear prelamin A recognition factor | 26502 | Several proteins have been found to be prenylated and methylated at their carboxyl-terminal ends. Prenylation was initially believed to be important only for membrane attachment. However, another role for prenylation appears to be its importance in protein-protein interactions. The only nuclear proteins known to be prenylated in mammalian cells are prelamin A- and B-type lamins. Prelamin A is farnesylated and carboxymethylated on the cysteine residue of a carboxyl-terminal CaaX motif. This post-translationally modified cysteine residue is removed from prelamin A when it is endoproteolytically processed into mature lamin A. The protein encoded by this gene binds to the prenylated prelamin A carboxyl-terminal tail domain. It may be a component of a prelamin A endoprotease complex. The encoded protein is located in the nucleus, where it partially colocalizes with the nuclear lamina. It shares limited sequence similarity with iron-only bacterial hydrogenases. Alternatively spliced transcript variants encoding different isoforms have been identified for this gene, including one with a novel exon that is generated by RNA editing. |
| NA | ENSG00000141568 | FOXK2 | forkhead box K2 | 3607 | The protein encoded by this gene contains a fork head DNA binding domain. This protein can bind to the purine-rich motifs of the HIV long terminal repeat (LTR), and to the similar purine-rich motif in the interleukin 2 (IL2) promoter. It may be involved in the regulation of viral and cellular promoter elements. |
| NA | ENSG00000141580 | WDR45B | WD repeat domain 45B | 56270 | This gene encodes a member of the WIPI or SVP1 family of WD40 repeat-containing proteins. The protein contains seven WD40 repeats that are thought to fold into a beta-propeller structure that mediates protein-protein interactions, and a conserved motif for interaction with phospholipids. The human genome contains several pseudogenes of this gene. |
| NA | ENSG00000141542 | RAB40B | RAB40B, member RAS oncogene family | 10966 | The protein encoded by this gene has similarity to a yeast protein which suggests a role of the gene product in regulating secretory vesicles. |
| NA | ENSG00000141560 | FN3KRP | fructosamine 3 kinase related protein | 79672 | A high concentration of glucose can result in non-enzymatic oxidation of proteins by reaction of glucose and lysine residues (glycation). Proteins modified in this way are less active or functional. This gene encodes an enzyme which catalyzes the phosphorylation of psicosamines and ribulosamines compared to the neighboring gene which encodes a highly similar enzyme, fructosamine-3-kinase, which has different substrate specificity. The activity of both enzymes may result in deglycation of proteins to restore their function. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175711 | B3GNTL1 | UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase-like 1 | 146712 | NA |
| NA | ENSG00000176845 | METRNL | meteorin, glial cell differentiation regulator-like | 284207 | NA |
| NA | ENSG00000101557 | USP14 | ubiquitin specific peptidase 14 | 9097 | This gene encodes a member of the ubiquitin-specific processing (UBP) family of proteases that is a deubiquitinating enzyme (DUB) with His and Cys domains. This protein is located in the cytoplasm and cleaves the ubiquitin moiety from ubiquitin-fused precursors and ubiquitinylated proteins. Mice with a mutation that results in reduced expression of the ortholog of this protein are retarded for growth, develop severe tremors by 2 to 3 weeks of age followed by hindlimb paralysis and death by 6 to 10 weeks of age. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000079134 | THOC1 | THO complex 1 | 9984 | HPR1 is part of the TREX (transcription/export) complex, which includes TEX1 (MIM 606929), THO2 (MIM 300395), ALY (MIM 604171), and UAP56 (MIM 142560). |
| NA | ENSG00000176912 | TYMSOS | TYMS opposite strand | ENSG00000176912 | NA |
| NA | ENSG00000176105 | YES1 | YES proto-oncogene 1, Src family tyrosine kinase | 7525 | This gene is the cellular homolog of the Yamaguchi sarcoma virus oncogene. The encoded protein has tyrosine kinase activity and belongs to the src family of proteins. This gene lies in close proximity to thymidylate synthase gene on chromosome 18, and a corresponding pseudogene has been found on chromosome 22. |
| NA | ENSG00000101574 | METTL4 | methyltransferase like 4 | 64863 | NA |
| NA | ENSG00000101596 | SMCHD1 | structural maintenance of chromosomes flexible hinge domain containing 1 | 23347 | This gene encodes a protein which contains a hinge region domain found in members of the SMC (structural maintenance of chromosomes) protein family. |
| NA | ENSG00000132205 | EMILIN2 | elastin microfibril interfacer 2 | 84034 | NA |
| NA | ENSG00000101608 | MYL12A | myosin light chain 12A | 10627 | This gene encodes a nonsarcomeric myosin regulatory light chain. This protein is activated by phosphorylation and regulates smooth muscle and non-muscle cell contraction. This protein may also be involved in DNA damage repair by sequestering the transcriptional regulator apoptosis-antagonizing transcription factor (AATF)/Che-1 which functions as a repressor of p53-driven apoptosis. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 8. |
| NA | ENSG00000118680 | MYL12B | myosin light chain 12B | 103910 | The activity of nonmuscle myosin II (see MYH9; MIM 160775) is regulated by phosphorylation of a regulatory light chain, such as MRLC2. This phosphorylation results in higher MgATPase activity and the assembly of myosin II filaments (Iwasaki et al., 2001 [PubMed 11942626]). |
| NA | ENSG00000170579 | DLGAP1 | discs large homolog associated protein 1 | 9229 | NA |
| NA | ENSG00000198081 | ZBTB14 | zinc finger and BTB domain containing 14 | 7541 | NA |
| NA | ENSG00000082397 | EPB41L3 | erythrocyte membrane protein band 4.1-like 3 | 23136 | NA |
| NA | ENSG00000206432 | TMEM200C | transmembrane protein 200C | 645369 | NA |
| NA | ENSG00000088756 | ARHGAP28 | Rho GTPase activating protein 28 | 79822 | NA |
| NA | ENSG00000101680 | LAMA1 | laminin subunit alpha 1 | 284217 | This gene encodes one of the alpha 1 subunits of laminin. The laminins are a family of extracellular matrix glycoproteins that have a heterotrimeric structure consisting of an alpha, beta and gamma chain. These proteins make up a major component of the basement membrane and have been implicated in a wide variety of biological processes including cell adhesion, differentiation, migration, signaling, neurite outgrowth and metastasis. Mutations in this gene may be associated with Poretti-Boltshauser syndrome. |
| NA | ENSG00000173482 | PTPRM | protein tyrosine phosphatase, receptor type M | 5797 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP possesses an extracellular region, a single transmembrane region, and two tandem catalytic domains, and thus represents a receptor-type PTP. The extracellular region contains a meprin-A5 antigen-PTP mu (MAM) domain, an Ig-like domain and four fibronectin type III-like repeats. This PTP has been shown to mediate cell-cell aggregation through the interaction with another molecule of this PTP on an adjacent cell. This PTP can interact with scaffolding protein RACK1/GNB2L1, which may be necessary for the downstream signaling in response to cell-cell adhesion. Alternative splicing results in multiple transcripts encoding distinct isoforms. |
| NA | ENSG00000206418 | RAB12 | RAB12, member RAS oncogene family | 201475 | NA |
| NA | ENSG00000178127 | NDUFV2 | NADH:ubiquinone oxidoreductase core subunit V2 | 4729 | The NADH-ubiquinone oxidoreductase complex (complex I) of the mitochondrial respiratory chain catalyzes the transfer of electrons from NADH to ubiquinone, and consists of at least 43 subunits. The complex is located in the inner mitochondrial membrane. This gene encodes the 24 kDa subunit of complex I, and is involved in electron transfer. Mutations in this gene are implicated in Parkinson’s disease, bipolar disorder, schizophrenia, and have been found in one case of early onset hypertrophic cardiomyopathy and encephalopathy. A non-transcribed pseudogene of this locus is found on chromosome 19. |
| NA | ENSG00000101745 | ANKRD12 | ankyrin repeat domain 12 | 23253 | This gene encodes a member of the ankyrin repeats-containing cofactor family. These proteins may inhibit the transcriptional activity of nuclear receptors through the recruitment of histone deacetylases. The encoded protein interacts with p160 coactivators and also represses transcription mediated by the coactivator alteration/deficiency in activation 3 (ADA3). Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000128791 | TWSG1 | twisted gastrulation BMP signaling modulator 1 | 57045 | NA |
| NA | ENSG00000154845 | PPP4R1 | protein phosphatase 4 regulatory subunit 1 | 9989 | This gene encodes one of several alternate regulatory subunits of serine/threonine protein phosphatase 4 (PP4). The protein features multiple HEAT repeats. This protein forms a complex with PP4RC. This complex may have a distinct role from other PP4 complexes, including regulation of HDAC3 (Zhang et al., PMID: 15805470). There is also a transcribed pseudogene on chromosome 20. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168461 | RAB31 | RAB31, member RAS oncogene family | 11031 | Small GTP-binding proteins of the RAB family, such as RAB31, play essential roles in vesicle and granule targeting (Bao et al., 2002 [PubMed 11784320]). |
| NA | ENSG00000101558 | VAPA | VAMP associated protein A | 9218 | The protein encoded by this gene is a type IV membrane protein. It is present in the plasma membrane and intracellular vesicles. It may also be associated with the cytoskeleton. This protein may function in vesicle trafficking, membrane fusion, protein complex assembly and cell motility. Alternative splicing occurs at this locus and two transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000154856 | APCDD1 | adenomatosis polyposis coli down-regulated 1 | 147495 | This locus encodes an inhibitor of the Wnt signaling pathway. Mutations at this locus have been associated with hereditary hypotrichosis simplex. Increased expression of this gene may also be associated with colorectal carcinogenesis. |
| NA | ENSG00000134265 | NAPG | NSF attachment protein gamma | 8774 | This gene encodes soluble NSF attachment protein gamma. The soluble NSF attachment proteins (SNAPs) enable N-ethyl-maleimide-sensitive fusion protein (NSF) to bind to target membranes. NSF and SNAPs appear to be general components of the intracellular membrane fusion apparatus, and their action at specific sites of fusion must be controlled by SNAP receptors particular to the membranes being fused. The product of this gene mediates platelet exocytosis and controls the membrane fusion events of this process. |
| NA | ENSG00000154864 | PIEZO2 | piezo type mechanosensitive ion channel component 2 | 63895 | The protein encoded by this gene contains more than thirty transmembrane domains and likely functions as part of mechanically-activated (MA) cation channels. These channels serve to connect mechanical forces to biological signals. The encoded protein quickly adapts MA currents in somatosensory neurons. Defects in this gene are a cause of type 5 distal arthrogryposis. Several alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000141404 | GNAL | G protein subunit alpha L | 2774 | This gene encodes a stimulatory G protein alpha subunit which mediates odorant signaling in the olfactory epithelium. This protein couples dopamine type 1 receptors and adenosine A2A receptors and is widely expressed in the central nervous system. Mutations in this gene have been associated with dystonia 25 and this gene is located in a susceptibility region for bipolar disorder and schizophrenia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000255112 | CHMP1B | charged multivesicular body protein 1B | 57132 | CHMP1B belongs to the chromatin-modifying protein/charged multivesicular body protein (CHMP) family. These proteins are components of ESCRT-III (endosomal sorting complex required for transport III), a complex involved in degradation of surface receptor proteins and formation of endocytic multivesicular bodies (MVBs). Some CHMPs have both nuclear and cytoplasmic/vesicular distributions, and one such CHMP, CHMP1A (MIM 164010), is required for both MVB formation and regulation of cell cycle progression (Tsang et al., 2006 [PubMed 16730941]). |
| NA | ENSG00000154889 | MPPE1 | metallophosphoesterase 1 | 65258 | NA |
| NA | ENSG00000141401 | IMPA2 | inositol(myo)-1(or 4)-monophosphatase 2 | 3613 | This locus encodes an inositol monophosphatase. The encoded protein catalyzes the dephosphoylration of inositol monophosphate and plays an important role in phosphatidylinositol signaling. This locus may be associated with susceptibility to bipolar disorder. |
| NA | ENSG00000181626 | ANKRD62 | ankyrin repeat domain 62 | 342850 | NA |
| NA | ENSG00000176014 | TUBB6 | tubulin beta 6 class V | 84617 | NA |
| NA | ENSG00000141385 | AFG3L2 | AFG3 like matrix AAA peptidase subunit 2 | 10939 | This gene encodes a protein localized in mitochondria and closely related to paraplegin. The paraplegin gene is responsible for an autosomal recessive form of hereditary spastic paraplegia. This gene is a candidate gene for other hereditary spastic paraplegias or neurodegenerative disorders. |
| NA | ENSG00000141391 | PRELID3A | PRELI domain containing 3A | 10650 | NA |
| NA | ENSG00000134278 | SPIRE1 | spire type actin nucleation factor 1 | 56907 | Spire proteins, such as SPIRE1, are highly conserved between species. They belong to the family of Wiskott-Aldrich homology region-2 (WH2) proteins, which are involved in actin organization (Kerkhoff et al., 2001 [PubMed 11747823]). |
| NA | ENSG00000128789 | PSMG2 | proteasome (prosome, macropain) assembly chaperone 2 | 56984 | NA |
| NA | ENSG00000101624 | CEP76 | centrosomal protein 76kDa | 79959 | This gene encodes a centrosomal protein which regulates centriole amplification by limiting centriole duplication to once per cell cycle. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175354 | PTPN2 | protein tyrosine phosphatase, non-receptor type 2 | 5771 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. Members of the PTP family share a highly conserved catalytic motif, which is essential for the catalytic activity. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. Epidermal growth factor receptor and the adaptor protein Shc were reported to be substrates of this PTP, which suggested the roles in growth factor mediated cell signaling. Multiple alternatively spliced transcript variants encoding different isoforms have been found. Two highly related but distinctly processed pseudogenes that localize to chromosomes 1 and 13, respectively, have been reported. |
| NA | ENSG00000085415 | SEH1L | SEH1 like nucleoporin | 81929 | The protein encoded by this gene is part of a nuclear pore complex, Nup107-160. This protein contains WD repeats and shares 34% amino acid identity with yeast Seh1 and 30% identity with yeast Sec13. All constituents of the Nup107-160 complex, including this protein, specifically localize to kinetochores in mitosis. Two alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000177150 | FAM210A | family with sequence similarity 210 member A | 125228 | NA |
| NA | ENSG00000101654 | RNMT | RNA (guanine-7-) methyltransferase | 8731 | NA |
| NA | ENSG00000175322 | ZNF519 | zinc finger protein 519 | 162655 | NA |
| NA | ENSG00000067900 | ROCK1 | Rho associated coiled-coil containing protein kinase 1 | 6093 | This gene encodes a protein serine/threonine kinase that is activated when bound to the GTP-bound form of Rho. The small GTPase Rho regulates formation of focal adhesions and stress fibers of fibroblasts, as well as adhesion and aggregation of platelets and lymphocytes by shuttling between the inactive GDP-bound form and the active GTP-bound form. Rho is also essential in cytokinesis and plays a role in transcriptional activation by serum response factor. This protein, a downstream effector of Rho, phosphorylates and activates LIM kinase, which in turn, phosphorylates cofilin, inhibiting its actin-depolymerizing activity. A pseudogene, related to this gene, is also located on chromosome 18. |
| NA | ENSG00000141446 | ESCO1 | establishment of sister chromatid cohesion N-acetyltransferase 1 | 114799 | ESCO1 belongs to a conserved family of acetyltransferases involved in sister chromatid cohesion (Hou and Zou, 2005 [PubMed 15958495]). |
| NA | ENSG00000167088 | SNRPD1 | small nuclear ribonucleoprotein D1 polypeptide | 6632 | This gene encodes a small nuclear ribonucleoprotein that belongs to the SNRNP core protein family. The protein may act as a charged protein scaffold to promote SNRNP assembly or strengthen SNRNP-SNRNP interactions through nonspecific electrostatic contacts with RNA. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000158201 | ABHD3 | abhydrolase domain containing 3 | 171586 | This gene encodes a protein containing an alpha/beta hydrolase fold, which is a catalytic domain found in a very wide range of enzymes. The function of this protein has not been determined. |
| NA | ENSG00000101773 | RBBP8 | retinoblastoma binding protein 8 | 5932 | The protein encoded by this gene is a ubiquitously expressed nuclear protein. It is found among several proteins that bind directly to retinoblastoma protein, which regulates cell proliferation. This protein complexes with transcriptional co-repressor CTBP. It is also associated with BRCA1 and is thought to modulate the functions of BRCA1 in transcriptional regulation, DNA repair, and/or cell cycle checkpoint control. It is suggested that this gene may itself be a tumor suppressor acting in the same pathway as BRCA1. Three transcript variants encoding two different isoforms have been found for this gene. More transcript variants exist, but their full-length natures have not been determined. |
| NA | ENSG00000134508 | CABLES1 | Cdk5 and Abl enzyme substrate 1 | 91768 | This gene encodes a protein involved in regulation of the cell cycle through interactions with several cyclin-dependent kinases. One study (PMID: 16177568) reported aberrant splicing of transcripts from this gene which results in removal of the cyclin binding domain only in human cancer cells, and reduction in gene expression was shown in colorectal cancers (PMID: 17982127).Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000134490 | TMEM241 | transmembrane protein 241 | 85019 | NA |
| NA | ENSG00000101782 | RIOK3 | RIO kinase 3 | 8780 | This gene was identified by the similarity of its product to the Aspergillus nidulans SUDD protein, an extragenic suppressor of the heat-sensitive bimD6 mutation that fails to attach properly to the spindle microtubules at a restrictive temperature. The specific function of this gene has not yet been determined. |
| NA | ENSG00000141452 | C18orf8 | chromosome 18 open reading frame 8 | 29919 | This gene encodes a colon cancer associated protein. |
| NA | ENSG00000141458 | NPC1 | Niemann-Pick disease, type C1 | 4864 | This gene encodes a large protein that resides in the limiting membrane of endosomes and lysosomes and mediates intracellular cholesterol trafficking via binding of cholesterol to its N-terminal domain. It is predicted to have a cytoplasmic C-terminus, 13 transmembrane domains, and 3 large loops in the lumen of the endosome - the last loop being at the N-terminus. This protein transports low-density lipoproteins to late endosomal/lysosomal compartments where they are hydrolized and released as free cholesterol. Defects in this gene cause Niemann-Pick type C disease, a rare autosomal recessive neurodegenerative disorder characterized by over accumulation of cholesterol and glycosphingolipids in late endosomal/lysosomal compartments. |
| NA | ENSG00000154065 | ANKRD29 | ankyrin repeat domain 29 | 147463 | NA |
| NA | ENSG00000168234 | TTC39C | tetratricopeptide repeat domain 39C | 125488 | NA |
| NA | ENSG00000154040 | CABYR | calcium binding tyrosine phosphorylation regulated | 26256 | To reach fertilization competence, spermatozoa undergo a series of morphological and molecular maturational processes, termed capacitation, involving protein tyrosine phosphorylation and increased intracellular calcium. The protein encoded by this gene localizes to the principal piece of the sperm flagellum in association with the fibrous sheath and exhibits calcium-binding when phosphorylated during capacitation. A pseudogene on chromosome 3 has been identified for this gene. Alternatively spliced transcript variants encoding distinct protein isoforms have been found for this gene. |
| NA | ENSG00000154059 | IMPACT | impact RWD domain protein | 55364 | NA |
| NA | ENSG00000198795 | ZNF521 | zinc finger protein 521 | 25925 | NA |
| NA | ENSG00000141380 | SS18 | synovial sarcoma translocation, chromosome 18 | 6760 | NA |
| NA | ENSG00000154080 | CHST9 | carbohydrate (N-acetylgalactosamine 4-0) sulfotransferase 9 | 83539 | The protein encoded by this gene belongs to the sulfotransferase 2 family. It is localized to the golgi membrane, and catalyzes the transfer of sulfate to position 4 of non-reducing N-acetylgalactosamine (GalNAc) residues in both N-glycans and O-glycans. Sulfate groups on carbohydrates confer highly specific functions to glycoproteins, glycolipids, and proteoglycans, and are critical for cell-cell interaction, signal transduction, and embryonic development. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000170558 | CDH2 | cadherin 2 | 1000 | This gene encodes a classical cadherin and member of the cadherin superfamily. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein is proteolytically processed to generate a calcium-dependent cell adhesion molecule and glycoprotein. This protein plays a role in the establishment of left-right asymmetry, development of the nervous system and the formation of cartilage and bone. |
| NA | ENSG00000134762 | DSC3 | desmocollin 3 | 1825 | The protein encoded by this gene is a calcium-dependent glycoprotein that is a member of the desmocollin subfamily of the cadherin superfamily. These desmosomal family members, along with the desmogleins, are found primarily in epithelial cells where they constitute the adhesive proteins of the desmosome cell-cell junction and are required for cell adhesion and desmosome formation. The desmosomal family members are arranged in two clusters on chromosome 18, occupying less than 650 kb combined. Mutations in this gene are a cause of hypotrichosis and recurrent skin vesicles disorder. The protein can act as an autoantigen in pemphigus diseases, and it is also considered to be a biomarker for some cancers. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000046604 | DSG2 | desmoglein 2 | 1829 | This gene encodes a member of the desmoglein family and cadherin cell adhesion molecule superfamily of proteins. Desmogleins are calcium-binding transmembrane glycoprotein components of desmosomes, cell-cell junctions between epithelial, myocardial, and other cell types. The encoded preproprotein is proteolytically processed to generate the mature glycoprotein. This gene is present in a gene cluster with other desmoglein gene family members on chromosome 18. Mutations in this gene have been associated with arrhythmogenic right ventricular dysplasia, familial, 10. |
| NA | ENSG00000118276 | B4GALT6 | beta-1,4-galactosyltransferase 6 | 9331 | This gene is one of seven beta-1,4-galactosyltransferase (beta4GalT) genes. They encode type II membrane-bound glycoproteins that appear to have exclusive specificity for the donor substrate UDP-galactose; all transfer galactose in a beta1,4 linkage to similar acceptor sugars: GlcNAc, Glc, and Xyl. Each beta4GalT has a distinct function in the biosynthesis of different glycoconjugates and saccharide structures. As type II membrane proteins, they have an N-terminal hydrophobic signal sequence that directs the protein to the Golgi apparatus and which then remains uncleaved to function as a transmembrane anchor. By sequence similarity, the beta4GalTs form four groups: beta4GalT1 and beta4GalT2, beta4GalT3 and beta4GalT4, beta4GalT5 and beta4GalT6, and beta4GalT7. The enzyme encoded by this gene is a lactosylceramide synthase important for glycolipid biosynthesis. |
| NA | ENSG00000153339 | TRAPPC8 | trafficking protein particle complex 8 | 22878 | NA |
| NA | ENSG00000101695 | RNF125 | ring finger protein 125, E3 ubiquitin protein ligase | 54941 | This gene encodes a novel E3 ubiquitin ligase that contains a RING finger domain in the N-terminus and three zinc-binding and one ubiquitin-interacting motif in the C-terminus. As a result of myristoylation, this protein associates with membranes and is primarily localized to intracellular membrane systems. The encoded protein may function as a positive regulator in the T-cell receptor signaling pathway. |
| NA | ENSG00000134758 | RNF138 | ring finger protein 138, E3 ubiquitin protein ligase | 51444 | The protein encoded by this gene contains a RING finger, a motif present in a variety of functionally distinct proteins and known to be involved in protein-DNA and protein-protein interactions. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000197705 | KLHL14 | kelch like family member 14 | 57565 | The protein encoded by this gene is a member of the Kelch-like gene family, whose members contain a BTB/POZ domain, a BACK domain, and several Kelch domains. The encoded protein possesses six Kelch domains and localizes to the endoplasmic reticulum, where it interacts with torsin-1A. |
| NA | ENSG00000134769 | DTNA | dystrobrevin alpha | 1837 | The protein encoded by this gene belongs to the dystrobrevin subfamily of the dystrophin family. This protein is a component of the dystrophin-associated protein complex (DPC), which consists of dystrophin and several integral and peripheral membrane proteins, including dystroglycans, sarcoglycans, syntrophins and alpha- and beta-dystrobrevin. The DPC localizes to the sarcolemma and its disruption is associated with various forms of muscular dystrophy. Mutations in this gene are associated with left ventricular noncompaction with congenital heart defects. Multiple alternatively spliced transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000166974 | MAPRE2 | microtubule associated protein RP/EB family member 2 | 10982 | The protein encoded by this gene shares significant homology to the adenomatous polyposis coli (APC) protein-binding EB1 gene family. This protein is a microtubule-associated protein that is necessary for spindle symmetry during mitosis. It is thought to play a role in the tumorigenesis of colorectal cancers and the proliferative control of normal cells. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000186812 | ZNF397 | zinc finger protein 397 | 84307 | This gene encodes a protein with a N-terminal SCAN domain, and the longer isoform contains nine C2H2-type zinc finger repeats in the C-terminal domain. The protein localizes to centromeres during interphase and early prophase, and different isoforms can repress or activate transcription in transfection studies. Multiple transcript variants encoding different isoforms have been found for this gene. Additional variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000186814 | ZSCAN30 | zinc finger and SCAN domain containing 30 | 100101467 | NA |
| NA | ENSG00000172466 | ZNF24 | zinc finger protein 24 | 7572 | NA |
| NA | ENSG00000153391 | INO80C | INO80 complex subunit C | 125476 | NA |
| NA | ENSG00000141429 | GALNT1 | polypeptide N-acetylgalactosaminyltransferase 1 | 2589 | This gene encodes a member of the UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase (GalNAc-T) family of enzymes. GalNAc-Ts initiate mucin-type O-linked glycosylation in the Golgi apparatus by catalyzing the transfer of GalNAc to serine and threonine residues on target proteins. They are characterized by an N-terminal transmembrane domain, a stem region, a lumenal catalytic domain containing a GT1 motif and Gal/GalNAc transferase motif, and a C-terminal ricin/lectin-like domain. GalNAc-Ts have different, but overlapping, substrate specificities and patterns of expression. Transcript variants derived from this gene that utilize alternative polyA signals have been described in the literature. |
| NA | ENSG00000141428 | C18orf21 | chromosome 18 open reading frame 21 | 83608 | NA |
| NA | ENSG00000141424 | SLC39A6 | solute carrier family 39 member 6 | 25800 | Zinc is an essential cofactor for hundreds of enzymes. It is involved in protein, nucleic acid, carbohydrate, and lipid metabolism, as well as in the control of gene transcription, growth, development, and differentiation. SLC39A6 belongs to a subfamily of proteins that show structural characteristics of zinc transporters (Taylor and Nicholson, 2003 [PubMed 12659941]). |
| NA | ENSG00000134759 | ELP2 | elongator acetyltransferase complex subunit 2 | 55250 | NA |
| NA | ENSG00000075643 | MOCOS | molybdenum cofactor sulfurase | 55034 | MOCOS sulfurates the molybdenum cofactor of xanthine dehydrogenase (XDH; MIM 607633) and aldehyde oxidase (AOX1; MIM 602841), which is required for their enzymatic activities (Ichida et al., 2001 [PubMed 11302742]). |
| NA | ENSG00000134775 | FHOD3 | formin homology 2 domain containing 3 | 80206 | The protein encoded by this gene is a member of the diaphanous-related formins (DRF), and contains multiple domains, including GBD (GTPase-binding domain), DID (diaphanous inhibitory domain), FH1 (formin homology 1), FH2 (formin homology 2), and DAD (diaphanous auto-regulatory domain) domains. This protein is thought to play a role in actin filament polymerization in cardiomyocytes. Mutations in this gene have been associated with dilated cardiomyopathy (DCM), characterized by dilation of the ventricular chamber, leading to impairment of systolic pump function and subsequent heart failure. Increased levels of the protein encoded by this gene have been observed in individuals with hypertrophic cardiomyopathy (HCM). Alternative splicing results in multiple transcript variants encoding different isoforms. A muscle-specific isoform has been shown to possess a casein kinase 2 (CK2) phosphorylation site at the C-terminal end of the FH2 domain. Phosphorylation of this site alters its interaction with sequestosome 1 (SQSTM1), and targets this isoform to myofibrils, while other isoforms form cytoplasmic aggregates. |
| NA | ENSG00000150477 | KIAA1328 | KIAA1328 | 57536 | NA |
| NA | ENSG00000101489 | CELF4 | CUGBP, Elav-like family member 4 | 56853 | Members of the CELF/BRUNOL protein family contain two N-terminal RNA recognition motif (RRM) domains, one C-terminal RRM domain, and a divergent segment of 160-230 aa between the second and third RRM domains. Members of this protein family regulate pre-mRNA alternative splicing and may also be involved in mRNA editing, and translation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000078142 | PIK3C3 | phosphatidylinositol 3-kinase catalytic subunit type 3 | 5289 | NA |
| NA | ENSG00000132872 | SYT4 | synaptotagmin 4 | 6860 | NA |
| NA | ENSG00000152217 | SETBP1 | SET binding protein 1 | 26040 | This gene encodes a protein which contains a several motifs including a ski homology region and a SET-binding region in addition to three nuclear localization signals. The encoded protein has been shown to bind the SET nuclear oncogene which is involved in DNA replication. Mutations in this gene are associated with Schinzel-Giedion midface retraction syndrome. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000152223 | EPG5 | ectopic P-granules autophagy protein 5 homolog (C. elegans) | 57724 | This gene encodes a large coiled coil domain-containing protein that functions in autophagy during starvation conditions. Mutations in this gene cause Vici syndrome. |
| NA | ENSG00000152234 | ATP5A1 | ATP synthase, H+ transporting, mitochondrial F1 complex, alpha subunit 1, cardiac muscle | 498 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, using an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. The catalytic portion of mitochondrial ATP synthase consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and a single representative of the other 3. The proton channel consists of three main subunits (a, b, c). This gene encodes the alpha subunit of the catalytic core. Alternatively spliced transcript variants encoding the different isoforms have been identified. Pseudogenes of this gene are located on chromosomes 9, 2, and 16. |
| NA | ENSG00000152240 | HAUS1 | HAUS augmin like complex subunit 1 | 115106 | HAUS1 is 1 of 8 subunits of the 390-kD human augmin complex, or HAUS complex. The augmin complex was first identified in Drosophila, and its name comes from the Latin verb ‘augmentare,’ meaning ‘to increase.’ The augmin complex is a microtubule-binding complex involved in microtubule generation within the mitotic spindle and is vital to mitotic spindle assembly (Goshima et al., 2008 [PubMed 18443220]; Uehara et al., 2009 [PubMed 19369198]). |
| NA | ENSG00000152242 | C18orf25 | chromosome 18 open reading frame 25 | 147339 | NA |
| NA | ENSG00000141622 | RNF165 | ring finger protein 165 | 494470 | Encoded in regions involved in pericentric inversions in patients with bipolar affective disorder. |
| NA | ENSG00000078043 | PIAS2 | protein inhibitor of activated STAT 2 | 9063 | This gene encodes a member of the protein inhibitor of activated STAT (PIAS) family. PIAS proteins function as SUMO E3 ligases and play important roles in many cellular processes by mediating the sumoylation of target proteins. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. Isoforms of the encoded protein enhance the sumoylation of specific target proteins including the p53 tumor suppressor protein, c-Jun, and the androgen receptor. A pseudogene of this gene is located on the short arm of chromosome 4. The symbol MIZ1 has also been associated with ZBTB17 which is a different gene located on chromosome 1. |
| NA | ENSG00000167216 | KATNAL2 | katanin catalytic subunit A1 like 2 | 83473 | NA |
| NA | ENSG00000134049 | IER3IP1 | immediate early response 3 interacting protein 1 | 51124 | This gene encodes a small protein that is localized to the endoplasmic reticulum (ER) and may play a role in the ER stress response by mediating cell differentiation and apoptosis. Transcription of this gene is regulated by tumor necrosis factor alpha and specificity protein 1 (Sp1). Mutations in this gene may play a role in microcephaly, epilepsy, and diabetes syndrome (MEDS), and a pseudogene of this gene is located on the long arm of chromosome 12. |
| NA | ENSG00000175387 | SMAD2 | SMAD family member 2 | 4087 | The protein encoded by this gene belongs to the SMAD, a family of proteins similar to the gene products of the Drosophila gene ‘mothers against decapentaplegic’ (Mad) and the C. elegans gene Sma. SMAD proteins are signal transducers and transcriptional modulators that mediate multiple signaling pathways. This protein mediates the signal of the transforming growth factor (TGF)-beta, and thus regulates multiple cellular processes, such as cell proliferation, apoptosis, and differentiation. This protein is recruited to the TGF-beta receptors through its interaction with the SMAD anchor for receptor activation (SARA) protein. In response to TGF-beta signal, this protein is phosphorylated by the TGF-beta receptors. The phosphorylation induces the dissociation of this protein with SARA and the association with the family member SMAD4. The association with SMAD4 is important for the translocation of this protein into the nucleus, where it binds to target promoters and forms a transcription repressor complex with other cofactors. This protein can also be phosphorylated by activin type 1 receptor kinase, and mediates the signal from the activin. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000134030 | CTIF | CBP80/20-dependent translation initiation factor | 9811 | CTIF is a component of the CBP80 (NCBP1; MIM 600469)/CBP20 (NCBP2; MIM 605133) translation initiation complex that binds cotranscriptionally to the cap end of nascent mRNA. The CBP80/CBP20 complex is involved in a simultaneous editing and translation step that recognizes premature termination codons (PTCs) in mRNAs and directs PTC-containing mRNAs toward nonsense-mediated decay (NMD). On mRNAs without PTCs, the CBP80/CBP20 complex is replaced with cytoplasmic mRNA cap-binding proteins, including EIF4G (MIM 600495), and steady-state translation of the mRNAs resumes in the cytoplasm (Kim et al., 2009 [PubMed 19648179]). |
| NA | ENSG00000101665 | SMAD7 | SMAD family member 7 | 4092 | The protein encoded by this gene is a nuclear protein that binds the E3 ubiquitin ligase SMURF2. Upon binding, this complex translocates to the cytoplasm, where it interacts with TGF-beta receptor type-1 (TGFBR1), leading to the degradation of both the encoded protein and TGFBR1. Expression of this gene is induced by TGFBR1. Variations in this gene are a cause of susceptibility to colorectal cancer type 3 (CRCS3). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000141627 | DYM | dymeclin | 54808 | This gene encodes a protein which is necessary for normal skeletal development and brain function. Mutations in this gene are associated with two types of recessive osteochondrodysplasia, Dyggve-Melchior-Clausen (DMC) dysplasia and Smith-McCort (SMC) dysplasia, which involve both skeletal defects and mental retardation. |
| NA | ENSG00000177576 | C18orf32 | chromosome 18 open reading frame 32 | 497661 | NA |
| NA | ENSG00000265681 | RPL17 | ribosomal protein L17 | 6139 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L22P family of ribosomal proteins. It is located in the cytoplasm. This gene has been referred to as rpL23 because the encoded protein shares amino acid identity with ribosomal protein L23 from Halobacterium marismortui; however, its official symbol is RPL17. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the neighboring downstream C18orf32 (chromosome 18 open reading frame 32) gene. |
| NA | ENSG00000101670 | LIPG | lipase G, endothelial type | 9388 | The protein encoded by this gene has substantial phospholipase activity and may be involved in lipoprotein metabolism and vascular biology. This protein is designated a member of the TG lipase family by its sequence and characteristic lid region which provides substrate specificity for enzymes of the TG lipase family. |
| NA | ENSG00000167315 | ACAA2 | acetyl-CoA acyltransferase 2 | 10449 | The encoded protein catalyzes the last step of the mitochondrial fatty acid beta-oxidation spiral. Unlike most mitochondrial matrix proteins, it contains a non-cleavable amino-terminal targeting signal. |
| NA | ENSG00000167306 | MYO5B | myosin VB | 4645 | The protein encoded by this gene, together with other proteins, may be involved in plasma membrane recycling. Mutations in this gene are associated with microvillous inclusion disease. |
| NA | ENSG00000141644 | MBD1 | methyl-CpG binding domain protein 1 | 4152 | The protein encoded by this gene is a member of a family of nuclear proteins related by the presence of a methyl-CpG binding domain (MBD). These proteins are capable of binding specifically to methylated DNA, and some members can also repress transcription from methylated gene promoters. This protein contains multiple domains: MBD at the N-terminus that functions both in binding to methylated DNA and in protein interactions; several CXXC-type zinc finger domains that mediate binding to non-methylated CpG dinucleotides; transcriptional repression domain (TRD) at the C-terminus that is involved in transcription repression and in protein interactions. Numerous alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000154832 | CXXC1 | CXXC finger protein 1 | 30827 | This gene encodes a protein that functions as a transcriptional activator that binds specifically to non-methylated CpG motifs through its CXXC domain. The protein is a component of the SETD1 complex, regulates gene expression and is essential for vertebrate development. |
| NA | ENSG00000154839 | SKA1 | spindle and kinetochore associated complex subunit 1 | 220134 | NA |
| NA | ENSG00000141639 | MAPK4 | mitogen-activated protein kinase 4 | 5596 | Mitogen-activated protein kinase 4 is a member of the mitogen-activated protein kinase family. Tyrosine kinase growth factor receptors activate mitogen-activated protein kinases which then translocate into the nucleus and phosphorylate nuclear targets. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000082212 | ME2 | malic enzyme 2, NAD(+)-dependent, mitochondrial | 4200 | This gene encodes a mitochondrial NAD-dependent malic enzyme, a homotetrameric protein, that catalyzes the oxidative decarboxylation of malate to pyruvate. It had previously been weakly linked to a syndrome known as Friedreich ataxia that has since been shown to be the result of mutation in a completely different gene. Certain single-nucleotide polymorphism haplotypes of this gene have been shown to increase the risk for idiopathic generalized epilepsy. Alternatively spliced transcript variants encoding different isoforms found for this gene. |
| NA | ENSG00000141642 | ELAC1 | elaC ribonuclease Z 1 | 55520 | NA |
| NA | ENSG00000176624 | MEX3C | mex-3 RNA binding family member C | 51320 | This gene encodes a member of a family of proteins with two K homology (KH) RNA-binding domains and a C-terminal RING-finger domain. The protein interacts with mRNA via the KH domains, and the protein shuttles between the nucleus and cytoplasm. Polymorphisms in this gene may contribute to hypertension. |
| NA | ENSG00000134046 | MBD2 | methyl-CpG binding domain protein 2 | 8932 | DNA methylation is the major modification of eukaryotic genomes and plays an essential role in mammalian development. Human proteins MECP2, MBD1, MBD2, MBD3, and MBD4 comprise a family of nuclear proteins related by the presence in each of a methyl-CpG binding domain (MBD). Each of these proteins, with the exception of MBD3, is capable of binding specifically to methylated DNA. MECP2, MBD1 and MBD2 can also repress transcription from methylated gene promoters. The protein encoded by this gene may function as a mediator of the biological consequences of the methylation signal. It is also reported that the this protein functions as a demethylase to activate transcription, as DNA methylation causes gene silencing. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000196628 | TCF4 | transcription factor 4 | 6925 | This gene encodes transcription factor 4, a basic helix-loop-helix transcription factor. The encoded protein recognizes an Ephrussi-box (‘E-box’) binding site (‘CANNTG’) - a motif first identified in immunoglobulin enhancers. This gene is broadly expressed, and may play an important role in nervous system development. Defects in this gene are a cause of Pitt-Hopkins syndrome. Multiple alternatively spliced transcript variants that encode different proteins have been described. |
| NA | ENSG00000091164 | TXNL1 | thioredoxin like 1 | 9352 | NA |
| NA | ENSG00000091157 | WDR7 | WD repeat domain 7 | 23335 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD) that may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. The encoded protein forms the beta subunit of rabconnectin-3 and binds directly with Rab3A GDP/GTP exchange protein and indirectly with Rab3A GDP/GTP activating protein; these proteins are regulators of Rab3 small G protein family members involved in control of the calcium-dependant exocytosis of neurotransmitters. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000228075 | BOD1L2 | biorientation of chromosomes in cell division 1 like 2 | 284257 | NA |
| NA | ENSG00000177511 | ST8SIA3 | ST8 alpha-N-acetylneuraminate alpha-2,8-sialyltransferase 3 | 51046 | ST8SIA3 belongs to a family of sialyltransferases that form sialyl-alpha-2,8-sialyl-R linkages at the nonreducing termini of glycoconjugates (Lee et al., 1998 [PubMed 9826427]). |
| NA | ENSG00000119547 | ONECUT2 | one cut homeobox 2 | 9480 | This gene encodes a member of the onecut family of transcription factors, which are characterized by a cut domain and an atypical homeodomain. The protein binds to specific DNA sequences and stimulates expression of target genes, including genes involved in melanocyte and hepatocyte differentiation. |
| NA | ENSG00000066926 | FECH | ferrochelatase | 2235 | The protein encoded by this gene is localized to the mitochondrion, where it catalyzes the insertion of the ferrous form of iron into protoporphyrin IX in the heme synthesis pathway. Mutations in this gene are associated with erythropoietic protoporphyria. Two transcript variants encoding different isoforms have been found for this gene. A pseudogene of this gene is found on chromosome 3. |
| NA | ENSG00000134440 | NARS | asparaginyl-tRNA synthetase | 4677 | Aminoacyl-tRNA synthetases are a class of enzymes that charge tRNAs with their cognate amino acids. Asparaginyl-tRNA synthetase is localized to the cytoplasm and belongs to the class II family of tRNA synthetases. The N-terminal domain represents the signature sequence for the eukaryotic asparaginyl-tRNA synthetases. |
| NA | ENSG00000049759 | NEDD4L | neural precursor cell expressed, developmentally down-regulated 4-like, E3 ubiquitin protein ligase | 23327 | This gene encodes a member of the Nedd4 family of HECT domain E3 ubiquitin ligases. HECT domain E3 ubiquitin ligases transfer ubiquitin from E2 ubiquitin-conjugating enzymes to protein substrates, thus targeting specific proteins for lysosomal degradation. The encoded protein mediates the ubiquitination of multiple target substrates and plays a critical role in epithelial sodium transport by regulating the cell surface expression of the epithelial sodium channel, ENaC. Single nucleotide polymorphisms in this gene may be associated with essential hypertension. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000172175 | MALT1 | MALT1 paracaspase | 10892 | This gene has been found to be recurrently rearranged in chromosomal translocation with two other genes - baculoviral IAP repeat-containing protein 3 (also known as apoptosis inhibitor 2) and immunoglobulin heavy chain locus - in mucosa-associated lymphoid tissue lymphomas. The protein encoded by this gene may play a role in NF-kappaB activation. Two alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000074657 | ZNF532 | zinc finger protein 532 | 55205 | NA |
| NA | ENSG00000166562 | SEC11C | SEC11 homolog C, signal peptidase complex subunit | 90701 | NA |
| NA | ENSG00000074695 | LMAN1 | lectin, mannose binding 1 | 3998 | The protein encoded by this gene is a membrane mannose-specific lectin that cycles between the endoplasmic reticulum, endoplasmic reticulum-Golgi intermediate compartment, and cis-Golgi, functioning as a cargo receptor for glycoprotein transport. The protein has an N-terminal signal sequence, a calcium-dependent and pH-sensitive carbohydrate recognition domain, a stalk region that functions in oligomerization, a transmembrane domain, and a short cytoplasmic domain required for organelle targeting. Allelic variants of this gene are associated with the autosomal recessive disorder combined factor V-factor VIII deficiency. |
| NA | ENSG00000183287 | CCBE1 | collagen and calcium binding EGF domains 1 | 147372 | This gene is thought to function in extracellular matrix remodeling and migration. It is predominantly expressed in the ovary, but down regulated in ovarian cancer cell lines and primary carcinomas, suggesting its role as a tumour suppressor. Mutations in this gene have been associated with Hennekam lymphangiectasia-lymphedema syndrome, a generalized lymphatic dysplasia in humans. |
| NA | ENSG00000141682 | PMAIP1 | phorbol-12-myristate-13-acetate-induced protein 1 | 5366 | NA |
| NA | ENSG00000197563 | PIGN | phosphatidylinositol glycan anchor biosynthesis class N | 23556 | This gene encodes a protein that is involved in glycosylphosphatidylinositol (GPI)-anchor biosynthesis. The GPI-anchor is a glycolipid found on many blood cells and serves to anchor proteins to the cell surface. This protein is expressed in the endoplasmic reticulum and transfers phosphoethanolamine (EtNP) to the first mannose of the GPI anchor. Two alternatively spliced variants, which encode an identical isoform, have been reported. |
| NA | ENSG00000134444 | KIAA1468 | KIAA1468 | 57614 | NA |
| NA | ENSG00000141655 | TNFRSF11A | tumor necrosis factor receptor superfamily member 11a | 8792 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This receptors can interact with various TRAF family proteins, through which this receptor induces the activation of NF-kappa B and MAPK8/JNK. This receptor and its ligand are important regulators of the interaction between T cells and dendritic cells. This receptor is also an essential mediator for osteoclast and lymph node development. Mutations at this locus have been associated with familial expansile osteolysis, autosomal recessive osteopetrosis, and Paget disease of bone. Alternatively spliced transcript variants have been described for this locus. |
| NA | ENSG00000141664 | ZCCHC2 | zinc finger CCHC-type containing 2 | 54877 | NA |
| NA | ENSG00000081913 | PHLPP1 | PH domain and leucine rich repeat protein phosphatase 1 | 23239 | This gene encodes a member of the serine/threonine phosphatase family. The encoded protein promotes apoptosis by dephosphorylating and inactivating the serine/threonine kinase Akt, and functions as a tumor suppressor in multiple types of cancer. Increased expression of this gene may also play a role in obesity and type 2 diabetes by interfering with Akt-mediated insulin signaling. |
| NA | ENSG00000119537 | KDSR | 3-ketodihydrosphingosine reductase | 2531 | The protein encoded by this gene catalyzes the reduction of 3-ketodihydrosphingosine to dihydrosphingosine. The putative active site residues of the encoded protein are found on the cytosolic side of the endoplasmic reticulum membrane. A chromosomal rearrangement involving this gene is a cause of follicular lymphoma, also known as type II chronic lymphatic leukemia. The mutation of a conserved residue in the bovine ortholog causes spinal muscular atrophy. |
| NA | ENSG00000119541 | VPS4B | vacuolar protein sorting 4 homolog B (S. cerevisiae) | 9525 | The protein encoded by this gene is a member of the AAA protein family (ATPases associated with diverse cellular activities), and is the homolog of the yeast Vps4 protein. In humans, two paralogs of the yeast protein have been identified. The former share a high degree of aa sequence similarity with each other, and also with yeast Vps4 and mouse Skd1 proteins. Mouse Skd1 (suppressor of K+ transport defect 1) has been shown to be a yeast Vps4 ortholog. Functional studies indicate that both human paralogs associate with the endosomal compartments, and are involved in intracellular protein trafficking, similar to Vps4 protein in yeast. The gene encoding this paralog has been mapped to chromosome 18; the gene for the other resides on chromosome 16. |
| NA | ENSG00000221887 | HMSD | histocompatibility (minor) serpin domain containing | 284293 | This gene encodes a serpin-domain containing protein that may function as a serine protease inhibitor. This gene is primarily expressed in cells of myeloid lineage. A polymorphism in this gene may result in the expression a splice variant that encodes a minor histocompatibility antigen. |
| NA | ENSG00000166401 | SERPINB8 | serpin peptidase inhibitor, clade B (ovalbumin), member 8 | 5271 | The superfamily of high molecular weight serine proteinase inhibitors (serpins) regulate a diverse set of intracellular and extracellular processes such as complement activation, fibrinolysis, coagulation, cellular differentiation, tumor suppression, apoptosis, and cell migration. Serpins are characterized by well-conserved a tertiary structure that consists of 3 beta sheets and 8 or 9 alpha helices (Huber and Carrell, 1989 [PubMed 2690952]). A critical portion of the molecule, the reactive center loop connects beta sheets A and C. Protease inhibitor-8 (PI8; SERPINB8) is a member of the ov-serpin subfamily, which, relative to the archetypal serpin PI1 (MIM 107400), is characterized by a high degree of homology to chicken ovalbumin, lack of N- and C-terminal extensions, absence of a signal peptide, and a serine rather than an asparagine residue at the penultimate position (summary by Bartuski et al., 1997 [PubMed 9268635]). |
| NA | ENSG00000081138 | CDH7 | cadherin 7 | 1005 | This gene encodes a type II classical cadherin of the cadherin superfamily. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate the mature glycoprotein. This calcium dependent cell-cell adhesion molecule is comprised of five extracellular cadherin repeats, a transmembrane region and a highly conserved cytoplasmic tail. Type II (atypical) cadherins are defined based on their lack of a histidine-alanine-valine (HAV) cell adhesion recognition sequence specific to type I cadherins. Cadherins mediate cell-cell binding in a homophilic manner, contributing to the sorting of heterogeneous cell types. Mutations in this gene may be associated with multiple psychiatric disorders and play a causal role in CHARGE syndrome in human patients. This gene is present in a gene cluster on chromosome 18. |
| NA | ENSG00000171451 | DSEL | dermatan sulfate epimerase-like | 92126 | NA |
| NA | ENSG00000166479 | TMX3 | thioredoxin related transmembrane protein 3 | 54495 | NA |
| NA | ENSG00000150636 | CCDC102B | coiled-coil domain containing 102B | 79839 | NA |
| NA | ENSG00000176225 | RTTN | rotatin | 25914 | This gene encodes a large protein whose specific function is unknown. Absence of the orthologous protein in mouse results in embryonic lethality with deficient axial rotation, abnormal differentiation of the neural tube, and randomized looping of the heart tube during development. In human, mutations in this gene are associated with polymicrogyria with seizures. In human fibroblasts this protein localizes at the ciliary basal bodies. Given the intracellular localization of this protein and the phenotypic effects of mutations, this gene is suspected of playing a role in the maintenance of normal ciliary structure which in turn effects the developmental process of left-right organ specification, axial rotation, and perhaps notochord development. |
| NA | ENSG00000170677 | SOCS6 | suppressor of cytokine signaling 6 | 9306 | The protein encoded by this gene contains a SH2 domain and a CIS homolog domain. The protein thus belongs to the cytokine-induced STAT inhibitor (CIS), also known as suppressor of cytokine signaling (SOCS) or STAT-induced STAT inhibitor (SSI), protein family. CIS family members are known to be cytokine-inducible negative regulators of cytokine signaling. The expression of this gene can be induced by GM-CSF and EPO in hematopoietic cells. A high expression level of this gene was found in factor-independent chronic myelogenous leukemia (CML) and erythroleukemia (HEL) cell lines. |
| NA | ENSG00000166342 | NETO1 | neuropilin and tolloid like 1 | 81832 | This gene encodes a predicted transmembrane protein containing two extracellular CUB domains followed by a low-density lipoprotein class A (LDLa) domain. A similar gene in mice encodes a protein that plays a critical role in spatial learning and memory by regulating the function of synaptic N-methyl-D-aspartic acid receptor complexes in the hippocampus. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000166347 | CYB5A | cytochrome b5 type A (microsomal) | 1528 | The protein encoded by this gene is a membrane-bound cytochrome that reduces ferric hemoglobin (methemoglobin) to ferrous hemoglobin, which is required for stearyl-CoA-desaturase activity. Defects in this gene are a cause of type IV hereditary methemoglobinemia. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000133313 | CNDP2 | CNDP dipeptidase 2 (metallopeptidase M20 family) | 55748 | CNDP2, also known as tissue carnosinase and peptidase A (EC 3.4.13.18), is a nonspecific dipeptidase rather than a selective carnosinase (Teufel et al., 2003 [PubMed 12473676]). |
| NA | ENSG00000215421 | ZNF407 | zinc finger protein 407 | 55628 | This gene encodes a zinc finger protein whose exact function is not known. It may be involved in transcriptional regulation. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000180011 | ZADH2 | zinc binding alcohol dehydrogenase domain containing 2 | 284273 | NA |
| NA | ENSG00000101493 | ZNF516 | zinc finger protein 516 | 9658 | Zinc-finger proteins bind nucleic acids and play important roles in various cellular functions, including cell proliferation, differentiation, and apoptosis. This gene encodes a zinc-finger protein, and belongs to the krueppel C2H2-type zinc-finger protein family. It may be involved in transcriptional regulation. |
| NA | ENSG00000130856 | ZNF236 | zinc finger protein 236 | 7776 | NA |
| NA | ENSG00000197971 | MBP | myelin basic protein | 4155 | The protein encoded by the classic MBP gene is a major constituent of the myelin sheath of oligodendrocytes and Schwann cells in the nervous system. However, MBP-related transcripts are also present in the bone marrow and the immune system. These mRNAs arise from the long MBP gene (otherwise called ‘Golli-MBP’) that contains 3 additional exons located upstream of the classic MBP exons. Alternative splicing from the Golli and the MBP transcription start sites gives rise to 2 sets of MBP-related transcripts and gene products. The Golli mRNAs contain 3 exons unique to Golli-MBP, spliced in-frame to 1 or more MBP exons. They encode hybrid proteins that have N-terminal Golli aa sequence linked to MBP aa sequence. The second family of transcripts contain only MBP exons and produce the well characterized myelin basic proteins. This complex gene structure is conserved among species suggesting that the MBP transcription unit is an integral part of the Golli transcription unit and that this arrangement is important for the function and/or regulation of these genes. |
| NA | ENSG00000256463 | SALL3 | spalt-like transcription factor 3 | 27164 | This gene encodes a sal-like C2H2-type zinc-finger protein, and belongs to a family of evolutionarily conserved genes found in species as diverse as Drosophila, C. elegans, and vertebrates. Mutations in some of these genes are associated with congenital disorders in human, suggesting their importance in embryonic development. This protein binds to DNA methyltransferase 3 alpha (DNMT3A), and reduces DNMT3A-mediated CpG island methylation. It is suggested that silencing of this gene, resulting in acceleration of DNA methylation, may have a role in oncogenesis. |
| NA | ENSG00000166377 | ATP9B | ATPase phospholipid transporting 9B (putative) | 374868 | NA |
| NA | ENSG00000131196 | NFATC1 | nuclear factor of activated T-cells 1 | 4772 | The product of this gene is a component of the nuclear factor of activated T cells DNA-binding transcription complex. This complex consists of at least two components: a preexisting cytosolic component that translocates to the nucleus upon T cell receptor (TCR) stimulation, and an inducible nuclear component. Proteins belonging to this family of transcription factors play a central role in inducible gene transcription during immune response. The product of this gene is an inducible nuclear component. It functions as a major molecular target for the immunosuppressive drugs such as cyclosporin A. Multiple alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene. Different isoforms of this protein may regulate inducible expression of different cytokine genes. |
| NA | ENSG00000060069 | CTDP1 | CTD phosphatase subunit 1 | 9150 | This gene encodes a protein which interacts with the carboxy-terminus of the RAP74 subunit of transcription initiation factor TFIIF, and functions as a phosphatase that processively dephosphorylates the C-terminus of POLR2A (a subunit of RNA polymerase II), making it available for initiation of gene expression. Mutations in this gene are associated with congenital cataracts, facial dysmorphism and neuropathy syndrome (CCFDN). Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000122490 | PQLC1 | PQ loop repeat containing 1 | 80148 | NA |
| NA | ENSG00000141759 | TXNL4A | thioredoxin like 4A | 10907 | The protein encoded by this gene is a member of the U5 small ribonucleoprotein particle (snRNP), and is involved in pre-mRNA splicing. This protein contains a thioredoxin-like fold and it is expected to interact with multiple proteins. Protein-protein interactions have been observed with the polyglutamine tract-binding protein 1 (PQBP1). Mutations in both the coding region and promoter region of this gene have been associated with Burn-McKeown syndrome, which is a rare disorder characterized by craniofacial dysmorphisms, cardiac defects, hearing loss, and bilateral choanal atresia. A pseudogene of this gene is found on chromosome 2. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000101546 | RBFA | ribosome binding factor A (putative) | 79863 | NA |
| NA | ENSG00000178184 | PARD6G | par-6 family cell polarity regulator gamma | 84552 | NA |
| NA | ENSG00000141934 | PLPP2 | phospholipid phosphatase 2 | 8612 | The protein encoded by this gene is a member of the phosphatidic acid phosphatase (PAP) family. PAPs convert phosphatidic acid to diacylglycerol, and function in de novo synthesis of glycerolipids as well as in receptor-activated signal transduction mediated by phospholipase D. This protein is similar to phosphatidic acid phosphatase type 2A (PPAP2A) and type 2B (PPAP2B). All three proteins contain 6 transmembrane regions, and a consensus N-glycosylation site. This protein has been shown to possess membrane associated PAP activity. Three alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000105556 | MIER2 | MIER family member 2 | 54531 | NA |
| NA | ENSG00000099804 | CDC34 | cell division cycle 34 | 997 | The protein encoded by this gene is a member of the ubiquitin-conjugating enzyme family. Ubiquitin-conjugating enzyme catalyzes the covalent attachment of ubiquitin to other proteins. This protein is a part of the large multiprotein complex, which is required for ubiquitin-mediated degradation of cell cycle G1 regulators, and for the initiation of DNA replication. |
| NA | ENSG00000172270 | BSG | basigin (Ok blood group) | 682 | The protein encoded by this gene is a plasma membrane protein that is important in spermatogenesis, embryo implantation, neural network formation, and tumor progression. The encoded protein is also a member of the immunoglobulin superfamily. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000099821 | POLRMT | polymerase (RNA) mitochondrial | 5442 | This gene encodes a mitochondrial DNA-directed RNA polymerase. The gene product is responsible for mitochondrial gene expression as well as for providing RNA primers for initiation of replication of the mitochondrial genome. Although this polypeptide has the same function as the three nuclear DNA-directed RNA polymerases, it is more closely related to RNA polymerases of phage and mitochondrial polymerases of lower eukaryotes. |
| NA | ENSG00000070423 | RNF126 | ring finger protein 126 | 55658 | The protein encoded by this gene contains a RING finger domain, a motif present in a variety of functionally distinct proteins and known to be involved in protein-protein and protein-DNA interactions. |
| NA | ENSG00000070404 | FSTL3 | follistatin like 3 | 10272 | Follistatin-like 3 is a secreted glycoprotein of the follistatin-module-protein family. It may have a role in leukemogenesis. |
| NA | ENSG00000011304 | PTBP1 | polypyrimidine tract binding protein 1 | 5725 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA-binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has four repeats of quasi-RNA recognition motif (RRM) domains that bind RNAs. This protein binds to the intronic polypyrimidine tracts that requires pre-mRNA splicing and acts via the protein degradation ubiquitin-proteasome pathway. It may also promote the binding of U2 snRNP to pre-mRNAs. This protein is localized in the nucleoplasm and it is also detected in the perinucleolar structure. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000129951 | PLPPR3 | phospholipid phosphatase related 3 | 79948 | The proteins in the lipid phosphate phosphatase (LPP) family, including PRG2, are integral membrane proteins that modulate bioactive lipid phosphates including phosphatidate, lysophosphatidate, and sphingosine-1-phosphate in the context of cell migration, neurite retraction, and mitogenesis (Brauer et al., 2003 [PubMed 12730698]). |
| NA | ENSG00000175221 | MED16 | mediator complex subunit 16 | 10025 | NA |
| NA | ENSG00000198858 | R3HDM4 | R3H domain containing 4 | 91300 | NA |
| NA | ENSG00000116014 | KISS1R | KISS1 receptor | 84634 | The protein encoded by this gene is a galanin-like G protein-coupled receptor that binds metastin, a peptide encoded by the metastasis suppressor gene KISS1. The tissue distribution of the expressed gene suggests that it is involved in the regulation of endocrine function, and this is supported by the finding that this gene appears to play a role in the onset of puberty. Mutations in this gene have been associated with hypogonadotropic hypogonadism and central precocious puberty. |
| NA | ENSG00000116017 | ARID3A | AT-rich interaction domain 3A | 1820 | This gene encodes a member of the ARID (AT-rich interaction domain) family of DNA binding proteins. It was found by homology to the Drosophila dead ringer gene, which is important for normal embryogenesis. Other ARID family members have roles in embryonic patterning, cell lineage gene regulation, cell cycle control, transcriptional regulation, and possibly in chromatin structure modification. |
| NA | ENSG00000065268 | WDR18 | WD repeat domain 18 | 57418 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. |
| NA | ENSG00000182087 | TMEM259 | transmembrane protein 259 | 91304 | NA |
| NA | ENSG00000064666 | CNN2 | calponin 2 | 1265 | The protein encoded by this gene, which can bind actin, calmodulin, troponin C, and tropomyosin, may function in the structural organization of actin filaments. The encoded protein could play a role in smooth muscle contraction and cell adhesion. Several pseudogenes of this gene have been identified, and are present on chromosomes 1, 2, 3, 6, 9, 11, 13, 15, 16, 21 and 22. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000064687 | ABCA7 | ATP binding cassette subfamily A member 7 | 10347 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the ABC1 subfamily. Members of the ABC1 subfamily comprise the only major ABC subfamily found exclusively in multicellular eukaryotes. This full transporter has been detected predominantly in myelo-lymphatic tissues with the highest expression in peripheral leukocytes, thymus, spleen, and bone marrow. The function of this protein is not yet known; however, the expression pattern suggests a role in lipid homeostasis in cells of the immune system. |
| NA | ENSG00000180448 | HMHA1 | histocompatibility (minor) HA-1 | 23526 | NA |
| NA | ENSG00000099817 | POLR2E | polymerase (RNA) II subunit E | 5434 | This gene encodes the fifth largest subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. This subunit is shared by the other two DNA-directed RNA polymerases and is present in two-fold molar excess over the other polymerase subunits. An interaction between this subunit and a hepatitis virus transactivating protein has been demonstrated, suggesting that interaction between transcriptional activators and the polymerase can occur through this subunit. A pseudogene is located on chromosome 11. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000167468 | GPX4 | glutathione peroxidase 4 | 2879 | This gene encodes a member of the glutathione peroxidase protein family. Glutathione peroxidase catalyzes the reduction of hydrogen peroxide, organic hydroperoxide, and lipid peroxides by reduced glutathione and functions in the protection of cells against oxidative damage. Human plasma glutathione peroxidase has been shown to be a selenium-containing enzyme and the UGA codon is translated into a selenocysteine. The encoded protein has been identified as a moonlighting protein based on its ability to serve dual functions as a peroxidase as well as a structural protein in mature spermatozoa. Through alternative splicing and transcription initiation, rat produces proteins that localize to the nucleus, mitochondrion, and cytoplasm. In humans, alternative transcription initiation and the cleavage sites of the mitochondrial and nuclear transit peptides need to be experimentally verified. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000064932 | SBNO2 | strawberry notch homolog 2 (Drosophila) | 22904 | NA |
| NA | ENSG00000118046 | STK11 | serine/threonine kinase 11 | 6794 | This gene, which encodes a member of the serine/threonine kinase family, regulates cell polarity and functions as a tumor suppressor. Mutations in this gene have been associated with Peutz-Jeghers syndrome, an autosomal dominant disorder characterized by the growth of polyps in the gastrointestinal tract, pigmented macules on the skin and mouth, and other neoplasms. Alternate transcriptional splice variants of this gene have been observed but have not been thoroughly characterized. |
| NA | ENSG00000099625 | CBARP | CACN beta subunit associated regulatory protein | 255057 | NA |
| NA | ENSG00000099624 | ATP5D | ATP synthase, H+ transporting, mitochondrial F1 complex, delta subunit | 513 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. The catalytic portion of mitochondrial ATP synthase consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and a single representative of the other 3. The proton channel consists of three main subunits (a, b, c). This gene encodes the delta subunit of the catalytic core. Alternatively spliced transcript variants encoding the same isoform have been identified. |
| NA | ENSG00000167470 | MIDN | midnolin | 90007 | NA |
| NA | ENSG00000099622 | CIRBP | cold inducible RNA binding protein | 1153 | NA |
| NA | ENSG00000228300 | C19orf24 | chromosome 19 open reading frame 24 | 55009 | NA |
| NA | ENSG00000160953 | MUM1 | melanoma associated antigen (mutated) 1 | 84939 | NA |
| NA | ENSG00000099617 | EFNA2 | ephrin-A2 | 1943 | This gene encodes a member of the ephrin family. The protein is composed of a signal sequence, a receptor-binding region, a spacer region, and a hydrophobic region. The EPH and EPH-related receptors comprise the largest subfamily of receptor protein-tyrosine kinases and have been implicated in mediating developmental events, particularly in the nervous system. Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. Posttranslational modifications determine whether this protein localizes to the nucleus or the cytoplasm. |
| NA | ENSG00000115286 | NDUFS7 | NADH:ubiquinone oxidoreductase core subunit S7 | 374291 | This gene encodes a protein that is a subunit of one of the complexes that forms the mitochondrial respiratory chain. This protein is one of over 40 subunits found in complex I, the nicotinamide adenine dinucleotide (NADH):ubiquinone oxidoreductase. This complex functions in the transfer of electrons from NADH to the respiratory chain, and ubiquinone is believed to be the immediate electron acceptor for the enzyme. Mutations in this gene cause Leigh syndrome due to mitochondrial complex I deficiency, a severe neurological disorder that results in bilaterally symmetrical necrotic lesions in subcortical brain regions. |
| NA | ENSG00000071626 | DAZAP1 | DAZ associated protein 1 | 26528 | In mammals, the Y chromosome directs the development of the testes and plays an important role in spermatogenesis. A high percentage of infertile men have deletions that map to regions of the Y chromosome. The DAZ (deleted in azoospermia) gene cluster maps to the AZFc region of the Y chromosome and is deleted in many azoospermic and severely oligospermic men. It is thought that the DAZ gene cluster arose from the transposition, amplification, and pruning of the ancestral autosomal gene DAZL also involved in germ cell development and gametogenesis. This gene encodes a RNA-binding protein with two RNP motifs that was originally identified by its interaction with the infertility factors DAZ and DAZL. Two isoforms are encoded by transcript variants of this gene. |
| NA | ENSG00000115268 | RPS15 | ribosomal protein S15 | 6209 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S19P family of ribosomal proteins. It is located in the cytoplasm. This gene has been found to be activated in various tumors, such as insulinomas, esophageal cancers, and colon cancers. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000268798 | CTB-25B13.5 | NA | ENSG00000268798 | NA |
| NA | ENSG00000119559 | C19orf25 | chromosome 19 open reading frame 25 | 148223 | NA |
| NA | ENSG00000115255 | REEP6 | receptor accessory protein 6 | 92840 | NA |
| NA | ENSG00000181588 | MEX3D | mex-3 RNA binding family member D | 399664 | NA |
| NA | ENSG00000071655 | MBD3 | methyl-CpG binding domain protein 3 | 53615 | DNA methylation is the major modification of eukaryotic genomes and plays an essential role in mammalian development. This gene belongs to a family of nuclear proteins which are characterized by the presence of a methyl-CpG binding domain (MBD). The encoded protein is a subunit of the NuRD, a multisubunit complex containing nucleosome remodeling and histone deacetylase activities. Unlike the other family members, the encoded protein is not capable of binding to methylated DNA. The protein mediates the association of metastasis-associated protein 2 with the core histone deacetylase complex. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000071564 | TCF3 | transcription factor 3 | 6929 | This gene encodes a member of the E protein (class I) family of helix-loop-helix transcription factors. E proteins activate transcription by binding to regulatory E-box sequences on target genes as heterodimers or homodimers, and are inhibited by heterodimerization with inhibitor of DNA-binding (class IV) helix-loop-helix proteins. E proteins play a critical role in lymphopoiesis, and the encoded protein is required for B and T lymphocyte development. Deletion of this gene or diminished activity of the encoded protein may play a role in lymphoid malignancies. This gene is also involved in several chromosomal translocations that are associated with lymphoid malignancies including pre-B-cell acute lymphoblastic leukemia (t(1;19), with PBX1), childhood leukemia (t(19;19), with TFPT) and acute leukemia (t(12;19), with ZNF384). Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the short arm of chromosome 9. |
| NA | ENSG00000079313 | REXO1 | REX1, RNA exonuclease 1 homolog | 57455 | NA |
| NA | ENSG00000129911 | KLF16 | Kruppel-like factor 16 | 83855 | NA |
| NA | ENSG00000129968 | ABHD17A | abhydrolase domain containing 17A | 81926 | NA |
| NA | ENSG00000227500 | SCAMP4 | secretory carrier membrane protein 4 | 113178 | Secretory carrier membrane proteins (SCAMPs) are widely distributed integral membrane proteins implicated in membrane trafficking. Most SCAMPs (e.g., SCAMP1; MIM 606911) have N-terminal cytoplasmic NPF (arg-pro-phe) repeats, 4 central transmembrane regions, and a short C-terminal cytoplasmic tail. These SCAMPs likely have a role in endocytosis that is mediated by their NPF repeats. Other SCAMPs, such as SCAMP4, lack the NPF repeats and are therefore unlikely to function in endocytosis (summary by Fernandez-Chacon and Sudhof, 2000 [PubMed 11050114]). |
| NA | ENSG00000133275 | CSNK1G2 | casein kinase 1 gamma 2 | 1455 | NA |
| NA | ENSG00000133243 | BTBD2 | BTB domain containing 2 | 55643 | The C-terminus of the protein encoded by this gene binds topoisomerase I. The N-terminus contains a proline-rich region and a BTB/POZ domain (broad-complex, Tramtrack and bric a brac/Pox virus and Zinc finger), both of which are typically involved in protein-protein interactions. Subcellularly, the protein localizes to cytoplasmic bodies. |
| NA | ENSG00000099875 | MKNK2 | MAP kinase interacting serine/threonine kinase 2 | 2872 | This gene encodes a member of the calcium/calmodulin-dependent protein kinases (CAMK) Ser/Thr protein kinase family, which belongs to the protein kinase superfamily. This protein contains conserved DLG (asp-leu-gly) and ENIL (glu-asn-ile-leu) motifs, and an N-terminal polybasic region which binds importin A and the translation factor scaffold protein eukaryotic initiation factor 4G (eIF4G). This protein is one of the downstream kinases activated by mitogen-activated protein (MAP) kinases. It phosphorylates the eukaryotic initiation factor 4E (eIF4E), thus playing important roles in the initiation of mRNA translation, oncogenic transformation and malignant cell proliferation. In addition to eIF4E, this protein also interacts with von Hippel-Lindau tumor suppressor (VHL), ring-box 1 (Rbx1) and Cullin2 (Cul2), which are all components of the CBC(VHL) ubiquitin ligase E3 complex. Multiple alternatively spliced transcript variants have been found, but the full-length nature and biological activity of only two variants are determined. These two variants encode distinct isoforms which differ in activity and regulation, and in subcellular localization. |
| NA | ENSG00000172081 | MOB3A | MOB kinase activator 3A | 126308 | NA |
| NA | ENSG00000065000 | AP3D1 | adaptor related protein complex 3 delta 1 subunit | 8943 | The protein encoded by this gene is a subunit of the AP3 adaptor-like complex, which is not clathrin-associated, but is associated with the golgi region, as well as more peripheral structures. The AP-3 complex facilitates the budding of vesicles from the golgi membrane, and may be directly involved in trafficking to lysosomes. This subunit is implicated in intracellular biogenesis and trafficking of pigment granules, and possibly platelet dense granules and neurotransmitter vesicles. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000104885 | DOT1L | DOT1 like histone H3K79 methyltransferase | 84444 | The protein encoded by this gene is a histone methyltransferase that methylates lysine-79 of histone H3. It is inactive against free core histones, but shows significant histone methyltransferase activity against nucleosomes. |
| NA | ENSG00000104886 | PLEKHJ1 | pleckstrin homology domain containing J1 | 55111 | NA |
| NA | ENSG00000104897 | SF3A2 | splicing factor 3a subunit 2 | 8175 | This gene encodes subunit 2 of the splicing factor 3a protein complex. The splicing factor 3a heterotrimer includes subunits 1, 2 and 3 and is necessary for the in vitro conversion of 15S U2 snRNP into an active 17S particle that performs pre-mRNA splicing. Subunit 2 interacts with subunit 1 through its amino-terminus while the single zinc finger domain of subunit 2 plays a role in its binding to the 15S U2 snRNP. Subunit 2 may also function independently of its RNA splicing function as a microtubule-binding protein. |
| NA | ENSG00000104904 | OAZ1 | ornithine decarboxylase antizyme 1 | 4946 | The protein encoded by this gene belongs to the ornithine decarboxylase antizyme family, which plays a role in cell growth and proliferation by regulating intracellular polyamine levels. Expression of antizymes requires +1 ribosomal frameshifting, which is enhanced by high levels of polyamines. Antizymes in turn bind to and inhibit ornithine decarboxylase (ODC), the key enzyme in polyamine biosynthesis; thus, completing the auto-regulatory circuit. This gene encodes antizyme 1, the first member of the antizyme family, that has broad tissue distribution, and negatively regulates intracellular polyamine levels by binding to and targeting ODC for degradation, as well as inhibiting polyamine uptake. Antizyme 1 mRNA contains two potential in-frame AUGs; and studies in rat suggest that alternative use of the two translation initiation sites results in N-terminally distinct protein isoforms with different subcellular localization. Alternatively spliced transcript variants have also been noted for this gene. |
| NA | ENSG00000130332 | LSM7 | LSM7 homolog, U6 small nuclear RNA and mRNA degradation associated | 51690 | Sm-like proteins were identified in a variety of organisms based on sequence homology with the Sm protein family (see SNRPD2; MIM 601061). Sm-like proteins contain the Sm sequence motif, which consists of 2 regions separated by a linker of variable length that folds as a loop. The Sm-like proteins are thought to form a stable heteromer present in tri-snRNP particles, which are important for pre-mRNA splicing. |
| NA | ENSG00000099800 | TIMM13 | translocase of inner mitochondrial membrane 13 | 26517 | This gene encodes a member of the evolutionarily conserved TIMM (translocase of inner mitochondrial membrane) family of proteins that function as chaperones in the import of proteins from the cytoplasm into the mitochondrial inner membrane. Proteins of this family play a role in collecting substrate proteins from the translocase of the outer mitochondrial membrane (TOM) complex and delivering them to either the sorting and assembly machinery in the outer mitochondrial membrane (SAM) complex or the TIMM22 complex in the inner mitochondrial membrane. The encoded protein and the translocase of mitochondrial inner membrane 8a protein form a 70 kDa complex in the intermembrane space. |
| NA | ENSG00000176619 | LMNB2 | lamin B2 | 84823 | This gene encodes a B type nuclear lamin. The nuclear lamina consists of a two-dimensional matrix of proteins located next to the inner nuclear membrane. The lamin family of proteins make up the matrix and are highly conserved in evolution. During mitosis, the lamina matrix is reversibly disassembled as the lamin proteins are phosphorylated. Lamin proteins are thought to be involved in nuclear stability, chromatin structure and gene expression. Vertebrate lamins consist of two types, A and B. Mutations in this gene are associated with acquired partial lipodystrophy. |
| NA | ENSG00000176533 | GNG7 | G protein subunit gamma 7 | 2788 | NA |
| NA | ENSG00000176490 | DIRAS1 | DIRAS family GTP binding RAS like 1 | 148252 | DIRAS1 belongs to a distinct branch of the functionally diverse Ras (see HRAS; MIM 190020) superfamily of monomeric GTPases. |
| NA | ENSG00000141873 | SLC39A3 | solute carrier family 39 member 3 | 29985 | NA |
| NA | ENSG00000104969 | SGTA | small glutamine rich tetratricopeptide repeat containing alpha | 6449 | This gene encodes a protein which is capable of interacting with the major nonstructural protein of parvovirus H-1 and 70-kDa heat shock cognate protein; however, its function is not known. Since this transcript is expressed ubiquitously in various tissues, this protein may serve a housekeeping function. |
| NA | ENSG00000172009 | THOP1 | thimet oligopeptidase 1 | 7064 | The protein encoded by this gene is a kininase that uses zinc as a cofactor. The encoded oligopeptidase cleaves cytosolic peptides, making them unavailable for display on antigen-presenting cells. This protein also cleaves neuropeptides under 20 aa in length and can degrade beta-amyloid precursor protein to amyloidogenic peptides. |
| NA | ENSG00000172006 | ZNF554 | zinc finger protein 554 | 115196 | NA |
| NA | ENSG00000186300 | ZNF555 | zinc finger protein 555 | 148254 | NA |
| NA | ENSG00000171970 | ZNF57 | zinc finger protein 57 | 126295 | NA |
| NA | ENSG00000175691 | ZNF77 | zinc finger protein 77 | 58492 | NA |
| NA | ENSG00000065717 | TLE2 | transducin like enhancer of split 2 | 7089 | NA |
| NA | ENSG00000104964 | AES | amino-terminal enhancer of split | 166 | The protein encoded by this gene is similar in sequence to the amino terminus of Drosophila enhancer of split groucho, a protein involved in neurogenesis during embryonic development. The encoded protein, which belongs to the groucho/TLE family of proteins, can function as a homooligomer or as a heteroologimer with other family members to dominantly repress the expression of other family member genes. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000088256 | GNA11 | G protein subunit alpha 11 | 2767 | The protein encoded by this gene belongs to the family of guanine nucleotide-binding proteins (G proteins), which function as modulators or transducers in various transmembrane signaling systems. G proteins are composed of 3 units: alpha, beta and gamma. This gene encodes one of the alpha subunits (subunit alpha-11). Mutations in this gene have been associated with hypocalciuric hypercalcemia type II (HHC2) and hypocalcemia dominant 2 (HYPOC2). Patients with HHC2 and HYPOC2 exhibit decreased or increased sensitivity, respectively, to changes in extracellular calcium concentrations. |
| NA | ENSG00000125912 | NCLN | nicalin | 56926 | NA |
| NA | ENSG00000161082 | CELF5 | CUGBP, Elav-like family member 5 | 60680 | This gene encodes a member of the the CELF/BRUNOL protein family, which contain two N-terminal RNA recognition motif (RRM) domains, one C-terminal RRM domain, and a divergent segment of 160-230 aa between the second and third RRM domains. Members of this protein family regulate pre-mRNA alternative splicing and may also be involved in mRNA editing and translation. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000141905 | NFIC | nuclear factor I/C (CCAAT-binding transcription factor) | 4782 | The protein encoded by this gene belongs to the CTF/NF-I family. These are dimeric DNA-binding proteins, and function as cellular transcription factors and as replication factors for adenovirus DNA replication. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000095932 | SMIM24 | small integral membrane protein 24 | 284422 | NA |
| NA | ENSG00000129932 | DOHH | deoxyhypusine hydroxylase/monooxygenase | 83475 | This gene encodes a metalloenzyme that catalyzes the last step in the conversion of lysine to the unique amino acid hypusine in eukaryotic initiation factor 5A. The encoded protein hydroxylates deoxyhypusine to form hypusine in the mature eukaryotic initiation factor 5A protein. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105325 | FZR1 | fizzy/cell division cycle 20 related 1 | 51343 | NA |
| NA | ENSG00000161091 | MFSD12 | major facilitator superfamily domain containing 12 | 126321 | NA |
| NA | ENSG00000064961 | HMG20B | high mobility group 20B | 10362 | NA |
| NA | ENSG00000105298 | CACTIN | cactin, spliceosome C complex subunit | 58509 | NA |
| NA | ENSG00000186111 | PIP5K1C | phosphatidylinositol-4-phosphate 5-kinase, type I, gamma | 23396 | This locus encodes a type I phosphatidylinositol 4-phosphate 5-kinase. The encoded protein catalyzes phosphorylation of phosphatidylinositol 4-phosphate, producing phosphatidylinositol 4,5-bisphosphate. This enzyme is found at synapses and has been found to play roles in endocytosis and cell migration. Mutations at this locus have been associated with lethal congenital contractural syndrome. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000105289 | TJP3 | tight junction protein 3 | 27134 | The protein encoded by this gene is a member of the membrane-associated guanylate kinase-like (MAGUK) protein family which is characterized by members having multiple PDZ domains, a single SH3 domain, and a single guanylate kinase-like (GUK)-domain. In addition, members of the zonula occludens protein subfamily have an acidic domain, a basic arginine-rich region, and a proline-rich domain. The protein encoded by this gene plays a role in the linkage between the actin cytoskeleton and tight-junctions and also sequesters cyclin D1 at tight junctions during mitosis. Alternative splicing results in multiple transcript variants encoding distinct isoforms. This gene has a partial pseudogene on chromosome 1. |
| NA | ENSG00000011132 | APBA3 | amyloid beta precursor protein binding family A member 3 | 9546 | The protein encoded by this gene is a member of the X11 protein family. It is an adapter protein that interacts with the Alzheimer’s disease amyloid precursor protein. This gene product is believed to be involved in signal transduction processes. This gene is a candidate gene for Alzheimer’s disease. |
| NA | ENSG00000183617 | MRPL54 | mitochondrial ribosomal protein L54 | 116541 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000007264 | MATK | megakaryocyte-associated tyrosine kinase | 4145 | The protein encoded by this gene has amino acid sequence similarity to Csk tyrosine kinase and has the structural features of the CSK subfamily: SRC homology SH2 and SH3 domains, a catalytic domain, a unique N terminus, lack of myristylation signals, lack of a negative regulatory phosphorylation site, and lack of an autophosphorylation site. This protein is thought to play a significant role in the signal transduction of hematopoietic cells. It is able to phosphorylate and inactivate Src family kinases, and may play an inhibitory role in the control of T-cell proliferation. This protein might be involved in signaling in some cases of breast cancer. Three alternatively spliced transcript variants that encode different isoforms have been described for this gene. |
| NA | ENSG00000105278 | ZFR2 | zinc finger RNA binding protein 2 | 23217 | NA |
| NA | ENSG00000167654 | ATCAY | ataxia, cerebellar, Cayman type | 85300 | This gene encodes a neuron-restricted protein that contains a CRAL-TRIO motif common to proteins that bind small lipophilic molecules. Mutations in this gene are associated with cerebellar ataxia, Cayman type. |
| NA | ENSG00000077009 | NMRK2 | nicotinamide riboside kinase 2 | 27231 | NA |
| NA | ENSG00000167657 | DAPK3 | death-associated protein kinase 3 | 1613 | Death-associated protein kinase 3 (DAPK3) induces morphological changes in apoptosis when overexpressed in mammalian cells. These results suggest that DAPK3 may play a role in the induction of apoptosis. |
| NA | ENSG00000167658 | EEF2 | eukaryotic translation elongation factor 2 | 1938 | This gene encodes a member of the GTP-binding translation elongation factor family. This protein is an essential factor for protein synthesis. It promotes the GTP-dependent translocation of the nascent protein chain from the A-site to the P-site of the ribosome. This protein is completely inactivated by EF-2 kinase phosporylation. |
| NA | ENSG00000105229 | PIAS4 | protein inhibitor of activated STAT 4 | 51588 | NA |
| NA | ENSG00000178951 | ZBTB7A | zinc finger and BTB domain containing 7A | 51341 | NA |
| NA | ENSG00000126934 | MAP2K2 | mitogen-activated protein kinase kinase 2 | 5605 | The protein encoded by this gene is a dual specificity protein kinase that belongs to the MAP kinase kinase family. This kinase is known to play a critical role in mitogen growth factor signal transduction. It phosphorylates and thus activates MAPK1/ERK2 and MAPK2/ERK3. The activation of this kinase itself is dependent on the Ser/Thr phosphorylation by MAP kinase kinase kinases. Mutations in this gene cause cardiofaciocutaneous syndrome (CFC syndrome), a disease characterized by heart defects, mental retardation, and distinctive facial features similar to those found in Noonan syndrome. The inhibition or degradation of this kinase is also found to be involved in the pathogenesis of Yersinia and anthrax. A pseudogene, which is located on chromosome 7, has been identified for this gene. |
| NA | ENSG00000077463 | SIRT6 | sirtuin 6 | 51548 | This gene encodes a member of the sirtuin family of NAD-dependent enzymes that are implicated in cellular stress resistance, genomic stability, aging and energy homeostasis. The encoded protein is localized to the nucleus, exhibits ADP-ribosyl transferase and histone deacetylase activities, and plays a role in DNA repair, maintenance of telomeric chromatin, inflammation, lipid and glucose metabolism. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000089847 | ANKRD24 | ankyrin repeat domain 24 | 170961 | NA |
| NA | ENSG00000105248 | CCDC94 | coiled-coil domain containing 94 | 55702 | NA |
| NA | ENSG00000105255 | FSD1 | fibronectin type III and SPRY domain containing 1 | 79187 | This gene encodes a centrosome associated protein that is characterized by an N-terminal coiled-coil region downstream of B-box (BBC) domain, a central fibronectin type III domain, and a C-terminal repeats in splA and RyR (SPRY) domain. The encoded protein associates with a subset of microtubules and may be involved in the stability and organization of microtubules during cytokinesis. |
| NA | ENSG00000178078 | STAP2 | signal transducing adaptor family member 2 | 55620 | This gene encodes the substrate of breast tumor kinase, an Src-type non-receptor tyrosine kinase. The encoded protein possesses domains and several tyrosine phosphorylation sites characteristic of adaptor proteins that mediate the interactions linking proteins involved in signal transduction pathways. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000008382 | MPND | MPN domain containing | 84954 | NA |
| NA | ENSG00000141985 | SH3GL1 | SH3-domain GRB2-like 1 | 6455 | This gene encodes a member of the endophilin family of Src homology 3 domain-containing proteins. The encoded protein is involved in endocytosis and may also play a role in the cell cycle. Overexpression of this gene may play a role in leukemogenesis, and the encoded protein has been implicated in acute myeloid leukemia as a fusion partner of the myeloid-lymphoid leukemia protein. Pseudogenes of this gene are located on the long arm of chromosomes 11 and 17. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000167670 | CHAF1A | chromatin assembly factor 1 subunit A | 10036 | Chromatin assembly factor I (CAF1) is a nuclear complex consisting of p50, p60 (CHAF1B; MIM 601245), and p150 (CHAF1A) subunits that assembles histone octamers onto replicating DNA in vitro (Kaufman et al., 1995 [PubMed 7600578]). |
| NA | ENSG00000167671 | UBXN6 | UBX domain protein 6 | 80700 | NA |
| NA | ENSG00000167674 | HDGFRP2 | hepatoma-derived growth factor-related protein 2 | 84717 | This gene encodes a member of the hepatoma-derived growth factor (HDGF) family. The protein includes an N-terminal PWWP domain that binds to methyl-lysine-containing histones, with specific binding of this protein to tri-methylated lysines 36 and 79 of histone H3, and di- and tri-methylated lysine 20 of histone H4. The protein functions in LEDGF/p75-independent HIV-1 replication by determining HIV-1 integration site selection. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000167680 | SEMA6B | semaphorin 6B | 10501 | This gene encodes a member of the semaphorin family, a group of proteins characterized by the presence of a conserved semaphorin (sema) domain. Whereas some semaphorins are transmembrane proteins, others are secreted. Semaphorins play a major role in axon guidance. The protein encoded by this gene may be involved in both peripheral and central nervous system development. |
| NA | ENSG00000185361 | TNFAIP8L1 | TNF alpha induced protein 8 like 1 | 126282 | NA |
| NA | ENSG00000074842 | MYDGF | myeloid-derived growth factor | 56005 | The protein encoded by this gene was previously thought to support proliferation of lymphoid cells and was considered an interleukin. However, this activity has not been reproducible and the function of this protein is currently unknown. |
| NA | ENSG00000142002 | DPP9 | dipeptidyl peptidase 9 | 91039 | This gene encodes a protein that is a member of the S9B family in clan SC of the serine proteases. The protein has been shown to have post-proline dipeptidyl aminopeptidase activity, cleaving Xaa-Pro dipeptides from the N-termini of proteins. Although the activity of this protein is similar to that of dipeptidyl peptidase 4 (DPP4), it does not appear to be membrane bound. In general, dipeptidyl peptidases appear to be involved in the regulation of the activity of their substrates and have been linked to a variety of diseases including type 2 diabetes, obesity and cancer. Several transcript variants of this gene have been described but not fully characterized. |
| NA | ENSG00000141965 | FEM1A | fem-1 homolog A | 55527 | NA |
| NA | ENSG00000105355 | PLIN3 | perilipin 3 | 10226 | Mannose 6-phophate receptors (MPRs) deliver lysosomal hydrolase from the Golgi to endosomes and then return to the Golgi complex. The protein encoded by this gene interacts with the cytoplasmic domains of both cation-independent and cation-dependent MPRs, and is required for endosome-to-Golgi transport. This protein also binds directly to the GTPase RAB9 (RAB9A), a member of the RAS oncogene family. The interaction with RAB9 has been shown to increase the affinity of this protein for its cargo. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000127663 | KDM4B | lysine demethylase 4B | 23030 | NA |
| NA | ENSG00000105426 | PTPRS | protein tyrosine phosphatase, receptor type S | 5802 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP contains an extracellular region, a single transmembrane segment and two tandem intracytoplasmic catalytic domains, and thus represents a receptor-type PTP. The extracellular region of this protein is composed of multiple Ig-like and fibronectin type III-like domains. Studies of the similar gene in mice suggested that this PTP may be involved in cell-cell interaction, primary axonogenesis, and axon guidance during embryogenesis. This PTP has been also implicated in the molecular control of adult nerve repair. Four alternatively spliced transcript variants, which encode distinct proteins, have been reported. |
| NA | ENSG00000130254 | SAFB2 | scaffold attachment factor B2 | 9667 | NA |
| NA | ENSG00000160633 | SAFB | scaffold attachment factor B | 6294 | This gene encodes a DNA-binding protein which has high specificity for scaffold or matrix attachment region DNA elements (S/MAR DNA). This protein is thought to be involved in attaching the base of chromatin loops to the nuclear matrix but there is conflicting evidence as to whether this protein is a component of chromatin or a nuclear matrix protein. Scaffold attachment factors are a specific subset of nuclear matrix proteins (NMP) that specifically bind to S/MAR. The encoded protein is thought to serve as a molecular base to assemble a ‘transcriptosome complex’ in the vicinity of actively transcribed genes. It is involved in the regulation of heat shock protein 27 transcription, can act as an estrogen receptor co-repressor and is a candidate for breast tumorigenesis. This gene is arranged head-to-head with a similar gene whose product has the same functions. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130255 | RPL36 | ribosomal protein L36 | 25873 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L36E family of ribosomal proteins. It is located in the cytoplasm. Transcript variants derived from alternative splicing exist; they encode the same protein. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000174917 | C19orf70 | chromosome 19 open reading frame 70 | 125988 | NA |
| NA | ENSG00000167733 | HSD11B1L | hydroxysteroid (11-beta) dehydrogenase 1-like | 374875 | This gene is a member of the hydroxysteroid dehydrogenase family. The encoded protein is similar to an enzyme that catalyzes the interconversion of inactive to active glucocorticoids (e.g. cortisone). Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000196365 | LONP1 | lon peptidase 1, mitochondrial | 9361 | This gene encodes a mitochondrial matrix protein that belongs to the Lon family of ATP-dependent proteases. This protein mediates the selective degradation of misfolded, unassembled or oxidatively damaged polypeptides in the mitochondrial matrix. It may also have a chaperone function in the assembly of inner membrane protein complexes, and participate in the regulation of mitochondrial gene expression and maintenance of the integrity of the mitochondrial genome. Decreased expression of this gene has been noted in a patient with hereditary spastic paraplegia (PMID:18378094). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000141994 | DUS3L | dihydrouridine synthase 3 like | 56931 | NA |
| NA | ENSG00000174886 | NDUFA11 | NADH:ubiquinone oxidoreductase subunit A11 | 126328 | This gene encodes a subunit of the membrane-bound mitochondrial complex I. Complex I is composed of numerous subunits and functions as the NADH-ubiquinol reductase of the mitochondrial electron transport chain. Mutations in this gene are associated with severe mitochondrial complex I deficiency. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000031823 | RANBP3 | RAN binding protein 3 | 8498 | This gene encodes a protein with a RanBD1 domain that is found in both the nucleus and cytoplasm. This protein plays a role in nuclear export as part of a heteromeric complex. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000087903 | RFX2 | regulatory factor X2 | 5990 | This gene is a member of the regulatory factor X gene family, which encodes transcription factors that contain a highly-conserved winged helix DNA binding domain. The protein encoded by this gene is structurally related to regulatory factors X1, X3, X4, and X5. It is a transcriptional activator that can bind DNA as a monomer or as a heterodimer with other RFX family members. This protein can bind to cis elements in the promoter of the IL-5 receptor alpha gene. Two transcript variants encoding different isoforms have been described for this gene, and both variants utilize alternative polyadenylation sites. |
| NA | ENSG00000125656 | CLPP | caseinolytic mitochondrial matrix peptidase proteolytic subunit | 8192 | The protein encoded by this gene belongs to the peptidase family S14 and hydrolyzes proteins into small peptides in the presence of ATP and magnesium. The protein is transported into mitochondrial matrix and is associated with the inner mitochondrial membrane. |
| NA | ENSG00000125652 | ALKBH7 | alkB homolog 7 | 84266 | NA |
| NA | ENSG00000125651 | GTF2F1 | general transcription factor IIF subunit 1 | 2962 | NA |
| NA | ENSG00000088247 | KHSRP | KH-type splicing regulatory protein | 8570 | The KHSRP gene encodes a multifunctional RNA-binding protein implicated in a variety of cellular processes, including transcription, alternative pre-mRNA splicing, and mRNA localization (Min et al., 1997 [PubMed 9136930]; Gherzi et al., 2004 [PubMed 15175153]). |
| NA | ENSG00000125648 | SLC25A23 | solute carrier family 25 member 23 | 79085 | NA |
| NA | ENSG00000130545 | CRB3 | crumbs 3, cell polarity complex component | 92359 | This gene encodes a member of the Crumbs family of proteins. This gene is widely expressed in epithelial tissues where the encoded protein isoforms play various roles such as the control of cytokinesis and ciliogenesis or the formation of tight junctions. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000205744 | DENND1C | DENN domain containing 1C | 79958 | Clathrin (see MIM 118955)-mediated endocytosis is a major mechanism for internalization of proteins and lipids. Members of the connecdenn family, such as DENND1C, function as guanine nucleotide exchange factors (GEFs) for the early endosomal small GTPase RAB35 (MIM 604199) and bind to clathrin and clathrin adaptor protein-2 (AP2; see MIM 601024). Thus, connecdenns link RAB35 activation with the clathrin machinery (Marat and McPherson, 2010 [PubMed 20154091]). |
| NA | ENSG00000104833 | TUBB4A | tubulin beta 4A class IVa | 10382 | This gene encodes a member of the beta tubulin family. Beta tubulins are one of two core protein families (alpha and beta tubulins) that heterodimerize and assemble to form microtubules. Mutations in this gene cause hypomyelinating leukodystrophy-6 and autosomal dominant torsion dystonia-4. Alternate splicing results in multiple transcript variants encoding different isoforms. A pseudogene of this gene is found on chromosome X. |
| NA | ENSG00000125733 | TRIP10 | thyroid hormone receptor interactor 10 | 9322 | NA |
| NA | ENSG00000125731 | SH2D3A | SH2 domain containing 3A | 10045 | NA |
| NA | ENSG00000130544 | ZNF557 | zinc finger protein 557 | 79230 | NA |
| NA | ENSG00000171105 | INSR | insulin receptor | 3643 | This gene encodes a member of the receptor tyrosine kinase family of proteins. The encoded preproprotein is proteolytically processed to generate alpha and beta subunits that form a heterotetrameric receptor. Binding of insulin or other ligands to this receptor activates the insulin signaling pathway, which regulates glucose uptake and release, as well as the synthesis and storage of carbohydrates, lipids and protein. Mutations in this gene underlie the inherited severe insulin resistance syndromes including type A insulin resistance syndrome, Donohue syndrome and Rabson-Mendenhall syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000104880 | ARHGEF18 | Rho/Rac guanine nucleotide exchange factor 18 | 23370 | Rho GTPases are GTP binding proteins that regulate a wide spectrum of cellular functions. These cellular processes include cytoskeletal rearrangements, gene transcription, cell growth and motility. Activation of Rho GTPases is under the direct control of guanine nucleotide exchange factors (GEFs). The protein encoded by this gene is a guanine nucleotide exchange factor and belongs to the Rho GTPase GFE family. Family members share a common feature, a Dbl (DH) homology domain followed by a pleckstrin (PH) homology domain. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000198816 | ZNF358 | zinc finger protein 358 | 140467 | NA |
| NA | ENSG00000090674 | MCOLN1 | mucolipin 1 | 57192 | This gene encodes a memberof the transient receptor potential (TRP) cation channel gene family. The transmembrane protein localizes to intracellular vesicular membranes including lysosomes, and functions in the late endocytic pathway and in the regulation of lysosomal exocytosis. The channel is permeable to Ca(2+), Fe(2+), Na(+), K(+), and H(+), and is modulated by changes in Ca(2+) concentration. Mutations in this gene result in mucolipidosis type IV. |
| NA | ENSG00000032444 | PNPLA6 | patatin like phospholipase domain containing 6 | 10908 | This gene encodes a phospholipase that deacetylates intracellular phosphatidylcholine to produce glycerophosphocholine. It is thought to function in neurite outgrowth and process elongation during neuronal differentiation. The protein is anchored to the cytoplasmic face of the endoplasmic reticulum in both neurons and non-neuronal cells. Mutations in this gene result in autosomal recessive spastic paraplegia, and the protein is the target for neurodegeneration induced by organophosphorus compounds and chemical warfare agents. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000076826 | CAMSAP3 | calmodulin regulated spectrin associated protein family member 3 | 57662 | NA |
| NA | ENSG00000076924 | XAB2 | XPA binding protein 2 | 56949 | NA |
| NA | ENSG00000076944 | STXBP2 | syntaxin binding protein 2 | 6813 | This gene encodes a member of the STXBP/unc-18/SEC1 family. The encoded protein is involved in intracellular trafficking, control of SNARE (soluble NSF attachment protein receptor) complex assembly, and the release of cytotoxic granules by natural killer cells. Mutations in this gene are associated with familial hemophagocytic lymphohistiocytosis. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000181029 | TRAPPC5 | trafficking protein particle complex 5 | 126003 | NA |
| NA | ENSG00000142459 | EVI5L | ecotropic viral integration site 5 like | 115704 | NA |
| NA | ENSG00000183248 | PRR36 | proline rich 36 | 80164 | This gene encodes a large protein of unknown function that contains internal regions of low complexity sequence. Alternative splicing results in multiple transcript variants. The transcript structure of the protein-coding variant at this locus is conserved between human and mouse. |
| NA | ENSG00000076984 | MAP2K7 | mitogen-activated protein kinase kinase 7 | 5609 | The protein encoded by this gene is a dual specificity protein kinase that belongs to the MAP kinase kinase family. This kinase specifically activates MAPK8/JNK1 and MAPK9/JNK2, and this kinase itself is phosphorylated and activated by MAP kinase kinase kinases including MAP3K1/MEKK1, MAP3K2/MEKK2,MAP3K3/MEKK5, and MAP4K2/GCK. This kinase is involved in the signal transduction mediating the cell responses to proinflammatory cytokines, and environmental stresses. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000104976 | SNAPC2 | small nuclear RNA activating complex polypeptide 2 | 6618 | This gene encodes a subunit of the snRNA-activating protein complex which is associated with the TATA box-binding protein. The encoded protein is necessary for RNA polymerase II and III dependent small-nuclear RNA gene transcription. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000178531 | CTXN1 | cortexin 1 | 404217 | NA |
| NA | ENSG00000104980 | TIMM44 | translocase of inner mitochondrial membrane 44 | 10469 | NA |
| NA | ENSG00000066044 | ELAVL1 | ELAV like RNA binding protein 1 | 1994 | The protein encoded by this gene is a member of the ELAVL family of RNA-binding proteins that contain several RNA recognition motifs, and selectively bind AU-rich elements (AREs) found in the 3’ untranslated regions of mRNAs. AREs signal degradation of mRNAs as a means to regulate gene expression, thus by binding AREs, the ELAVL family of proteins play a role in stabilizing ARE-containing mRNAs. This gene has been implicated in a variety of biological processes and has been linked to a number of diseases, including cancer. It is highly expressed in many cancers, and could be potentially useful in cancer diagnosis, prognosis, and therapy. |
| NA | ENSG00000142449 | FBN3 | fibrillin 3 | 84467 | This gene encodes a protein that belongs to the fibrillin gene family. Fibrillins are extracellular matrix molecules that assemble into microfibrils in many connective tissues. This gene is most highly expressed in fetal tissues and its protein product is localized to extracellular microfibrils of developing skeletal elements, skin, lung, kidney, and skeletal muscle. This gene is potentially involved in Weill-Marchesani syndrome. While several transcript variants may exist for this gene, their full-length natures have not been described to date. |
| NA | ENSG00000090661 | CERS4 | ceramide synthase 4 | 79603 | NA |
| NA | ENSG00000167775 | CD320 | CD320 molecule | 51293 | This gene encodes the transcobalamin receptor that is expressed at the cell surface. It mediates the cellular uptake of transcobalamin bound cobalamin (vitamin B12), and is involved in B-cell proliferation and immunoglobulin secretion. Mutations in this gene are associated with methylmalonic aciduria. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000267855 | NDUFA7 | NADH:ubiquinone oxidoreductase subunit A7 | 4701 | This gene encodes a subunit of NADH:ubiquinone oxidoreductase (complex I), which is a multiprotein complex located in the inner mitochondrial membrane. Complex I functions in the transfer of electrons from NADH to the respiratory chain. |
| NA | ENSG00000233927 | RPS28 | ribosomal protein S28 | 6234 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S28E family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000185236 | RAB11B | RAB11B, member RAS oncogene family | 9230 | The Ras superfamily of small GTP-binding proteins, which includes the Ras (see MIM 190020), Ral (see MIM 179550), Rho (see MIM 165390), Rap (see MIM 179520), and Rab (see MIM 179508) families, is involved in controlling a diverse set of essential cellular functions. The Rab family, including RAB11B, appears to play a critical role in regulating exocytotic and endocytotic pathways (summary by Zhu et al., 1994 [PubMed 7811277]). |
| NA | ENSG00000099785 | MARCH2 | membrane associated ring-CH-type finger 2 | 51257 | MARCH2 is a member of the MARCH family of membrane-bound E3 ubiquitin ligases (EC 6.3.2.19). MARCH enzymes add ubiquitin (see MIM 191339) to target lysines in substrate proteins, thereby signaling their vesicular transport between membrane compartments. MARCH2 reduces surface accumulation of several glycoproteins and appears to regulate early endosome-to-trans-Golgi network (TGN) trafficking (Bartee et al., 2004 [PubMed 14722266]; Nakamura et al., 2005 [PubMed 15689499]). |
| NA | ENSG00000099783 | HNRNPM | heterogeneous nuclear ribonucleoprotein M | 4670 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has three repeats of quasi-RRM domains that bind to RNAs. This protein also constitutes a monomer of the N-acetylglucosamine-specific receptor which is postulated to trigger selective recycling of immature GlcNAc-bearing thyroglobulin molecules. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000133250 | ZNF414 | zinc finger protein 414 | 84330 | NA |
| NA | ENSG00000142347 | MYO1F | myosin IF | 4542 | NA |
| NA | ENSG00000142303 | ADAMTS10 | ADAM metallopeptidase with thrombospondin type 1 motif 10 | 81794 | This gene belongs to the ADAMTS (a disintegrin and metalloproteinase domain with thrombospondin type-1 motifs) family of zinc-dependent proteases. ADAMTS proteases are complex secreted enzymes containing a prometalloprotease domain of the reprolysin type attached to an ancillary domain with a highly conserved structure that includes at least one thrombospondin type 1 repeat. They have been demonstrated to have important roles in connective tissue organization, coagulation, inflammation, arthritis, angiogenesis and cell migration. The product of this gene plays a major role in growth and in skin, lens, and heart development. It is also a candidate gene for autosomal recessive Weill-Marchesani syndrome. |
| NA | ENSG00000167785 | ZNF558 | zinc finger protein 558 | 148156 | NA |
| NA | ENSG00000130803 | ZNF317 | zinc finger protein 317 | 57693 | NA |
| NA | ENSG00000174652 | ZNF266 | zinc finger protein 266 | 10781 | This gene encodes a protein containing many tandem zinc-finger motifs. Zinc fingers are protein or nucleic acid-binding domains, and may be involved in a variety of functions, including regulation of transcription. This gene is located in a cluster of similar genes encoding zinc finger proteins on chromosome 19. Alternative splicing results in multiple transcript variants for this gene. |
| NA | ENSG00000130818 | ZNF426 | zinc finger protein 426 | 79088 | Kaposi’s sarcoma-associated herpesvirus (KSHV) can be reactivated from latency by the viral protein RTA. The protein encoded by this gene is a zinc finger transcriptional repressor that interacts with RTA to modulate RTA-mediated reactivation of KSHV. While the encoded protein can repress KSHV reactivation, RTA can induce degradation of this protein through the ubiquitin-proteasome pathway to overcome the repression. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197961 | ZNF121 | zinc finger protein 121 | 7675 | NA |
| NA | ENSG00000171469 | ZNF561 | zinc finger protein 561 | 93134 | NA |
| NA | ENSG00000267106 | ZNF561-AS1 | ZNF561 antisense RNA 1 (head to head) | 284385 | NA |
| NA | ENSG00000171466 | ZNF562 | zinc finger protein 562 | 54811 | NA |
| NA | ENSG00000127452 | FBXL12 | F-box and leucine-rich repeat protein 12 | 54850 | Members of the F-box protein family, such as FBXL12, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000198258 | UBL5 | ubiquitin like 5 | 59286 | This gene encodes a member of a group of proteins similar to ubiquitin. The encoded protein is not thought to degrade proteins like ubiquitin but to affect their function through being bound to target proteins by an isopeptide bond. The gene product has been studied as a link to predisposition to obesity based on its expression in Psammomys obesus, the fat sand rat, which is an animal model for obesity studies. Variation in this gene was found to be significantly associated with some metabolic traits (PMID: 15331561) but not associated with childhood obesity (PMID: 19189687). Pseudogenes of this gene are located on chromosomes 3, 5 and 17. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000127445 | PIN1 | peptidylprolyl cis/trans isomerase, NIMA-interacting 1 | 5300 | Peptidyl-prolyl cis/trans isomerases (PPIases) catalyze the cis/trans isomerization of peptidyl-prolyl peptide bonds. This gene encodes one of the PPIases, which specifically binds to phosphorylated ser/thr-pro motifs to catalytically regulate the post-phosphorylation conformation of its substrates. The conformational regulation catalyzed by this PPIase has a profound impact on key proteins involved in the regulation of cell growth, genotoxic and other stress responses, the immune response, induction and maintenance of pluripotency, germ cell development, neuronal differentiation, and survival. This enzyme also plays a key role in the pathogenesis of Alzheimer’s disease and many cancers. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000105088 | OLFM2 | olfactomedin 2 | 93145 | NA |
| NA | ENSG00000130813 | C19orf66 | chromosome 19 open reading frame 66 | 55337 | NA |
| NA | ENSG00000130810 | PPAN | peter pan homolog (Drosophila) | 56342 | The protein encoded by this gene is an evolutionarily conserved protein similar to yeast SSF1 as well as to the gene product of the Drosophila gene peter pan (ppan). SSF1 is known to be involved in the second step of mRNA splicing. Both SSF1 and ppan are essential for cell growth and proliferation. Exogenous expression of this gene was reported to reduce the anchorage-independent growth of some tumor cells. Read-through transcription of this gene with P2RY11/P2Y(11), an adjacent downstream gene that encodes an ATP receptor, has been found. These read-through transcripts are ubiquitously present and up-regulated during granulocyte differentiation. |
| NA | ENSG00000244165 | P2RY11 | purinergic receptor P2Y11 | 5032 | The product of this gene belongs to the family of G-protein coupled receptors. This family has several receptor subtypes with different pharmacological selectivity, which overlaps in some cases, for various adenosine and uridine nucleotides. This receptor is coupled to the stimulation of the phosphoinositide and adenylyl cyclase pathways and behaves as a selective purinoceptor. Naturally occuring read-through transcripts, resulting from intergenic splicing between this gene and an immediately upstream gene (PPAN, encoding peter pan homolog), have been found. The PPAN-P2RY11 read-through mRNA is ubiquitously expressed and encodes a fusion protein that shares identity with each individual gene product. |
| NA | ENSG00000130811 | EIF3G | eukaryotic translation initiation factor 3 subunit G | 8666 | NA |
| NA | ENSG00000130816 | DNMT1 | DNA (cytosine-5-)-methyltransferase 1 | 1786 | This gene encodes an enzyme that transfers methyl groups to cytosine nucleotides of genomic DNA. This protein is the major enzyme responsible for maintaining methylation patterns following DNA replication and shows a preference for hemi-methylated DNA. Methylation of DNA is an important component of mammalian epigenetic gene regulation. Aberrant methylation patterns are found in human tumors and associated with developmental abnormalities. Variation in this gene has been associated with cerebellar ataxia, deafness, and narcolepsy, and neuropathy, hereditary sensory, type IE. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105364 | MRPL4 | mitochondrial ribosomal protein L4 | 51073 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. Sequence analysis identified alternatively spliced variants that encode different protein isoforms. |
| NA | ENSG00000090339 | ICAM1 | intercellular adhesion molecule 1 | 3383 | This gene encodes a cell surface glycoprotein which is typically expressed on endothelial cells and cells of the immune system. It binds to integrins of type CD11a / CD18, or CD11b / CD18 and is also exploited by Rhinovirus as a receptor. |
| NA | ENSG00000105376 | ICAM5 | intercellular adhesion molecule 5 | 7087 | The protein encoded by this gene is a member of the intercellular adhesion molecule (ICAM) family. All ICAM proteins are type I transmembrane glycoproteins, contain 2-9 immunoglobulin-like C2-type domains, and bind to the leukocyte adhesion LFA-1 protein. This protein is expressed on the surface of telencephalic neurons and displays two types of adhesion activity, homophilic binding between neurons and heterophilic binding between neurons and leukocytes. It may be a critical component in neuron-microglial cell interactions in the course of normal development or as part of neurodegenerative diseases. |
| NA | ENSG00000161847 | RAVER1 | ribonucleoprotein, PTB-binding 1 | 125950 | NA |
| NA | ENSG00000076662 | ICAM3 | intercellular adhesion molecule 3 | 3385 | The protein encoded by this gene is a member of the intercellular adhesion molecule (ICAM) family. All ICAM proteins are type I transmembrane glycoproteins, contain 2-9 immunoglobulin-like C2-type domains, and bind to the leukocyte adhesion LFA-1 protein. This protein is constitutively and abundantly expressed by all leucocytes and may be the most important ligand for LFA-1 in the initiation of the immune response. It functions not only as an adhesion molecule, but also as a potent signalling molecule. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000105397 | TYK2 | tyrosine kinase 2 | 7297 | This gene encodes a member of the tyrosine kinase and, more specifically, the Janus kinases (JAKs) protein families. This protein associates with the cytoplasmic domain of type I and type II cytokine receptors and promulgate cytokine signals by phosphorylating receptor subunits. It is also component of both the type I and type III interferon signaling pathways. As such, it may play a role in anti-viral immunity. A mutation in this gene has been associated with hyperimmunoglobulin E syndrome (HIES) - a primary immunodeficiency characterized by elevated serum immunoglobulin E. |
| NA | ENSG00000105401 | CDC37 | cell division cycle 37 | 11140 | The protein encoded by this gene is highly similar to Cdc 37, a cell division cycle control protein of Sacchromyces cerevisiae. This protein is a molecular chaperone with specific function in cell signal transduction. It has been shown to form complex with Hsp90 and a variety of protein kinases including CDK4, CDK6, SRC, RAF-1, MOK, as well as eIF2 alpha kinases. It is thought to play a critical role in directing Hsp90 to its target kinases. |
| NA | ENSG00000065989 | PDE4A | phosphodiesterase 4A | 5141 | The protein encoded by this gene belongs to the cyclic nucleotide phosphodiesterase (PDE) family, and PDE4 subfamily. This PDE hydrolyzes the second messenger, cAMP, which is a regulator and mediator of a number of cellular responses to extracellular signals. Thus, by regulating the cellular concentration of cAMP, this protein plays a key role in many important physiological processes. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000079999 | KEAP1 | kelch like ECH associated protein 1 | 9817 | This gene encodes a protein containing KELCH-1 like domains, as well as a BTB/POZ domain. Kelch-like ECH-associated protein 1 interacts with NF-E2-related factor 2 in a redox-sensitive manner and the dissociation of the proteins in the cytoplasm is followed by transportation of NF-E2-related factor 2 to the nucleus. This interaction results in the expression of the catalytic subunit of gamma-glutamylcysteine synthetase. Two alternatively spliced transcript variants encoding the same isoform have been found for this gene. |
| NA | ENSG00000130734 | ATG4D | autophagy related 4D cysteine peptidase | 84971 | Autophagy is the process by which endogenous proteins and damaged organelles are destroyed intracellularly. Autophagy is postulated to be essential for cell homeostasis and cell remodeling during differentiation, metamorphosis, non-apoptotic cell death, and aging. Reduced levels of autophagy have been described in some malignant tumors, and a role for autophagy in controlling the unregulated cell growth linked to cancer has been proposed. This gene belongs to the autophagy-related protein 4 (Atg4) family of C54 endopeptidases. Members of this family encode proteins that play a role in the biogenesis of autophagosomes, which sequester the cytosol and organelles for degradation by lysosomes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000129347 | KRI1 | KRI1 homolog | 65095 | This gene overlaps with the gene for cysteine endopeptidase AUT-like 4 in a head-to-tail orientation. |
| NA | ENSG00000129355 | CDKN2D | cyclin-dependent kinase inhibitor 2D | 1032 | The protein encoded by this gene is a member of the INK4 family of cyclin-dependent kinase inhibitors. This protein has been shown to form a stable complex with CDK4 or CDK6, and prevent the activation of the CDK kinases, thus function as a cell growth regulator that controls cell cycle G1 progression. The abundance of the transcript of this gene was found to oscillate in a cell-cycle dependent manner with the lowest expression at mid G1 and a maximal expression during S phase. The negative regulation of the cell cycle involved in this protein was shown to participate in repressing neuronal proliferation, as well as spermatogenesis. Two alternatively spliced variants of this gene, which encode an identical protein, have been reported. |
| NA | ENSG00000129351 | ILF3 | interleukin enhancer binding factor 3 | 3609 | This gene encodes a double-stranded RNA (dsRNA) binding protein that complexes with other proteins, dsRNAs, small noncoding RNAs, and mRNAs to regulate gene expression and stabilize mRNAs. This protein (NF90, ILF3) forms a heterodimer with a 45 kDa transcription factor (NF45, ILF2) required for T-cell expression of interleukin 2. This complex has been shown to affect the redistribution of nuclear mRNA to the cytoplasm. Knockdown of NF45 or NF90 protein retards cell growth, possibly by inhibition of mRNA stabilization. In contrast, an isoform (NF110) of this gene that is predominantly restricted to the nucleus has only minor effects on cell growth when its levels are reduced. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000213339 | QTRT1 | queuine tRNA-ribosyltransferase catalytic subunit 1 | 81890 | This gene encodes the catalytic subunit of tRNA-guanine transglycosylase. tRNA-guanine transglycosylase is a heterodimeric enzyme complex that plays a critical role in tRNA modification by synthesizing the 7-deazaguanosine queuosine, which is found in tRNAs that code for asparagine, aspartic acid, histidine and tyrosine. A pseudogene of this gene is located on the long arm of chromosome X. |
| NA | ENSG00000079805 | DNM2 | dynamin 2 | 1785 | Dynamins represent one of the subfamilies of GTP-binding proteins. These proteins share considerable sequence similarity over the N-terminal portion of the molecule, which contains the GTPase domain. Dynamins are associated with microtubules. They have been implicated in cell processes such as endocytosis and cell motility, and in alterations of the membrane that accompany certain activities such as bone resorption by osteoclasts. Dynamins bind many proteins that bind actin and other cytoskeletal proteins. Dynamins can also self-assemble, a process that stimulates GTPase activity. Five alternatively spliced transcripts encoding different proteins have been described. Additional alternatively spliced transcripts may exist, but their full-length nature has not been determined. |
| NA | ENSG00000099203 | TMED1 | transmembrane p24 trafficking protein 1 | 11018 | This gene belongs to the TMED (transmembrane emp24 domain-containing) protein family, which is involved in the vesicular trafficking of proteins. The protein encoded by this gene was identified by its interaction with interleukin 1 receptor-like 1 (IL1RL1) and may play a role in innate immunity. This protein lacks any similarity to other interleukin 1 ligands. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000142453 | CARM1 | coactivator associated arginine methyltransferase 1 | 10498 | This gene belongs to the protein arginine methyltransferase (PRMT) family. The encoded enzyme catalyzes the methylation of guanidino nitrogens of arginyl residues of proteins. The enzyme acts specifically on histones and other chromatin-associated proteins and is involved in regulation of gene expression. The enzyme may act in association with other proteins or within multi-protein complexes and may play a role in cell type-specific functions and cell lineage specification. A related pseudogene is located on chromosome 9. |
| NA | ENSG00000130733 | YIPF2 | Yip1 domain family member 2 | 78992 | NA |
| NA | ENSG00000142444 | C19orf52 | chromosome 19 open reading frame 52 | 90580 | NA |
| NA | ENSG00000127616 | SMARCA4 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 4 | 6597 | The protein encoded by this gene is a member of the SWI/SNF family of proteins and is similar to the brahma protein of Drosophila. Members of this family have helicase and ATPase activities and are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The encoded protein is part of the large ATP-dependent chromatin remodeling complex SNF/SWI, which is required for transcriptional activation of genes normally repressed by chromatin. In addition, this protein can bind BRCA1, as well as regulate the expression of the tumorigenic protein CD44. Mutations in this gene cause rhabdoid tumor predisposition syndrome type 2. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130164 | LDLR | low density lipoprotein receptor | 3949 | The low density lipoprotein receptor (LDLR) gene family consists of cell surface proteins involved in receptor-mediated endocytosis of specific ligands. Low density lipoprotein (LDL) is normally bound at the cell membrane and taken into the cell ending up in lysosomes where the protein is degraded and the cholesterol is made available for repression of microsomal enzyme 3-hydroxy-3-methylglutaryl coenzyme A (HMG CoA) reductase, the rate-limiting step in cholesterol synthesis. At the same time, a reciprocal stimulation of cholesterol ester synthesis takes place. Mutations in this gene cause the autosomal dominant disorder, familial hypercholesterolemia. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000161888 | SPC24 | SPC24, NDC80 kinetochore complex component | 147841 | NA |
| NA | ENSG00000197256 | KANK2 | KN motif and ankyrin repeat domains 2 | 25959 | NA |
| NA | ENSG00000130158 | DOCK6 | dedicator of cytokinesis 6 | 57572 | This gene encodes a member of the dedicator of cytokinesis (DOCK) family of atypical guanine nucleotide exchange factors. Guanine nucleotide exchange factors interact with small GTPases and are components of intracellular signaling networks. The encoded protein is a group C DOCK protein and plays a role in actin cytoskeletal reorganization by activating the Rho GTPases Cdc42 and Rac1. Mutations in this gene are associated with Adams-Oliver syndrome 2. |
| NA | ENSG00000105514 | RAB3D | RAB3D, member RAS oncogene family | 9545 | NA |
| NA | ENSG00000105518 | TMEM205 | transmembrane protein 205 | 374882 | NA |
| NA | ENSG00000183401 | CCDC159 | coiled-coil domain containing 159 | 126075 | NA |
| NA | ENSG00000105520 | PLPPR2 | phospholipid phosphatase related 2 | 64748 | NA |
| NA | ENSG00000173928 | SWSAP1 | SWIM-type zinc finger 7 associated protein 1 | 126074 | NA |
| NA | ENSG00000187266 | EPOR | erythropoietin receptor | 2057 | This gene encodes the erythropoietin receptor which is a member of the cytokine receptor family. Upon erythropoietin binding, this receptor activates Jak2 tyrosine kinase which activates different intracellular pathways including: Ras/MAP kinase, phosphatidylinositol 3-kinase and STAT transcription factors. The stimulated erythropoietin receptor appears to have a role in erythroid cell survival. Defects in the erythropoietin receptor may produce erythroleukemia and familial erythrocytosis. Dysregulation of this gene may affect the growth of certain tumors. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000205517 | RGL3 | ral guanine nucleotide dissociation stimulator like 3 | 57139 | NA |
| NA | ENSG00000130175 | PRKCSH | protein kinase C substrate 80K-H | 5589 | This gene encodes the beta-subunit of glucosidase II, an N-linked glycan-processing enzyme in the endoplasmic reticulum. The encoded protein is an acidic phosphoprotein known to be a substrate for protein kinase C. Mutations in this gene have been associated with the autosomal dominant polycystic liver disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000130159 | ECSIT | ECSIT signalling integrator | 51295 | NA |
| NA | ENSG00000130176 | CNN1 | calponin 1 | 1264 | NA |
| NA | ENSG00000130165 | ELOF1 | elongation factor 1 homolog | 84337 | NA |
| NA | ENSG00000198551 | ZNF627 | zinc finger protein 627 | 199692 | NA |
| NA | ENSG00000197933 | ZNF823 | zinc finger protein 823 | 55552 | NA |
| NA | ENSG00000171295 | ZNF440 | zinc finger protein 440 | 126070 | NA |
| NA | ENSG00000171291 | ZNF439 | zinc finger protein 439 | 90594 | NA |
| NA | ENSG00000198429 | ZNF69 | zinc finger protein 69 | 7620 | NA |
| NA | ENSG00000196757 | ZNF700 | zinc finger protein 700 | 90592 | NA |
| NA | ENSG00000197647 | ZNF433 | zinc finger protein 433 | 163059 | NA |
| NA | ENSG00000223547 | ZNF844 | zinc finger protein 844 | 284391 | NA |
| NA | ENSG00000257591 | ZNF625 | zinc finger protein 625 | 90589 | NA |
| NA | ENSG00000196646 | ZNF136 | zinc finger protein 136 | 7695 | NA |
| NA | ENSG00000197857 | ZNF44 | zinc finger protein 44 | 51710 | NA |
| NA | ENSG00000188868 | ZNF563 | zinc finger protein 563 | 147837 | NA |
| NA | ENSG00000198342 | ZNF442 | zinc finger protein 442 | 79973 | NA |
| NA | ENSG00000196466 | ZNF799 | zinc finger protein 799 | 90576 | NA |
| NA | ENSG00000180855 | ZNF443 | zinc finger protein 443 | 10224 | Zinc finger proteins (ZNFs) bind DNA and, through this binding, regulate gene transcription. Most ZNFs contain conserved C2H2 motifs and are classified as Kruppel-type zinc fingers. For a general description of these proteins, see ZNF91 (MIM 603971). |
| NA | ENSG00000173875 | ZNF791 | zinc finger protein 791 | 163049 | NA |
| NA | ENSG00000269242 | CTD-2192J16.22 | NA | ENSG00000269242 | NA |
| NA | ENSG00000104774 | MAN2B1 | mannosidase alpha class 2B member 1 | 4125 | This gene encodes an enzyme that hydrolyzes terminal, non-reducing alpha-D-mannose residues in alpha-D-mannosides. Its activity is necessary for the catabolism of N-linked carbohydrates released during glycoprotein turnover and it is member of family 38 of glycosyl hydrolases. The full length protein is processed in two steps. First, a 49 aa leader sequence is cleaved off and the remainder of the protein is processed into 3 peptides of 70 kDa, 42 kDa (D) and 13/15 kDa (E). Next, the 70 kDa peptide is further processed into three peptides (A, B and C). The A, B and C peptides are disulfide-linked. Defects in this gene have been associated with lysosomal alpha-mannosidosis. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000123154 | WDR83 | WD repeat domain 83 | 84292 | This gene encodes a member of the WD-40 protein family. The protein is proposed to function as a molecular scaffold for various multimeric protein complexes. The protein associates with several components of the extracellular signal-regulated kinase (ERK) pathway, and promotes ERK activity in response to serum or other signals. The protein also interacts with egl nine homolog 3 (EGLN3, also known as PHD3) and regulates expression of hypoxia-inducible factor 1, and has been purified as part of the spliceosome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105583 | WDR83OS | WD repeat domain 83 opposite strand | 51398 | NA |
| NA | ENSG00000132004 | FBXW9 | F-box and WD repeat domain containing 9 | 84261 | Members of the F-box protein family, such as FBXW9, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603034), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000105576 | TNPO2 | transportin 2 | 30000 | NA |
| NA | ENSG00000123144 | C19orf43 | chromosome 19 open reading frame 43 | 79002 | NA |
| NA | ENSG00000198356 | ASNA1 | arsA arsenite transporter, ATP-binding, homolog 1 (bacterial) | 439 | This gene represents the human homolog of the bacterial arsA gene, encoding the arsenite-stimulated ATPase component of the arsenite transporter responsible for resistance to arsenicals. This protein is also a central component of a transmembrane domain (TMD) recognition complex (TRC) that is involved in the post-translational delivery of tail-anchored (TA) proteins from the cytosol to the endoplasmic reticulum (ER). It recognizes and selectively binds the TMD of TA proteins in the cytosol, and delivers them to the ER for insertion. |
| NA | ENSG00000095066 | HOOK2 | hook microtubule-tethering protein 2 | 29911 | Hook proteins are cytosolic coiled-coil proteins that contain conserved N-terminal domains, which attach to microtubules, and more divergent C-terminal domains, which mediate binding to organelles. The Drosophila Hook protein is a component of the endocytic compartment. |
| NA | ENSG00000104889 | RNASEH2A | ribonuclease H2 subunit A | 10535 | The protein encoded by this gene is a component of the heterotrimeric type II ribonuclease H enzyme (RNAseH2). RNAseH2 is the major source of ribonuclease H activity in mammalian cells and endonucleolytically cleaves ribonucleotides. It is predicted to remove Okazaki fragment RNA primers during lagging strand DNA synthesis and to excise single ribonucleotides from DNA-DNA duplexes. Mutations in this gene cause Aicardi-Goutieres Syndrome (AGS), a an autosomal recessive neurological disorder characterized by progressive microcephaly and psychomotor retardation, intracranial calcifications, elevated levels of interferon-alpha and white blood cells in the cerebrospinal fluid. |
| NA | ENSG00000105613 | MAST1 | microtubule associated serine/threonine kinase 1 | 22983 | NA |
| NA | ENSG00000105612 | DNASE2 | deoxyribonuclease II, lysosomal | 1777 | This gene encodes a member of the DNase family. The protein, located in the lysosome, hydrolyzes DNA under acidic conditions and mediates the breakdown of DNA during erythropoiesis and apoptosis. Two codominant alleles have been characterized, DNASE2L (low activity) and DNASE2H (high activity), that differ at one nucleotide in the promoter region. The DNASE2*H allele is represented in this record. |
| NA | ENSG00000105607 | GCDH | glutaryl-CoA dehydrogenase | 2639 | The protein encoded by this gene belongs to the acyl-CoA dehydrogenase family. It catalyzes the oxidative decarboxylation of glutaryl-CoA to crotonyl-CoA and CO(2) in the degradative pathway of L-lysine, L-hydroxylysine, and L-tryptophan metabolism. It uses electron transfer flavoprotein as its electron acceptor. The enzyme exists in the mitochondrial matrix as a homotetramer of 45-kD subunits. Mutations in this gene result in the metabolic disorder glutaric aciduria type 1, which is also known as glutaric acidemia type I. Alternative splicing of this gene results in multiple transcript variants. A related pseudogene has been identified on chromosome 12. |
| NA | ENSG00000179115 | FARSA | phenylalanyl-tRNA synthetase alpha subunit | 2193 | Aminoacyl-tRNA synthetases are a class of enzymes that charge tRNAs with their cognate amino acids. This gene encodes a product which is similar to the catalytic subunit of prokaryotic and Saccharomyces cerevisiae phenylalanyl-tRNA synthetases (PheRS). This gene product has been shown to be expressed in a tumor-selective and cell cycle stage- and differentiation-dependent manner, the first member of the tRNA synthetase gene family shown to exhibit this type of regulated expression |
| NA | ENSG00000179218 | CALR | calreticulin | 811 | Calreticulin is a multifunctional protein that acts as a major Ca(2+)-binding (storage) protein in the lumen of the endoplasmic reticulum. It is also found in the nucleus, suggesting that it may have a role in transcription regulation. Calreticulin binds to the synthetic peptide KLGFFKR, which is almost identical to an amino acid sequence in the DNA-binding domain of the superfamily of nuclear receptors. Calreticulin binds to antibodies in certain sera of systemic lupus and Sjogren patients which contain anti-Ro/SSA antibodies, it is highly conserved among species, and it is located in the endoplasmic and sarcoplasmic reticulum where it may bind calcium. The amino terminus of calreticulin interacts with the DNA-binding domain of the glucocorticoid receptor and prevents the receptor from binding to its specific glucocorticoid response element. Calreticulin can inhibit the binding of androgen receptor to its hormone-responsive DNA element and can inhibit androgen receptor and retinoic acid receptor transcriptional activities in vivo, as well as retinoic acid-induced neuronal differentiation. Thus, calreticulin can act as an important modulator of the regulation of gene transcription by nuclear hormone receptors. Systemic lupus erythematosus is associated with increased autoantibody titers against calreticulin but calreticulin is not a Ro/SS-A antigen. Earlier papers referred to calreticulin as an Ro/SS-A antigen but this was later disproven. Increased autoantibody titer against human calreticulin is found in infants with complete congenital heart block of both the IgG and IgM classes. |
| NA | ENSG00000179271 | GADD45GIP1 | GADD45G interacting protein 1 | 90480 | This gene encodes a nuclear-localized protein that may be induced by p53 and regulates the cell cycle by inhibiting G1 to S phase progression. The encoded protein may interact with other cell cycle regulators. |
| NA | ENSG00000104907 | TRMT1 | tRNA methyltransferase 1 | 55621 | NA |
| NA | ENSG00000160877 | NACC1 | nucleus accumbens associated 1 | 112939 | This gene encodes a member of the BTB/POZ protein family. BTB/POZ proteins are involved in several cellular processes including proliferation, apoptosis and transcription regulation. The encoded protein is a transcriptional repressor that plays a role in stem cell self-renewal and pluripotency maintenance. The encoded protein also suppresses transcription of the candidate tumor suppressor Gadd45GIP1, and expression of this gene may play a role in the progression of multiple types of cancer. A pseudogene of this gene is located on the short arm of chromosome 9. |
| NA | ENSG00000104915 | STX10 | syntaxin 10 | 8677 | This gene belongs to the syntaxin family and encodes a soluble N-ethylmaleimide sensitive factor attachment protein receptor (SNARE). The encoded protein is involved in docking and fusion events at the Golgi apparatus. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160888 | IER2 | immediate early response 2 | 9592 | NA |
| NA | ENSG00000141837 | CACNA1A | calcium voltage-gated channel subunit alpha1 A | 773 | Voltage-dependent calcium channels mediate the entry of calcium ions into excitable cells, and are also involved in a variety of calcium-dependent processes, including muscle contraction, hormone or neurotransmitter release, and gene expression. Calcium channels are multisubunit complexes composed of alpha-1, beta, alpha-2/delta, and gamma subunits. The channel activity is directed by the pore-forming alpha-1 subunit, whereas, the others act as auxiliary subunits regulating this activity. The distinctive properties of the calcium channel types are related primarily to the expression of a variety of alpha-1 isoforms, alpha-1A, B, C, D, E, and S. This gene encodes the alpha-1A subunit, which is predominantly expressed in neuronal tissue. Mutations in this gene are associated with 2 neurologic disorders, familial hemiplegic migraine and episodic ataxia 2. This gene also exhibits polymorphic variation due to (CAG)n-repeats. Multiple transcript variants encoding different isoforms have been found for this gene. In one set of transcript variants, the (CAG)n-repeats occur in the 3’ UTR, and are not associated with any disease. But in another set of variants, an insertion extends the coding region to include the (CAG)n-repeats which encode a polyglutamine tract. Expansion of the (CAG)n-repeats from the normal 4-16 to 21-28 in the coding region is associated with spinocerebellar ataxia 6. |
| NA | ENSG00000104957 | CCDC130 | coiled-coil domain containing 130 | 81576 | NA |
| NA | ENSG00000037757 | MRI1 | methylthioribose-1-phosphate isomerase 1 | 84245 | NA |
| NA | ENSG00000104979 | C19orf53 | chromosome 19 open reading frame 53 | 28974 | NA |
| NA | ENSG00000132003 | ZSWIM4 | zinc finger SWIM-type containing 4 | 65249 | NA |
| NA | ENSG00000132016 | C19orf57 | chromosome 19 open reading frame 57 | 79173 | NA |
| NA | ENSG00000132024 | CC2D1A | coiled-coil and C2 domain containing 1A | 54862 | This gene encodes a transcriptional repressor that binds to a conserved 14-bp 5’-repressor element and regulates expression of the 5-hydroxytryptamine (serotonin) receptor 1A gene in neuronal cells. The DNA binding and transcriptional repressor activities of the protein are inhibited by calcium. A mutation in this gene results in nonsyndromic mental retardation-3. |
| NA | ENSG00000132017 | DCAF15 | DDB1 and CUL4 associated factor 15 | 90379 | NA |
| NA | ENSG00000132005 | RFX1 | regulatory factor X1 | 5989 | This gene is a member of the regulatory factor X gene family, which encodes transcription factors that contain a highly-conserved winged helix DNA binding domain. The protein encoded by this gene is structurally related to regulatory factors X2, X3, X4, and X5. It is a transcriptional activator that can bind DNA as a monomer or as a heterodimer with RFX family members X2, X3, and X5, but not with X4. This protein binds to the X-boxes of MHC class II genes and is essential for their expression. Also, it can bind to an inverted repeat that is required for expression of hepatitis B virus genes. |
| NA | ENSG00000104998 | IL27RA | interleukin 27 receptor subunit alpha | 9466 | In mice, CD4+ helper T-cells differentiate into type 1 (Th1) cells, which are critical for cell-mediated immunity, predominantly under the influence of IL12. Also, IL4 influences their differentiation into type 2 (Th2) cells, which are critical for most antibody responses. Mice deficient in these cytokines, their receptors, or associated transcription factors have impaired, but are not absent of, Th1 or Th2 immune responses. This gene encodes a protein which is similar to the mouse T-cell cytokine receptor Tccr at the amino acid level, and is predicted to be a glycosylated transmembrane protein. |
| NA | ENSG00000187867 | PALM3 | paralemmin 3 | 342979 | NA |
| NA | ENSG00000141858 | SAMD1 | sterile alpha motif domain containing 1 | ENSG00000141858 | NA |
| NA | ENSG00000072062 | PRKACA | protein kinase cAMP-activated catalytic subunit alpha | 5566 | This gene encodes one of the catalytic subunits of protein kinase A, which exists as a tetrameric holoenzyme with two regulatory subunits and two catalytic subunits, in its inactive form. cAMP causes the dissociation of the inactive holoenzyme into a dimer of regulatory subunits bound to four cAMP and two free monomeric catalytic subunits. Four different regulatory subunits and three catalytic subunits have been identified in humans. cAMP-dependent phosphorylation of proteins by protein kinase A is important to many cellular processes, including differentiation, proliferation, and apoptosis. Constitutive activation of this gene caused either by somatic mutations, or genomic duplications of regions that include this gene, have been associated with hyperplasias and adenomas of the adrenal cortex and are linked to corticotropin-independent Cushing’s syndrome. Alternative splicing results in multiple transcript variants encoding different isoforms. Tissue-specific isoforms that differ at the N-terminus have been described, and these isoforms may differ in the post-translational modifications that occur at the N-terminus of some isoforms. |
| NA | ENSG00000105011 | ASF1B | anti-silencing function 1B histone chaperone | 55723 | This gene encodes a member of the H3/H4 family of histone chaperone proteins and is similar to the anti-silencing function-1 gene in yeast. The encoded protein is the substrate of the tousled-like kinase family of cell cycle-regulated kinases, and may play a key role in modulating the nucleosome structure of chromatin by ensuring a constant supply of histones at sites of nucleosome assembly. |
| NA | ENSG00000072071 | ADGRL1 | adhesion G protein-coupled receptor L1 | 22859 | This gene encodes a member of the latrophilin subfamily of G-protein coupled receptors (GPCR). Latrophilins may function in both cell adhesion and signal transduction. In experiments with non-human species, endogenous proteolytic cleavage within a cysteine-rich GPS (G-protein-coupled-receptor proteolysis site) domain resulted in two subunits (a large extracellular N-terminal cell adhesion subunit and a subunit with substantial similarity to the secretin/calcitonin family of GPCRs) being non-covalently bound at the cell membrane. Latrophilin-1 has been shown to recruit the neurotoxin from black widow spider venom, alpha-latrotoxin, to the synapse plasma membrane. Alternative splicing results in multiple variants encoding distinct isoforms. |
| NA | ENSG00000123146 | ADGRE5 | adhesion G protein-coupled receptor E5 | 976 | This gene encodes a member of the EGF-TM7 subfamily of adhesion G protein-coupled receptors, which mediate cell-cell interactions. These proteins are cleaved by self-catalytic proteolysis into a large extracellular subunit and seven-span transmembrane subunit, which associate at the cell surface as a receptor complex. The encoded protein may play a role in cell adhesion as well as leukocyte recruitment, activation and migration, and contains multiple extracellular EGF-like repeats which mediate binding to chondroitin sulfate and the cell surface complement regulatory protein CD55. Expression of this gene may play a role in the progression of several types of cancer. Alternatively spliced transcript variants encoding multiple isoforms with 3 to 5 EGF-like repeats have been observed for this gene. This gene is found in a cluster with other EGF-TM7 genes on the short arm of chromosome 19. |
| NA | ENSG00000123136 | DDX39A | DEAD-box helicase 39A | 10212 | This gene encodes a member of the DEAD box protein family. These proteins are characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD) and are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of the DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene is thought to play a role in the prognosis of patients with gastrointestinal stromal tumors. A pseudogene of this gene is present on chromosome 13. Alternate splicing results in multiple transcript variants. Additional alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000123143 | PKN1 | protein kinase N1 | 5585 | The protein encoded by this gene belongs to the protein kinase C superfamily. This kinase is activated by Rho family of small G proteins and may mediate the Rho-dependent signaling pathway. This kinase can be activated by phospholipids and by limited proteolysis. The 3-phosphoinositide dependent protein kinase-1 (PDPK1/PDK1) is reported to phosphorylate this kinase, which may mediate insulin signals to the actin cytoskeleton. The proteolytic activation of this kinase by caspase-3 or related proteases during apoptosis suggests its role in signal transduction related to apoptosis. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000123159 | GIPC1 | GIPC PDZ domain containing family member 1 | 10755 | GIPC1 is a scaffolding protein that regulates cell surface receptor expression and trafficking (Lee et al., 2008 [PubMed 18775991]). |
| NA | ENSG00000132002 | DNAJB1 | DnaJ heat shock protein family (Hsp40) member B1 | 3337 | This gene encodes a member of the DnaJ or Hsp40 (heat shock protein 40 kD) family of proteins. DNAJ family members are characterized by a highly conserved amino acid stretch called the ‘J-domain’ and function as one of the two major classes of molecular chaperones involved in a wide range of cellular events, such as protein folding and oligomeric protein complex assembly. The encoded protein is a molecular chaperone that stimulates the ATPase activity of Hsp70 heat-shock proteins in order to promote protein folding and prevent misfolded protein aggregation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000099797 | TECR | trans-2,3-enoyl-CoA reductase | 9524 | This gene encodes a multi-pass membrane protein that resides in the endoplasmic reticulum, and belongs to the steroid 5-alpha reductase family. The elongation of microsomal long and very long chain fatty acid consists of 4 sequential reactions. This protein catalyzes the final step, reducing trans-2,3-enoyl-CoA to saturated acyl-CoA. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000099795 | NDUFB7 | NADH:ubiquinone oxidoreductase subunit B7 | 4713 | The protein encoded by this gene is a subunit of the multisubunit NADH:ubiquinone oxidoreductase (complex I). Mammalian complex I is composed of 45 different subunits. It is located at the mitochondrial inner membrane. This protein has NADH dehydrogenase activity and oxidoreductase activity. It transfers electrons from NADH to the respiratory chain. The immediate electron acceptor for the enzyme is believed to be ubiquinone. |
| NA | ENSG00000160961 | ZNF333 | zinc finger protein 333 | 84449 | NA |
| NA | ENSG00000127507 | ADGRE2 | adhesion G protein-coupled receptor E2 | 30817 | This gene encodes a member of the class B seven-span transmembrane (TM7) subfamily of G-protein coupled receptors. These proteins are characterized by an extended extracellular region with a variable number of N-terminal epidermal growth factor-like domains coupled to a TM7 domain via a mucin-like spacer domain. The encoded protein is expressed mainly in myeloid cells where it promotes cell-cell adhesion through interaction with chondroitin sulfate chains. This gene is situated in a cluster of related genes on chromosome 19. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000105143 | SLC1A6 | solute carrier family 1 member 6 | 6511 | NA |
| NA | ENSG00000105137 | SYDE1 | synapse defective 1, Rho GTPase, homolog 1 (C. elegans) | 85360 | NA |
| NA | ENSG00000105135 | ILVBL | ilvB (bacterial acetolactate synthase)-like | 10994 | The protein encoded by this gene shares similarity with several thiamine pyrophosphate-binding proteins identified in bacteria, yeast, and plants. The highest degree of similarity is found with bacterial acetolactate synthases (AHAS), which are enzymes that catalyze the first step in branched-chain amino acid biosynthesis. |
| NA | ENSG00000074181 | NOTCH3 | notch 3 | 4854 | This gene encodes the third discovered human homologue of the Drosophilia melanogaster type I membrane protein notch. In Drosophilia, notch interaction with its cell-bound ligands (delta, serrate) establishes an intercellular signalling pathway that plays a key role in neural development. Homologues of the notch-ligands have also been identified in human, but precise interactions between these ligands and the human notch homologues remains to be determined. Mutations in NOTCH3 have been identified as the underlying cause of cerebral autosomal dominant arteriopathy with subcortical infarcts and leukoencephalopathy (CADASIL). |
| NA | ENSG00000105131 | EPHX3 | epoxide hydrolase 3 | 79852 | NA |
| NA | ENSG00000141867 | BRD4 | bromodomain containing 4 | 23476 | The protein encoded by this gene is homologous to the murine protein MCAP, which associates with chromosomes during mitosis, and to the human RING3 protein, a serine/threonine kinase. Each of these proteins contains two bromodomains, a conserved sequence motif which may be involved in chromatin targeting. This gene has been implicated as the chromosome 19 target of translocation t(15;19)(q13;p13.1), which defines an upper respiratory tract carcinoma in young people. Two alternatively spliced transcript variants have been described. |
| NA | ENSG00000105127 | AKAP8 | A-kinase anchoring protein 8 | 10270 | This gene encodes a member of the A-kinase anchor protein family. A-kinase anchor proteins are scaffold proteins that contain a binding domain for the RI/RII subunit of protein kinase A (PKA) and recruit PKA and other signaling molecules to specific subcellular locations. This gene encodes a nuclear A-kinase anchor protein that binds to the RII alpha subunit of PKA and may play a role in chromosome condensation during mitosis by targeting PKA and the condensin complex to chromatin. A pseudogene of this gene is located on the short arm of chromosome 9. |
| NA | ENSG00000011243 | AKAP8L | A-kinase anchoring protein 8 like | 26993 | NA |
| NA | ENSG00000011451 | WIZ | widely interspaced zinc finger motifs | 58525 | NA |
| NA | ENSG00000167460 | TPM4 | tropomyosin 4 | 7171 | This gene encodes a member of the tropomyosin family of actin-binding proteins involved in the contractile system of striated and smooth muscles and the cytoskeleton of non-muscle cells. Tropomyosins are dimers of coiled-coil proteins that polymerize end-to-end along the major groove in most actin filaments. They provide stability to the filaments and regulate access of other actin-binding proteins. In muscle cells, they regulate muscle contraction by controlling the binding of myosin heads to the actin filament. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000167461 | RAB8A | RAB8A, member RAS oncogene family | 4218 | The protein encoded by this gene is a member of the RAS superfamily which are small GTP/GDP-binding proteins with an average size of 200 amino acids. The RAS-related proteins of the RAB/YPT family may play a role in the transport of proteins from the endoplasmic reticulum to the Golgi and the plasma membrane. This protein shares 97%, 96%, and 51% similarity with the dog RAB8, mouse MEL, and mouse YPT1 proteins, respectively and contains the 4 GTP/GDP-binding sites that are present in all the RAS proteins. The putative effector-binding site of this protein is similar to that of the RAB/YPT proteins. However, this protein contains a C-terminal CAAX motif that is characteristic of many RAS superfamily members but which is not found in YPT1 and the majority of RAB proteins. Although this gene was isolated as a transforming gene from a melanoma cell line, no linkage between MEL and malignant melanoma has been demonstrable. This oncogene is located 800 kb distal to MY09B on chromosome 19p13.1. |
| NA | ENSG00000105058 | FAM32A | family with sequence similarity 32 member A | 26017 | NA |
| NA | ENSG00000072958 | AP1M1 | adaptor related protein complex 1 mu 1 subunit | 8907 | The protein encoded by this gene is the medium chain of the trans-Golgi network clathrin-associated protein complex AP-1. The other components of this complex are beta-prime-adaptin, gamma-adaptin, and the small chain AP1S1. This complex is located at the Golgi vesicle and links clathrin to receptors in coated vesicles. These vesicles are involved in endocytosis and Golgi processing. Alternatively spliced transcript variants encoding distinct protein isoforms have been found for this gene. |
| NA | ENSG00000127527 | EPS15L1 | epidermal growth factor receptor pathway substrate 15-like 1 | 58513 | NA |
| NA | ENSG00000105072 | C19orf44 | chromosome 19 open reading frame 44 | 84167 | NA |
| NA | ENSG00000085872 | CHERP | calcium homeostasis endoplasmic reticulum protein | 10523 | NA |
| NA | ENSG00000127526 | SLC35E1 | solute carrier family 35 member E1 | 79939 | NA |
| NA | ENSG00000105085 | MED26 | mediator complex subunit 26 | 9441 | The activation of gene transcription is a multistep process that is triggered by factors that recognize transcriptional enhancer sites in DNA. These factors work with co-activators to direct transcriptional initiation by the RNA polymerase II apparatus. The protein encoded by this gene is a subunit of the CRSP (cofactor required for SP1 activation) complex, which, along with TFIID, is required for efficient activation by SP1. This protein is also a component of other multisubunit complexes e.g. thyroid hormone receptor-(TR-) associated proteins which interact with TR and facilitate TR function on DNA templates in conjunction with initiation factors and cofactors. |
| NA | ENSG00000214046 | SMIM7 | small integral membrane protein 7 | 79086 | NA |
| NA | ENSG00000072954 | TMEM38A | transmembrane protein 38A | 79041 | NA |
| NA | ENSG00000127511 | SIN3B | SIN3 transcription regulator family member B | 23309 | NA |
| NA | ENSG00000160111 | CPAMD8 | C3 and PZP like, alpha-2-macroglobulin domain containing 8 | 27151 | CPAMD8 belongs to the complement component-3 (C3; MIM 120700)/alpha-2-macroglobulin (A2M; MIM 103950) family of proteins, which are involved in innate immunity and damage control. Complement components recognize and eliminate pathogens by direct binding or by mediating opsonization/phagocytosis and intracellular killing, and A2M is a broad-spectrum protease inhibitor (Li et al., 2004 [PubMed 15177561]). |
| NA | ENSG00000099331 | MYO9B | myosin IXB | 4650 | This gene encodes a member of the myosin family of actin-based molecular motor heavy chain proteins. The protein represents an unconventional myosin; it should not be confused with the conventional non-muscle myosin-9 (MYH9). The protein has four IQ motifs located in the neck domain that bind calmodulin, which serves as a light chain. The protein complex has a single-headed structure and exhibits processive movement on actin filaments toward the minus-end. The protein also has rho-GTPase activity. Polymorphisms in this gene are associated with celiac disease and ulcerative colitis susceptibility. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000099330 | OCEL1 | occludin/ELL domain containing 1 | 79629 | NA |
| NA | ENSG00000160113 | NR2F6 | nuclear receptor subfamily 2 group F member 6 | 2063 | NA |
| NA | ENSG00000130307 | USHBP1 | USH1 protein network component harmonin binding protein 1 | 83878 | NA |
| NA | ENSG00000105393 | BABAM1 | BRISC and BRCA1 A complex member 1 | 29086 | NA |
| NA | ENSG00000160117 | ANKLE1 | ankyrin repeat and LEM domain containing 1 | 126549 | NA |
| NA | ENSG00000127220 | ABHD8 | abhydrolase domain containing 8 | 79575 | This gene is upstream of, and in a head-to-head orientation with the gene for the mitochondrial ribosomal protein L34. The predicted protein contains alpha/beta hydrolase fold and secretory lipase domains. |
| NA | ENSG00000130312 | MRPL34 | mitochondrial ribosomal protein L34 | 64981 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000130311 | DDA1 | DET1 and DDB1 associated 1 | 79016 | NA |
| NA | ENSG00000074855 | ANO8 | anoctamin 8 | 57719 | NA |
| NA | ENSG00000130299 | GTPBP3 | GTP binding protein 3 (mitochondrial) | 84705 | This locus encodes a GTP-binding protein. The encoded protein is localized to the mitochondria and may play a role in mitochondrial tRNA modification. Polymorphisms at this locus may be associated with severity of aminoglycoside-induced deafness, a disease associated with a mutation in the 12S rRNA. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000141971 | MVB12A | multivesicular body subunit 12A | 93343 | NA |
| NA | ENSG00000130304 | SLC27A1 | solute carrier family 27 member 1 | 376497 | NA |
| NA | ENSG00000130313 | PGLS | 6-phosphogluconolactonase | 25796 | NA |
| NA | ENSG00000130309 | COLGALT1 | collagen beta(1-O)galactosyltransferase 1 | 79709 | The protein encoded by this gene is one of two enzymes that transfers galactose moieties to hydroxylysine residues of collagen and mannose binding lectin. This gene is constitutively expressed and encodes a soluble protein that localizes to the endoplasmic reticulum. |
| NA | ENSG00000130477 | UNC13A | unc-13 homolog A (C. elegans) | 23025 | This gene encodes a member of the UNC13 family. UNC13 proteins bind to phorbol esters and diacylglycerol and play important roles in neurotransmitter release at synapses. Single nucleotide polymorphisms in this gene may be associated with sporadic amyotrophic lateral sclerosis. |
| NA | ENSG00000130479 | MAP1S | microtubule associated protein 1S | 55201 | NA |
| NA | ENSG00000130475 | FCHO1 | FCH domain only 1 | 23149 | NA |
| NA | ENSG00000105639 | JAK3 | Janus kinase 3 | 3718 | The protein encoded by this gene is a member of the Janus kinase (JAK) family of tyrosine kinases involved in cytokine receptor-mediated intracellular signal transduction. It is predominantly expressed in immune cells and transduces a signal in response to its activation via tyrosine phosphorylation by interleukin receptors. Mutations in this gene are associated with autosomal SCID (severe combined immunodeficiency disease). |
| NA | ENSG00000105640 | RPL18A | ribosomal protein L18a | 6142 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a member of the L18AE family of ribosomal proteins that is a component of the 60S subunit. The encoded protein may play a role in viral replication by interacting with the hepatitis C virus internal ribosome entry site (IRES). This gene is co-transcribed with the U68 snoRNA, located within the third intron. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed throughout the genome. |
| NA | ENSG00000007080 | CCDC124 | coiled-coil domain containing 124 | 115098 | NA |
| NA | ENSG00000105642 | KCNN1 | potassium calcium-activated channel subfamily N member 1 | 3780 | Action potentials in vertebrate neurons are followed by an afterhyperpolarization (AHP) that may persist for several seconds and may have profound consequences for the firing pattern of the neuron. Each component of the AHP is kinetically distinct and is mediated by different calcium-activated potassium channels. The protein encoded by this gene is activated before membrane hyperpolarization and is thought to regulate neuronal excitability by contributing to the slow component of synaptic AHP. The encoded protein is an integral membrane protein that forms a voltage-independent calcium-activated channel with three other calmodulin-binding subunits. This gene is a member of the KCNN family of potassium channel genes. |
| NA | ENSG00000099308 | MAST3 | microtubule associated serine/threonine kinase 3 | 23031 | NA |
| NA | ENSG00000105647 | PIK3R2 | phosphoinositide-3-kinase regulatory subunit 2 | 5296 | Phosphatidylinositol 3-kinase (PI3K) is a lipid kinase that phosphorylates phosphatidylinositol and similar compounds, creating second messengers important in growth signaling pathways. PI3K functions as a heterodimer of a regulatory and a catalytic subunit. The protein encoded by this gene is a regulatory component of PI3K. Two transcript variants, one protein coding and the other non-protein coding, have been found for this gene. |
| NA | ENSG00000254858 | MPV17L2 | MPV17 mitochondrial inner membrane protein like 2 | 84769 | NA |
| NA | ENSG00000105649 | RAB3A | RAB3A, member RAS oncogene family | 5864 | NA |
| NA | ENSG00000105650 | LOC729966 | uncharacterized LOC729966 | 729966 | NA |
| NA | ENSG00000105650 | PDE4C | phosphodiesterase 4C | 5143 | The protein encoded by this gene belongs to the cyclic nucleotide phosphodiesterase (PDE) family, and PDE4 subfamily. This PDE hydrolyzes the second messenger, cAMP, which is a regulator and mediator of a number of cellular responses to extracellular signals. Thus, by regulating the cellular concentration of cAMP, this protein plays a key role in many important physiological processes. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000130522 | JUND | jun D proto-oncogene | 3727 | The protein encoded by this intronless gene is a member of the JUN family, and a functional component of the AP1 transcription factor complex. This protein has been proposed to protect cells from p53-dependent senescence and apoptosis. Alternative translation initiation site usage results in the production of different isoforms (PMID:12105216). |
| NA | ENSG00000130520 | LSM4 | LSM4 homolog, U6 small nuclear RNA and mRNA degradation associated | 25804 | This gene encodes a member of the LSm family of RNA-binding proteins. LSm proteins form stable heteromers that bind specifically to the 3’-terminal oligo(U) tract of U6 snRNA and may play a role in pre-mRNA splicing by mediating U4/U6 snRNP formation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000130517 | PGPEP1 | pyroglutamyl-peptidase I | 54858 | Pyroglutamyl peptidase I (EC 3.4.19.3) catalyzes the hydrolysis of N-terminal pyroglutamyl residues from oligopeptides and proteins. |
| NA | ENSG00000130511 | SSBP4 | single stranded DNA binding protein 4 | 170463 | NA |
| NA | ENSG00000105655 | ISYNA1 | inositol-3-phosphate synthase 1 | 51477 | This gene encodes an inositol-3-phosphate synthase enzyme. The encoded protein plays a critical role in the myo-inositol biosynthesis pathway by catalyzing the rate-limiting conversion of glucose 6-phosphate to myoinositol 1-phosphate. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the short arm of chromosome 4. |
| NA | ENSG00000105656 | ELL | elongation factor for RNA polymerase II | 8178 | NA |
| NA | ENSG00000105701 | FKBP8 | FK506 binding protein 8 | 23770 | The protein encoded by this gene is a member of the immunophilin protein family, which play a role in immunoregulation and basic cellular processes involving protein folding and trafficking. Unlike the other members of the family, this encoded protein does not seem to have PPIase/rotamase activity. It may have a role in neurons associated with memory function. |
| NA | ENSG00000105700 | KXD1 | KxDL motif containing 1 | 79036 | NA |
| NA | ENSG00000221983 | UBA52 | ubiquitin A-52 residue ribosomal protein fusion product 1 | 7311 | Ubiquitin is a highly conserved nuclear and cytoplasmic protein that has a major role in targeting cellular proteins for degradation by the 26S proteosome. It is also involved in the maintenance of chromatin structure, the regulation of gene expression, and the stress response. Ubiquitin is synthesized as a precursor protein consisting of either polyubiquitin chains or a single ubiquitin moiety fused to an unrelated protein. This gene encodes a fusion protein consisting of ubiquitin at the N terminus and ribosomal protein L40 at the C terminus, a C-terminal extension protein (CEP). Multiple processed pseudogenes derived from this gene are present in the genome. |
| NA | ENSG00000006016 | CRLF1 | cytokine receptor-like factor 1 | 9244 | This gene encodes a member of the cytokine type I receptor family. The protein forms a secreted complex with cardiotrophin-like cytokine factor 1 and acts on cells expressing ciliary neurotrophic factor receptors. The complex can promote survival of neuronal cells. Mutations in this gene result in Crisponi syndrome and cold-induced sweating syndrome. |
| NA | ENSG00000006015 | C19orf60 | chromosome 19 open reading frame 60 | 55049 | NA |
| NA | ENSG00000105696 | TMEM59L | transmembrane protein 59 like | 25789 | This gene encodes a predicted type-I membrane glycoprotein. The encoded protein may play a role in functioning of the central nervous system. |
| NA | ENSG00000167487 | KLHL26 | kelch like family member 26 | 55295 | NA |
| NA | ENSG00000105662 | CRTC1 | CREB regulated transcription coactivator 1 | 23373 | NA |
| NA | ENSG00000005007 | UPF1 | UPF1, RNA helicase and ATPase | 5976 | This gene encodes a protein that is part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. mRNA surveillance detects exported mRNAs with truncated open reading frames and initiates nonsense-mediated mRNA decay (NMD). When translation ends upstream from the last exon-exon junction, this triggers NMD to degrade mRNAs containing premature stop codons. This protein is located only in the cytoplasm. When translation ends, it interacts with the protein that is a functional homolog of yeast Upf2p to trigger mRNA decapping. Use of multiple polyadenylation sites has been noted for this gene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000223802 | GDF1 | growth differentiation factor 1 | 2657 | This gene encodes a member of the bone morphogenetic protein (BMP) family and the TGF-beta superfamily. This group of proteins is characterized by a polybasic proteolytic processing site that is cleaved to produce a mature protein containing seven conserved cysteine residues. The members of this family are regulators of cell growth and differentiation in both embryonic and adult tissues. Studies in rodents suggest that this protein is involved in the establishment of left-right asymmetry in early embryogenesis and in neural development in later embryogenesis. This protein is transcribed from a bicistronic mRNA that also encodes the longevity assurance gene. Mutations in this gene are associated with several congenital cardiovascular malformations. |
| NA | ENSG00000223802 | CERS1 | ceramide synthase 1 | 10715 | This gene encodes a member of the bone morphogenetic protein (BMP) family and the TGF-beta superfamily. This group of proteins is characterized by a polybasic proteolytic processing site that is cleaved to produce a mature protein containing seven conserved cysteine residues. Members of this family are regulators of cell growth and differentiation in both embryonic and adult tissues. Studies in yeast suggest that the encoded protein is involved in aging. This protein is transcribed from a monocistronic mRNA as well as a bicistronic mRNA, which also encodes growth differentiation factor 1. |
| NA | ENSG00000105669 | COPE | coatomer protein complex subunit epsilon | 11316 | The product of this gene is an epsilon subunit of coatomer protein complex. Coatomer is a cytosolic protein complex that binds to dilysine motifs and reversibly associates with Golgi non-clathrin-coated vesicles. It is required for budding from Golgi membranes, and is essential for the retrograde Golgi-to-ER transport of dilysine-tagged proteins. Coatomer complex consists of at least the alpha, beta, beta’, gamma, delta, epsilon and zeta subunits. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000105671 | DDX49 | DEAD-box helicase 49 | 54555 | NA |
| NA | ENSG00000051128 | HOMER3 | homer scaffolding protein 3 | 9454 | This gene encodes a member of the HOMER family of postsynaptic density scaffolding proteins that share a similar domain structure consisting of an N-terminal Enabled/vasodilator-stimulated phosphoprotein homology 1 domain which mediates protein-protein interactions, and a carboxy-terminal coiled-coil domain and two leucine zipper motifs that are involved in self-oligomerization. The encoded protein binds numerous other proteins including group I metabotropic glutamate receptors, inositol 1,4,5-trisphosphate receptors and amyloid precursor proteins and has been implicated in diverse biological functions such as neuronal signaling, T-cell activation and trafficking of amyloid beta peptides. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000064607 | SUGP2 | SURP and G-patch domain containing 2 | 10147 | This gene encodes a member of the arginine/serine-rich family of splicing factors. The encoded protein functions in mRNA processing. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000105676 | ARMC6 | armadillo repeat containing 6 | 93436 | The function of this gene’s protein product has not been determined. A related protein in mouse suggests that this protein has a conserved function. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000181035 | SLC25A42 | solute carrier family 25 member 42 | 284439 | This gene encodes a solute carrier family 25 protein. Solute carrier family 25 proteins are localized to mitochondria and play critical roles in the transport of molecules across the inner mitochondrial membrane. The encoded protein is a mitochondrial transporter for coenzyme A (CoA) and adenosine 3’,5’-diphosphate. |
| NA | ENSG00000064545 | TMEM161A | transmembrane protein 161A | 54929 | NA |
| NA | ENSG00000254901 | BORCS8 | BLOC-1 related complex subunit 8 | 729991 | NA |
| NA | ENSG00000064490 | RFXANK | regulatory factor X associated ankyrin containing protein | 8625 | Major histocompatibility (MHC) class II molecules are transmembrane proteins that have a central role in development and control of the immune system. The protein encoded by this gene, along with regulatory factor X-associated protein and regulatory factor-5, forms a complex that binds to the X box motif of certain MHC class II gene promoters and activates their transcription. Once bound to the promoter, this complex associates with the non-DNA-binding factor MHC class II transactivator, which controls the cell type specificity and inducibility of MHC class II gene expression. This protein contains ankyrin repeats involved in protein-protein interactions. Mutations in this gene have been linked to bare lymphocyte syndrome type II, complementation group B. Multiple alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000184162 | NR2C2AP | nuclear receptor 2C2 associated protein | 126382 | NA |
| NA | ENSG00000130287 | NCAN | neurocan | 1463 | Neurocan is a chondroitin sulfate proteoglycan thought to be involved in the modulation of cell adhesion and migration. |
| NA | ENSG00000187664 | HAPLN4 | hyaluronan and proteoglycan link protein 4 | 404037 | NA |
| NA | ENSG00000105705 | SUGP1 | SURP and G-patch domain containing 1 | 57794 | SF4 is a member of the SURP family of splicing factors. |
| NA | ENSG00000129933 | MAU2 | MAU2 sister chromatid cohesion factor | 23383 | NA |
| NA | ENSG00000167491 | GATAD2A | GATA zinc finger domain containing 2A | 54815 | NA |
| NA | ENSG00000186010 | NDUFA13 | NADH:ubiquinone oxidoreductase subunit A13 | 51079 | This gene encodes a subunit of the mitochondrial membrane respiratory chain NADH dehydrogenase (Complex I), which functions in the transfer of electrons from NADH to the respiratory chain. The protein is required for complex I assembly and electron transfer activity. The protein binds the signal transducers and activators of transcription 3 (STAT3) transcription factor, and can function as a tumor suppressor. The human protein purified from mitochondria migrates at approximately 16 kDa. Transcripts originating from an upstream promoter and capable of expressing a protein with a longer N-terminus have been found, but their biological validity has not been determined. |
| NA | ENSG00000160161 | CILP2 | cartilage intermediate layer protein 2 | 148113 | NA |
| NA | ENSG00000064547 | LPAR2 | lysophosphatidic acid receptor 2 | 9170 | This gene encodes a member of family I of the G protein-coupled receptors, as well as the EDG family of proteins. This protein functions as a lysophosphatidic acid (LPA) receptor and contributes to Ca2+ mobilization, a critical cellular response to LPA in cells, through association with Gi and Gq proteins. An alternative splice variant has been described but its full length sequence has not been determined. |
| NA | ENSG00000089639 | GMIP | GEM interacting protein | 51291 | This gene encodes a member of the ARHGAP family of Rho/Rac/Cdc42-like GTPase activating proteins. The encoded protein interacts with the Ras-related protein Gem through its N-terminal domain. Separately, it interacts with RhoA through a RhoGAP domain, and stimulates RhoA-dependent GTPase activity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105726 | ATP13A1 | ATPase 13A1 | 57130 | NA |
| NA | ENSG00000181896 | ZNF101 | zinc finger protein 101 | 94039 | Zinc finger proteins (ZNFs), such as ZNF101, bind nucleic acids and perform many key functions, the most important of which is regulating transcription (summary by Bellefroid et al., 1993 [PubMed 8467795]). See ZNF91 (MIM 603971) for general information on ZNFs. |
| NA | ENSG00000105708 | ZNF14 | zinc finger protein 14 | 7561 | The protein encoded by this gene contains a zinc finger and a Kruppel-associated box (KRAB) domain. KRAB domain is known to be involved in the transcriptional repression of a number of zinc finger proteins. |
| NA | ENSG00000081665 | ZNF506 | zinc finger protein 506 | 440515 | NA |
| NA | ENSG00000256771 | ZNF253 | zinc finger protein 253 | 56242 | NA |
| NA | ENSG00000197124 | ZNF682 | zinc finger protein 682 | 91120 | NA |
| NA | ENSG00000213988 | ZNF90 | zinc finger protein 90 | 7643 | NA |
| NA | ENSG00000256229 | ZNF486 | zinc finger protein 486 | 90649 | NA |
| NA | ENSG00000237440 | ZNF737 | zinc finger protein 737 | 100129842 | NA |
| NA | ENSG00000160229 | ZNF66 | zinc finger protein 66 | ENSG00000160229 | NA |
| NA | ENSG00000118620 | ZNF430 | zinc finger protein 430 | 80264 | NA |
| NA | ENSG00000160352 | ZNF714 | zinc finger protein 714 | 148206 | NA |
| NA | ENSG00000196705 | ZNF431 | zinc finger protein 431 | 170959 | NA |
| NA | ENSG00000182141 | ZNF708 | zinc finger protein 708 | 7562 | NA |
| NA | ENSG00000196268 | ZNF493 | zinc finger protein 493 | 284443 | NA |
| NA | ENSG00000197013 | ZNF429 | zinc finger protein 429 | 353088 | NA |
| NA | ENSG00000160321 | ZNF208 | zinc finger protein 208 | 7757 | Zinc finger proteins (ZNFs), such as ZNF208, bind DNA and, through this binding, regulate gene transcription. Most ZNFs contain conserved C2H2 motifs and are classified as Kruppel-type zinc fingers. A conserved protein motif, termed the Kruppel-associated box (KRAB) domain, mediates protein-protein interactions (Eichler et al., 1998 [PubMed 9724325]). See ZNF91 (MIM 603971) for further information on ZNFs. |
| NA | ENSG00000196109 | ZNF676 | zinc finger protein 676 | 163223 | NA |
| NA | ENSG00000197360 | ZNF98 | zinc finger protein 98 | 148198 | NA |
| NA | ENSG00000229676 | ZNF492 | zinc finger protein 492 | 57615 | NA |
| NA | ENSG00000196081 | ZNF724P | zinc finger protein 724, pseudogene | ENSG00000196081 | NA |
| NA | ENSG00000167232 | ZNF91 | zinc finger protein 91 | 7644 | The ZNF91 gene encodes a zinc finger protein of the KRAB (Kruppel-associated box) subfamily (Bellefroid et al., 1991, 1993 [PubMed 2023909] [PubMed 8467795]). |
| NA | ENSG00000197372 | ZNF675 | zinc finger protein 675 | 171392 | NA |
| NA | ENSG00000196172 | ZNF681 | zinc finger protein 681 | 148213 | NA |
| TRUE | ENSG00000205246 | NA | NA | NA | NA |
| NA | ENSG00000213967 | ZNF726 | zinc finger protein 726 | 730087 | NA |
| NA | ENSG00000169021 | UQCRFS1 | ubiquinol-cytochrome c reductase, Rieske iron-sulfur polypeptide 1 | 7386 | NA |
| NA | ENSG00000105171 | POP4 | POP4 homolog, ribonuclease P/MRP subunit | 10775 | This gene encodes one of the protein subunits of the small nucleolar ribonucleoprotein complexes: the endoribonuclease for mitochondrial RNA processing complex and the ribonuclease P complex. The encoded protein is localized to the nucleus and associates directly with the RNA component of these complexes. This protein is involved in processing of precursor RNAs. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166289 | PLEKHF1 | pleckstrin homology and FYVE domain containing 1 | 79156 | NA |
| NA | ENSG00000131943 | C19orf12 | chromosome 19 open reading frame 12 | 83636 | This gene encodes a small transmembrane protein. Mutations in this gene are a cause of neurodegeneration with brain iron accumulation-4 (NBIA4), but the specific function of the encoded protein is unknown. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000105173 | CCNE1 | cyclin E1 | 898 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance through the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. This cyclin forms a complex with and functions as a regulatory subunit of CDK2, whose activity is required for cell cycle G1/S transition. This protein accumulates at the G1-S phase boundary and is degraded as cells progress through S phase. Overexpression of this gene has been observed in many tumors, which results in chromosome instability, and thus may contribute to tumorigenesis. This protein was found to associate with, and be involved in, the phosphorylation of NPAT protein (nuclear protein mapped to the ATM locus), which participates in cell-cycle regulated histone gene expression and plays a critical role in promoting cell-cycle progression in the absence of pRB. Two alternatively spliced transcript variants of this gene, which encode distinct isoforms, have been described. Two additional splice variants were reported but detailed nucleotide sequence information is not yet available. |
| NA | ENSG00000121297 | TSHZ3 | teashirt zinc finger homeobox 3 | 57616 | NA |
| NA | ENSG00000168813 | ZNF507 | zinc finger protein 507 | 22847 | NA |
| NA | ENSG00000105185 | PDCD5 | programmed cell death 5 | 9141 | This gene encodes a protein that is upregulated during apoptosis where it translocates rapidly from the cytoplasm to the nucleus. The encoded protein may be an important regulator of K(lysine) acetyltransferase 5 (a protein involved in transcription, DNA damage response and cell cycle control) by inhibiting its proteasome-dependent degradation. Pseudogenes have been identified on chromosomes 5 and 12 |
| NA | ENSG00000105186 | ANKRD27 | ankyrin repeat domain 27 | 84079 | NA |
| NA | ENSG00000121289 | CEP89 | centrosomal protein 89kDa | 84902 | NA |
| NA | ENSG00000131944 | FAAP24 | Fanconi anemia core complex associated protein 24 | 91442 | FAAP24 is a component of the Fanconi anemia (FA) core complex (see MIM 227650), which plays a crucial role in DNA damage response (Ciccia et al., 2007 [PubMed 17289582]). |
| NA | ENSG00000131941 | RHPN2 | rhophilin, Rho GTPase binding protein 2 | 85415 | This gene encodes a member of the rhophilin family of Ras-homologous (Rho)-GTPase binding proteins. The encoded protein binds both GTP- and GDP-bound RhoA and GTP-bound RhoB and may be involved in the organization of the actin cytoskeleton. |
| NA | ENSG00000076650 | GPATCH1 | G-patch domain containing 1 | 55094 | NA |
| NA | ENSG00000130881 | LRP3 | LDL receptor related protein 3 | 4037 | NA |
| NA | ENSG00000130876 | SLC7A10 | solute carrier family 7 member 10 | 56301 | SLC7A10, in association with 4F2HC (SLC3A2; MIM 158070), mediates high-affinity transport of D-serine and several other neutral amino acids (Nakauchi et al., 2000 [PubMed 10863037]). |
| NA | ENSG00000245848 | CEBPA | CCAAT/enhancer binding protein alpha | 1050 | This intronless gene encodes a transcription factor that contains a basic leucine zipper (bZIP) domain and recognizes the CCAAT motif in the promoters of target genes. The encoded protein functions in homodimers and also heterodimers with CCAAT/enhancer-binding proteins beta and gamma. Activity of this protein can modulate the expression of genes involved in cell cycle regulation as well as in body weight homeostasis. Mutation of this gene is associated with acute myeloid leukemia. The use of alternative in-frame non-AUG (GUG) and AUG start codons results in protein isoforms with different lengths. Differential translation initiation is mediated by an out-of-frame, upstream open reading frame which is located between the GUG and the first AUG start codons. |
| NA | ENSG00000153879 | CEBPG | CCAAT/enhancer binding protein gamma | 1054 | The C/EBP family of transcription factors regulates viral and cellular CCAAT/enhancer element-mediated transcription. C/EBP proteins contain the bZIP region, which is characterized by two motifs in the C-terminal half of the protein: a basic region involved in DNA binding and a leucine zipper motif involved in dimerization. The C/EBP family consist of several related proteins, C/EBP alpha, C/EBP beta, C/EBP gamma, and C/EBP delta, that form homodimers and that form heterodimers with each other. CCAAT/enhancer binding protein gamma may cooperate with Fos to bind PRE-I enhancer elements. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000124299 | PEPD | peptidase D | 5184 | This gene encodes a member of the peptidase family. The protein forms a homodimer that hydrolyzes dipeptides or tripeptides with C-terminal proline or hydroxyproline residues. The enzyme serves an important role in the recycling of proline, and may be rate limiting for the production of collagen. Mutations in this gene result in prolidase deficiency, which is characterized by the excretion of large amount of di- and tri-peptides containing proline. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000257103 | LSM14A | LSM14A mRNA processing body assembly factor | 26065 | Sm-like proteins were identified in a variety of organisms based on sequence homology with the Sm protein family (see SNRPD2; 601061). Sm-like proteins contain the Sm sequence motif, which consists of 2 regions separated by a linker of variable length that folds as a loop. The Sm-like proteins are thought to form a stable heteromer present in tri-snRNP particles, which are important for pre-mRNA splicing. |
| NA | ENSG00000166398 | KIAA0355 | KIAA0355 | 9710 | NA |
| NA | ENSG00000126249 | PDCD2L | programmed cell death 2-like | 84306 | NA |
| NA | ENSG00000126261 | UBA2 | ubiquitin like modifier activating enzyme 2 | 10054 | Posttranslational modification of proteins by the addition of the small protein SUMO (see SUMO1; MIM 601912), or sumoylation, regulates protein structure and intracellular localization. SAE1 (MIM 613294) and UBA2 form a heterodimer that functions as a SUMO-activating enzyme for the sumoylation of proteins (Okuma et al., 1999 [PubMed 9920803]). |
| NA | ENSG00000142279 | WTIP | Wilms tumor 1 interacting protein | 126374 | NA |
| NA | ENSG00000197841 | ZNF181 | zinc finger protein 181 | 339318 | Zinc finger proteins have been shown to interact with nucleic acids and to have diverse functions. The zinc finger domain is a conserved amino acid sequence motif containing 2 specifically positioned cysteines and 2 histidines that are involved in coordinating zinc. Kruppel-related proteins form 1 family of zinc finger proteins. See MIM 604749 for additional information on zinc finger proteins. |
| NA | ENSG00000153896 | ZNF599 | zinc finger protein 599 | 148103 | NA |
| NA | ENSG00000168661 | ZNF30 | zinc finger protein 30 | 90075 | NA |
| NA | ENSG00000180884 | ZNF792 | zinc finger protein 792 | 126375 | NA |
| NA | ENSG00000089351 | GRAMD1A | GRAM domain containing 1A | 57655 | NA |
| NA | ENSG00000105707 | HPN | hepsin | 3249 | This gene encodes a type II transmembrane serine protease that may be involved in diverse cellular functions, including blood coagulation and the maintenance of cell morphology. Expression of the encoded protein is associated with the growth and progression of cancers, particularly prostate cancer. The protein is cleaved into a catalytic serine protease chain and a non-catalytic scavenger receptor cysteine-rich chain, which associate via a single disulfide bond. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000266964 | FXYD1 | FXYD domain containing ion transport regulator 1 | 5348 | This gene encodes a member of a family of small membrane proteins that share a 35-amino acid signature sequence domain, beginning with the sequence PFXYD and containing 7 invariant and 6 highly conserved amino acids. The approved human gene nomenclature for the family is FXYD-domain containing ion transport regulator. Mouse FXYD5 has been termed RIC (Related to Ion Channel). FXYD2, also known as the gamma subunit of the Na,K-ATPase, regulates the properties of that enzyme. FXYD1 (phospholemman), FXYD2 (gamma), FXYD3 (MAT-8), FXYD4 (CHIF), and FXYD5 (RIC) have been shown to induce channel activity in experimental expression systems. Transmembrane topology has been established for two family members (FXYD1 and FXYD2), with the N-terminus extracellular and the C-terminus on the cytoplasmic side of the membrane. The protein encoded by this gene is a plasma membrane substrate for several kinases, including protein kinase A, protein kinase C, NIMA kinase, and myotonic dystrophy kinase. It is thought to form an ion channel or regulate ion channel activity. Transcript variants with different 5’ UTR sequences have been described in the literature. |
| NA | ENSG00000221946 | FXYD7 | FXYD domain containing ion transport regulator 7 | 53822 | This reference sequence was derived from multiple replicate ESTs and validated by similar human genomic sequence. This gene encodes a member of a family of small membrane proteins that share a 35-amino acid signature sequence domain, beginning with the sequence PFXYD and containing 7 invariant and 6 highly conserved amino acids. The approved human gene nomenclature for the family is FXYD-domain containing ion transport regulator. Transmembrane topology has been established for two family members (FXYD1 and FXYD2), with the N-terminus extracellular and the C-terminus on the cytoplasmic side of the membrane. FXYD2, also known as the gamma subunit of the Na,K-ATPase, regulates the properties of that enzyme. FXYD1 (phospholemman), FXYD2 (gamma), FXYD3 (MAT-8), FXYD4 (CHIF), and FXYD5 (RIC) have been shown to induce channel activity in experimental expression systems. This gene product, FXYD7, is novel and has not been characterized as a protein. [RefSeq curation by Kathleen J. Sweadner, Ph.D., sweadner@helix.mgh.harvard.edu., Dec 2000]. |
| NA | ENSG00000105699 | LSR | lipolysis stimulated lipoprotein receptor | 51599 | NA |
| NA | ENSG00000105698 | USF2 | upstream transcription factor 2, c-fos interacting | 7392 | This gene encodes a member of the basic helix-loop-helix leucine zipper family of transcription factors. The encoded protein can activate transcription through pyrimidine-rich initiator (Inr) elements and E-box motifs and is involved in regulating multiple cellular processes. |
| NA | ENSG00000105677 | TMEM147 | transmembrane protein 147 | 10430 | NA |
| NA | ENSG00000249115 | HAUS5 | HAUS augmin like complex subunit 5 | 23354 | HAUS5 is 1 of 8 subunits of the 390-kD human augmin complex, or HAUS complex. The augmin complex was first identified in Drosophila, and its name comes from the Latin verb ‘augmentare,’ meaning ‘to increase.’ The augmin complex is a microtubule-binding complex involved in microtubule generation within the mitotic spindle and is vital to mitotic spindle assembly (Goshima et al., 2008 [PubMed 18443220]; Uehara et al., 2009 [PubMed 19369198]). |
| NA | ENSG00000126254 | RBM42 | RNA binding motif protein 42 | 79171 | NA |
| NA | ENSG00000272333 | KMT2B | lysine methyltransferase 2B | 9757 | This gene encodes a protein which contains multiple domains including a CXXC zinc finger, three PHD zinc fingers, two FY-rich domains, and a SET (suppressor of variegation, enhancer of zeste, and trithorax) domain. The SET domain is a conserved C-terminal domain that characterizes proteins of the MLL (mixed-lineage leukemia) family. This gene is ubiquitously expressed in adult tissues. It is also amplified in solid tumor cell lines, and may be involved in human cancer. Two alternatively spliced transcript variants encoding distinct isoforms have been reported for this gene, however, the full length nature of the shorter transcript is not known. |
| NA | ENSG00000161265 | U2AF1L4 | U2 small nuclear RNA auxiliary factor 1-like 4 | 199746 | NA |
| NA | ENSG00000267796 | LIN37 | lin-37 DREAM MuvB core complex component | 55957 | This gene encodes a protein expressed in the eye. |
| NA | ENSG00000167595 | PROSER3 | proline and serine rich 3 | 148137 | NA |
| NA | ENSG00000004777 | ARHGAP33 | Rho GTPase activating protein 33 | 115703 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. Alternative splice variants encoding different isoforms have been identified in this gene. |
| NA | ENSG00000126259 | KIRREL2 | kin of IRRE like 2 (Drosophila) | 84063 | NA |
| NA | ENSG00000167604 | NFKBID | NFKB inhibitor delta | 84807 | NA |
| NA | ENSG00000126243 | LRFN3 | leucine rich repeat and fibronectin type III domain containing 3 | 79414 | NA |
| NA | ENSG00000205138 | SDHAF1 | succinate dehydrogenase complex assembly factor 1 | 644096 | The succinate dehydrogenase (SDH) complex (or complex II) of the mitochondrial respiratory chain is composed of 4 individual subunits. The protein encoded by this gene resides in the mitochondria, and is essential for SDH assembly, but does not physically associate with the complex in vivo. Mutations in this gene are associated with SDH-defective infantile leukoencephalopathy (mitochondrial complex II deficiency). |
| NA | ENSG00000181392 | SYNE4 | spectrin repeat containing, nuclear envelope family member 4 | 163183 | This gene is a member of the nesprin family of genes, that encode KASH (Klarsicht, Anc-1, Syne Homology) domain-containing proteins. In addition to the KASH domain, this protein also contains a coiled-coil and leucine zipper region, a spectrin repeat, and a kinesin-1 binding region. This protein localizes to the outer nuclear membrane, and is part of the linker of nucleoskeleton and cytoskeleton (LINC) complex in the nuclear envelope. LINC complexes are formed by SUN (Sad1, UNC-84)-KASH pairs, and are thought to mechanically couple nuclear components to the cytoskeleton. Mutations in this gene have been associated with progressive high-frequency hearing loss. The absence of this protein in mice also caused hearing loss, and changes in hair cell morphology in the ears. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000239382 | ALKBH6 | alkB homolog 6 | 84964 | NA |
| NA | ENSG00000105270 | CLIP3 | CAP-Gly domain containing linker protein 3 | 25999 | This gene encodes a member of the cytoplasmic linker protein 170 family. Members of this protein family contain a cytoskeleton-associated protein glycine-rich domain and mediate the interaction of microtubules with cellular organelles. The encoded protein plays a role in T cell apoptosis by facilitating the association of tubulin and the lipid raft ganglioside GD3. The encoded protein also functions as a scaffold protein mediating membrane localization of phosphorylated protein kinase B. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000075702 | WDR62 | WD repeat domain 62 | 284403 | This gene is proposed to play a role in cerebral cortical development. Mutations in this gene have been associated with microencephaly, cortical malformations, and mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105258 | POLR2I | polymerase (RNA) II subunit I | 5438 | This gene encodes a subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. This subunit, in combination with two other polymerase subunits, forms the DNA binding domain of the polymerase, a groove in which the DNA template is transcribed into RNA. The product of this gene has two zinc finger motifs with conserved cysteines and the subunit does possess zinc binding activity. |
| NA | ENSG00000105254 | TBCB | tubulin folding cofactor B | 1155 | NA |
| NA | ENSG00000126247 | CAPNS1 | calpain small subunit 1 | 826 | This gene is a member of the calpain small subunit family. Calpains are calcium-dependent cysteine proteinases that are widely distributed in mammalian cells. Calpains operate as heterodimers, comprising a specific large catalytic subunit (calpain 1 subunit in Calpain I, and calpain 2 subunit in Calpain II), and a common small regulatory subunit encoded by this gene. This encoded protein is essential for the stability and function of both calpain heterodimers, whose proteolytic activities influence various cellular functions including apoptosis, proliferation, migration, adhesion, and autophagy. Calpains have been implicated in neurodegenerative processes, such as myotonic dystrophy. A pseudogene of this gene has been defined on chromosome 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196357 | ZNF565 | zinc finger protein 565 | 147929 | NA |
| NA | ENSG00000167635 | ZNF146 | zinc finger protein 146 | 7705 | NA |
| NA | ENSG00000142065 | ZFP14 | ZFP14 zinc finger protein | 57677 | NA |
| NA | ENSG00000181007 | ZFP82 | ZFP82 zinc finger protein | 284406 | NA |
| NA | ENSG00000186020 | ZNF529 | zinc finger protein 529 | 57711 | NA |
| NA | ENSG00000161298 | ZNF382 | zinc finger protein 382 | 84911 | This gene encodes a KRAB domain zinc finger transcription factor (KZNF). KZNFs play critical roles in the regulation of many cellular processes including differentiation, proliferation and apoptosis. The encoded protein inhibits activating protein 1 (AP-1) and nuclear factor kappa-B (NF-kB) signaling and may function as a tumor suppressor in multiple carcinomas. This gene is found in a cluster with other zinc finger protein genes on the long arm of chromosome 19, and alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000197808 | ZNF461 | zinc finger protein 461 | 92283 | NA |
| NA | ENSG00000267260 | CTD-2162K18.4 | NA | ENSG00000267260 | NA |
| NA | ENSG00000197863 | ZNF790 | zinc finger protein 790 | 388536 | NA |
| NA | ENSG00000251247 | ZNF345 | zinc finger protein 345 | 25850 | NA |
| NA | ENSG00000198453 | ZNF568 | zinc finger protein 568 | 374900 | NA |
| NA | ENSG00000197050 | ZNF420 | zinc finger protein 420 | 147923 | NA |
| NA | ENSG00000245680 | ZNF585B | zinc finger protein 585B | 92285 | NA |
| NA | ENSG00000188283 | ZNF383 | zinc finger protein 383 | 163087 | NA |
| NA | ENSG00000181666 | HKR1 | HKR1, GLI-Kruppel zinc finger family member | 284459 | NA |
| NA | ENSG00000189164 | ZNF527 | zinc finger protein 527 | 84503 | NA |
| NA | ENSG00000196437 | ZNF569 | zinc finger protein 569 | 148266 | NA |
| NA | ENSG00000171827 | ZNF570 | zinc finger protein 570 | 148268 | NA |
| NA | ENSG00000188227 | ZNF793 | zinc finger protein 793 | 390927 | NA |
| NA | ENSG00000180479 | ZNF571 | zinc finger protein 571 | 51276 | NA |
| NA | ENSG00000120784 | ZFP30 | ZFP30 zinc finger protein | 22835 | NA |
| NA | ENSG00000198182 | ZNF607 | zinc finger protein 607 | 84775 | NA |
| NA | ENSG00000189144 | ZNF573 | zinc finger protein 573 | 126231 | NA |
| NA | ENSG00000105738 | SIPA1L3 | signal-induced proliferation-associated 1 like 3 | 23094 | This gene belongs to the signal induced proliferation associated 1 family of genes, which encode GTPase-activating proteins specific for the GTP-binding protein Rap1. Rap1 has been implicated in regulation of cell adhesion, cell polarity, and organization of the cytoskeleton. Like other members of the family, the protein encoded by this gene contains RapGAP and PDZ domains. In addition, this protein contains a C-terminal leucine zipper domain. This gene is proposed to function in epithelial cell morphogenesis and establishment or maintenance of polarity. Consistently, expression of the protein in cell culture showed localization to cell-cell borders in apical regions, and downregulation of the gene in 3D Caco2 cell culture resulted in abnormal cell polarity and morphogenesis. Allelic variants of this gene have been associated with congenital cataracts in humans. |
| NA | ENSG00000011332 | DPF1 | double PHD fingers 1 | 8193 | NA |
| NA | ENSG00000167642 | SPINT2 | serine peptidase inhibitor, Kunitz type, 2 | 10653 | This gene encodes a transmembrane protein with two extracellular Kunitz domains that inhibits a variety of serine proteases. The protein inhibits HGF activator which prevents the formation of active hepatocyte growth factor. This gene is a putative tumor suppressor, and mutations in this gene result in congenital sodium diarrhea. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000167641 | PPP1R14A | protein phosphatase 1 regulatory inhibitor subunit 14A | 94274 | The protein encoded by this gene belongs to the protein phosphatase 1 (PP1) inhibitor family. This protein is an inhibitor of smooth muscle myosin phosphatase, and has higher inhibitory activity when phosphorylated. Inhibition of myosin phosphatase leads to increased myosin phosphorylation and enhanced smooth muscle contraction. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000167644 | C19orf33 | chromosome 19 open reading frame 33 | 64073 | The protein encoded by this gene has been shown to be upregulated in SV40-immortalized fibroblasts as well as in endometrial carcinoma cells. The encoded protein is found primarily in the nucleus. This protein may play a role in placental development and diseases such as pre-eclampsia. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000167645 | YIF1B | Yip1 interacting factor homolog B, membrane trafficking protein | 90522 | NA |
| NA | ENSG00000099337 | KCNK6 | potassium two pore domain channel subfamily K member 6 | 9424 | This gene encodes one of the members of the superfamily of potassium channel proteins containing two pore-forming P domains. This channel protein, considered an open rectifier, is widely expressed. It is stimulated by arachidonic acid, and inhibited by internal acidification and volatile anaesthetics. |
| NA | ENSG00000099341 | PSMD8 | proteasome 26S subunit, non-ATPase 8 | 5714 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a non-ATPase subunit of the 19S regulator. A pseudogene has been identified on chromosome 1. |
| NA | ENSG00000130244 | FAM98C | family with sequence similarity 98 member C | 147965 | NA |
| NA | ENSG00000196218 | RYR1 | ryanodine receptor 1 | 6261 | This gene encodes a ryanodine receptor found in skeletal muscle. The encoded protein functions as a calcium release channel in the sarcoplasmic reticulum but also serves to connect the sarcoplasmic reticulum and transverse tubule. Mutations in this gene are associated with malignant hyperthermia susceptibility, central core disease, and minicore myopathy with external ophthalmoplegia. Alternatively spliced transcripts encoding different isoforms have been described. |
| NA | ENSG00000104814 | MAP4K1 | mitogen-activated protein kinase kinase kinase kinase 1 | 11184 | NA |
| NA | ENSG00000130402 | ACTN4 | actinin alpha 4 | 81 | Alpha actinins belong to the spectrin gene superfamily which represents a diverse group of cytoskeletal proteins, including the alpha and beta spectrins and dystrophins. Alpha actinin is an actin-binding protein with multiple roles in different cell types. In nonmuscle cells, the cytoskeletal isoform is found along microfilament bundles and adherens-type junctions, where it is involved in binding actin to the membrane. In contrast, skeletal, cardiac, and smooth muscle isoforms are localized to the Z-disc and analogous dense bodies, where they help anchor the myofibrillar actin filaments. This gene encodes a nonmuscle, alpha actinin isoform which is concentrated in the cytoplasm, and thought to be involved in metastatic processes. Mutations in this gene have been associated with focal and segmental glomerulosclerosis. |
| NA | ENSG00000182472 | CAPN12 | calpain 12 | 147968 | The calpains, calcium-activated neutral proteases, are nonlysosomal, intracellular cysteine proteases. The mammalian calpains include ubiquitous, stomach-specific, and muscle-specific proteins. The ubiquitous enzymes consist of heterodimers with distinct large, catalytic subunits associated with a common small, regulatory subunit. This gene encodes a member of the calpain large subunit family. |
| NA | ENSG00000178934 | LGALS7B | lectin, galactoside-binding, soluble, 7B | 653499 | The galectins are a family of beta-galactoside-binding proteins implicated in modulating cell-cell and cell-matrix interactions. Differential and in situ hybridization studies indicate that this lectin is specifically expressed in keratinocytes and found mainly in stratified squamous epithelium. A duplicate copy of this gene (GeneID:3963) is found adjacent to, but on the opposite strand on chromosome 19. |
| NA | ENSG00000104823 | ECH1 | enoyl-CoA hydratase 1, peroxisomal | 1891 | This gene encodes a member of the hydratase/isomerase superfamily. The gene product shows high sequence similarity to enoyl-coenzyme A (CoA) hydratases of several species, particularly within a conserved domain characteristic of these proteins. The encoded protein, which contains a C-terminal peroxisomal targeting sequence, localizes to the peroxisome. The rat ortholog, which localizes to the matrix of both the peroxisome and mitochondria, can isomerize 3-trans,5-cis-dienoyl-CoA to 2-trans,4-trans-dienoyl-CoA, indicating that it is a delta3,5-delta2,4-dienoyl-CoA isomerase. This enzyme functions in the auxiliary step of the fatty acid beta-oxidation pathway. Expression of the rat gene is induced by peroxisome proliferators. |
| NA | ENSG00000104824 | HNRNPL | heterogeneous nuclear ribonucleoprotein L | 3191 | Heterogeneous nuclear RNAs (hnRNAs) which include mRNA precursors and mature mRNAs are associated with specific proteins to form heterogenous ribonucleoprotein (hnRNP) complexes. Heterogeneous nuclear ribonucleoprotein L is among the proteins that are stably associated with hnRNP complexes and along with other hnRNP proteins is likely to play a major role in the formation, packaging, processing, and function of mRNA. Heterogeneous nuclear ribonucleoprotein L is present in the nucleoplasm as part of the HNRP complex. HNRP proteins have also been identified outside of the nucleoplasm. Exchange of hnRNP for mRNA-binding proteins accompanies transport of mRNA from the nucleus to the cytoplasm. Since HNRP proteins have been shown to shuttle between the nucleus and the cytoplasm, it is possible that they also have cytoplasmic functions. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000187994 | RINL | Ras and Rab interactor like | 126432 | NA |
| NA | ENSG00000068903 | SIRT2 | sirtuin 2 | 22933 | This gene encodes a member of the sirtuin family of proteins, homologs to the yeast Sir2 protein. Members of the sirtuin family are characterized by a sirtuin core domain and grouped into four classes. The functions of human sirtuins have not yet been determined; however, yeast sirtuin proteins are known to regulate epigenetic gene silencing and suppress recombination of rDNA. Studies suggest that the human sirtuins may function as intracellular regulatory proteins with mono-ADP-ribosyltransferase activity. The protein encoded by this gene is included in class I of the sirtuin family. Several transcript variants are resulted from alternative splicing of this gene. |
| NA | ENSG00000104825 | NFKBIB | NFKB inhibitor beta | 4793 | The protein encoded by this gene belongs to the NF-kappa-B inhibitor family, which inhibit NF-kappa-B by complexing with, and trapping it in the cytoplasm. Phosphorylation of serine residues on these proteins by kinases marks them for destruction via the ubiquitination pathway, thereby allowing activation of the NF-kappa-B, which translocates to the nucleus to function as a transcription factor. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000104835 | SARS2 | seryl-tRNA synthetase 2, mitochondrial | 54938 | This gene encodes the mitochondrial seryl-tRNA synthethase precursor, a member of the class II tRNA synthetase family. The mature enzyme catalyzes the ligation of Serine to tRNA(Ser) and participates in the biosynthesis of selenocysteinyl-tRNA(sec) in mitochondria. The enzyme contains an N-terminal tRNA binding domain and a core catalytic domain. It functions in a homodimeric form, which is stabilized by tRNA binding. This gene is regulated by a bidirectional promoter that also controls the expression of mitochondrial ribosomal protein S12. Both genes are within the critical interval for the autosomal dominant deafness locus DFNA4 and might be linked to this disease. Multiple transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000128626 | MRPS12 | mitochondrial ribosomal protein S12 | 6183 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S12P family. The encoded protein is a key component of the ribosomal small subunit and controls the decoding fidelity and susceptibility to aminoglycoside antibiotics. The gene for mitochondrial seryl-tRNA synthetase is located upstream and adjacent to this gene, and both genes are possible candidates for the autosomal dominant deafness gene (DFNA4). Splice variants that differ in the 5’ UTR have been found for this gene; all three variants encode the same protein. |
| NA | ENSG00000269190 | FBXO17 | F-box protein 17 | 115290 | This gene encodes a member of the F-box protein family which is characterized by the F-box motif. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class and it contains an F-box domain. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000161243 | FBXO27 | F-box protein 27 | 126433 | Members of the F-box protein family, such as FBXO27, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000130669 | PAK4 | p21 protein (Cdc42/Rac)-activated kinase 4 | 10298 | PAK proteins, a family of serine/threonine p21-activating kinases, include PAK1, PAK2, PAK3 and PAK4. PAK proteins are critical effectors that link Rho GTPases to cytoskeleton reorganization and nuclear signaling. They serve as targets for the small GTP binding proteins Cdc42 and Rac and have been implicated in a wide range of biological activities. PAK4 interacts specifically with the GTP-bound form of Cdc42Hs and weakly activates the JNK family of MAP kinases. PAK4 is a mediator of filopodia formation and may play a role in the reorganization of the actin cytoskeleton. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000188505 | NCCRP1 | non-specific cytotoxic cell receptor protein 1 homolog (zebrafish) | 342897 | NA |
| NA | ENSG00000128011 | LRFN1 | leucine rich repeat and fibronectin type III domain containing 1 | 57622 | NA |
| NA | ENSG00000179134 | SAMD4B | sterile alpha motif domain containing 4B | 55095 | NA |
| NA | ENSG00000006712 | PAF1 | PAF1 homolog, Paf1/RNA polymerase II complex component | 54623 | This gene encodes a subunit of the polymerase associated factor (PAF1) complex. The PAF1 complex interacts with RNA polymerase II and plays a role in transcription elongation as well as histone modifications including ubiquitylation and methylation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000063322 | MED29 | mediator complex subunit 29 | 55588 | MED29 is a subunit of the Mediator complex, a multiprotein coactivator of RNA transcription that interacts with DNA-bound transcriptional activators, RNA polymerase II (see MIM 180660), and general initiation factors (Sato et al., 2003 [PubMed 14576168]). |
| NA | ENSG00000128016 | ZFP36 | ZFP36 ring finger protein | 7538 | NA |
| NA | ENSG00000090924 | PLEKHG2 | pleckstrin homology and RhoGEF domain containing G2 | 64857 | NA |
| NA | ENSG00000105193 | RPS16 | ribosomal protein S16 | 6217 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S9P family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000196235 | SUPT5H | SPT5 homolog, DSIF elongation factor subunit | 6829 | NA |
| NA | ENSG00000105197 | TIMM50 | translocase of inner mitochondrial membrane 50 | 92609 | NA |
| NA | ENSG00000090932 | DLL3 | delta-like 3 (Drosophila) | 10683 | This gene encodes a member of the delta protein ligand family. This family functions as Notch ligands that are characterized by a DSL domain, EGF repeats, and a transmembrane domain. Mutations in this gene cause autosomal recessive spondylocostal dysostosis 1. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000186838 | SELV | selenoprotein V | 348303 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. |
| NA | ENSG00000176401 | EID2B | EP300 interacting inhibitor of differentiation 2B | 126272 | NA |
| NA | ENSG00000176396 | EID2 | EP300 interacting inhibitor of differentiation 2 | 163126 | NA |
| NA | ENSG00000105204 | DYRK1B | dual specificity tyrosine phosphorylation regulated kinase 1B | 9149 | This gene encodes a member of a family of nuclear-localized protein kinases. The encoded protein participates in the regulation of the cell cycle. Expression of this gene may be altered in tumor cells, and mutations in this gene were found to cause abdominal obesity-metabolic syndrome 3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105202 | FBL | fibrillarin | 2091 | This gene product is a component of a nucleolar small nuclear ribonucleoprotein (snRNP) particle thought to participate in the first step in processing preribosomal RNA. It is associated with the U3, U8, and U13 small nuclear RNAs and is located in the dense fibrillar component (DFC) of the nucleolus. The encoded protein contains an N-terminal repetitive domain that is rich in glycine and arginine residues, like fibrillarins in other species. Its central region resembles an RNA-binding domain and contains an RNP consensus sequence. Antisera from approximately 8% of humans with the autoimmune disease scleroderma recognize fibrillarin. |
| NA | ENSG00000013275 | PSMC4 | proteasome 26S subunit, ATPase 4 | 5704 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. This gene encodes a member of the triple-A family of ATPases that is a component of the 19S regulatory subunit and plays a role in 26S proteasome assembly. The encoded protein interacts with gankyrin, a liver oncoprotein, and may also play a role in Parkinson’s disease through interactions with synphilin-1. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000128000 | ZNF780B | zinc finger protein 780B | 163131 | NA |
| NA | ENSG00000197782 | ZNF780A | zinc finger protein 780A | 284323 | NA |
| NA | ENSG00000130758 | MAP3K10 | mitogen-activated protein kinase kinase kinase 10 | 4294 | The protein encoded by this gene is a member of the serine/threonine kinase family. This kinase has been shown to activate MAPK8/JNK and MKK4/SEK1, and this kinase itself can be phoshorylated, and thus activated by JNK kinases. This kinase functions preferentially on the JNK signaling pathway, and is reported to be involved in nerve growth factor (NGF) induced neuronal apoptosis. |
| NA | ENSG00000105221 | AKT2 | v-akt murine thymoma viral oncogene homolog 2 | 208 | This gene is a putative oncogene encoding a protein belonging to a subfamily of serine/threonine kinases containing SH2-like (Src homology 2-like) domains. The gene was shown to be amplified and overexpressed in 2 of 8 ovarian carcinoma cell lines and 2 of 15 primary ovarian tumors. Overexpression contributes to the malignant phenotype of a subset of human ductal pancreatic cancers. The encoded protein is a general protein kinase capable of phophorylating several known proteins. |
| NA | ENSG00000160392 | C19orf47 | chromosome 19 open reading frame 47 | 126526 | NA |
| NA | ENSG00000105223 | PLD3 | phospholipase D family member 3 | 23646 | This gene encodes a member of the phospholipase D (PLD) family of enzymes that catalyze the hydrolysis of membrane phospholipids. The encoded protein is a single-pass type II membrane protein and contains two PLD phosphodiesterase domains. This protein influences processing of amyloid-beta precursor protein. Mutations in this gene are associated with Alzheimer disease risk. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000105227 | PRX | periaxin | 57716 | This gene encodes a protein involved in peripheral nerve myelin upkeep. The encoded protein contains 2 PDZ domains which were named after PSD95 (post synaptic density protein), DlgA (Drosophila disc large tumor suppressor), and ZO1 (a mammalian tight junction protein). Two alternatively spliced transcript variants have been described for this gene which encode different protein isoforms and which are targeted differently in the Schwann cell. Mutations in this gene cause Charcot-Marie-Tooth neuoropathy, type 4F and Dejerine-Sottas neuropathy. |
| NA | ENSG00000167565 | SERTAD3 | SERTA domain containing 3 | 29946 | The protein encoded by this gene was identified in a yeast two-hybrid assay employing the second subunit of human replication protein A as bait. It is localized to the nucleus and its expression is significantly higher in cancer cell lines compared to normal cell lines. This protein has also been shown to be a strong transcriptional co-activator. Alternative splicing has been observed at this locus and two variants, both encoding the same protein, have been identified. |
| NA | ENSG00000090006 | LTBP4 | latent transforming growth factor beta binding protein 4 | 8425 | The protein encoded by this gene binds transforming growth factor beta (TGFB) as it is secreted and targeted to the extracellular matrix. TGFB is biologically latent after secretion and insertion into the extracellular matrix, and sheds TGFB and other proteins upon activation. Defects in this gene may be a cause of cutis laxa and severe pulmonary, gastrointestinal, and urinary abnormalities. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000105245 | NUMBL | numb homolog (Drosophila)-like | 9253 | NA |
| NA | ENSG00000123815 | ADCK4 | aarF domain containing kinase 4 | 79934 | This gene encodes a protein with two copies of a domain found in protein kinases. The encoded protein has a complete protein kinase catalytic domain, and a truncated domain that contains only the active and binding sites of the protein kinase domain, however, it is not known whether the protein has any kinase activity. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000086544 | ITPKC | inositol-trisphosphate 3-kinase C | 80271 | This gene encodes a member of the inositol 1,4,5-trisphosphate [Ins(1,4,5)P(3)] 3-kinase family of enzymes that catalyze the phosphorylation of inositol 1,4,5-trisphosphate to 1,3,4,5-tetrakisphosphate. The encoded protein is localized to the nucleus and cytoplasm and has both nuclear import and nuclear export activity. Single nucleotide polymorphisms in this gene are associated with Kawasaki disease. |
| NA | ENSG00000188493 | C19orf54 | chromosome 19 open reading frame 54 | 284325 | NA |
| NA | ENSG00000077312 | SNRPA | small nuclear ribonucleoprotein polypeptide A | 6626 | The protein encoded by this gene associates with stem loop II of the U1 small nuclear ribonucleoprotein, which binds the 5’ splice site of precursor mRNAs and is required for splicing. The encoded protein autoregulates itself by polyadenylation inhibition of its own pre-mRNA via dimerization and has been implicated in the coupling of splicing and polyadenylation. |
| NA | ENSG00000167578 | RAB4B | RAB4B, member RAS oncogene family | 53916 | RAB proteins, such as RAB4B, are members of the RAS superfamily of small GTPases that are involved in vesicular trafficking (He et al., 2002 [PubMed 12450215]). |
| NA | ENSG00000269858 | EGLN2 | egl-9 family hypoxia-inducible factor 2 | 112398 | The hypoxia inducible factor (HIF) is a transcriptional complex that is involved in oxygen homeostasis. At normal oxygen levels, the alpha subunit of HIF is targeted for degration by prolyl hydroxylation. This gene encodes an enzyme responsible for this post-translational modification. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the upstream RAB4B (RAB4B, member RAS oncogene family) gene. |
| NA | ENSG00000167600 | CYP2S1 | cytochrome P450 family 2 subfamily S member 1 | 29785 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. This protein localizes to the endoplasmic reticulum. In rodents, the homologous protein has been shown to metabolize certain carcinogens; however, the specific function of the human protein has not been determined. |
| NA | ENSG00000167601 | AXL | AXL receptor tyrosine kinase | 558 | The protein encoded by this gene is a member of the Tyro3-Axl-Mer (TAM) receptor tyrosine kinase subfamily. The encoded protein possesses an extracellular domain which is composed of two immunoglobulin-like motifs at the N-terminal, followed by two fibronectin type-III motifs. It transduces signals from the extracellular matrix into the cytoplasm by binding to the vitamin K-dependent protein growth arrest-specific 6 (Gas6). This gene may be involved in several cellular functions including growth, migration, aggregation and anti-inflammation in multiple cell types. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000105323 | HNRNPUL1 | heterogeneous nuclear ribonucleoprotein U-like 1 | 11100 | This gene encodes a nuclear RNA-binding protein of the heterogeneous nuclear ribonucleoprotein (hnRNP) family. This protein binds specifically to adenovirus early-1B-55kDa oncoprotein. It may play an important role in nucleocytoplasmic RNA transport, and its function is modulated by early-1B-55kDa in adenovirus-infected cells. |
| NA | ENSG00000142039 | CCDC97 | coiled-coil domain containing 97 | 90324 | NA |
| NA | ENSG00000123810 | B9D2 | B9 protein domain 2 | 80776 | This gene encodes a B9 domain protein, which are exclusively found in ciliated organisms. The gene is upregulated during mucociliary differentiation, and the encoded protein localizes to basal bodies and cilia. Disrupting expression of this gene results in ciliogenesis defects. |
| NA | ENSG00000248098 | BCKDHA | branched chain keto acid dehydrogenase E1, alpha polypeptide | 593 | The branched-chain alpha-keto acid (BCAA) dehydrogenase (BCKD) complex is an innter mitochondrial enzyme complex that catalyzes the second major step in the catabolism of the branched-chain amino acids leucine, isoleucine, and valine. The BCKD complex consists of three catalytic components: a heterotetrameric (alpha2-beta2) branched-chain alpha-keto acid decarboxylase (E1), a dihydrolipoyl transacylase (E2), and a dihydrolipoamide dehydrogenase (E3). This gene encodes the alpha subunit of the decarboxylase (E1) component. Mutations in this gene result in maple syrup urine disease, type IA. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000077348 | EXOSC5 | exosome component 5 | 56915 | NA |
| NA | ENSG00000105341 | ATP5SL | ATP5S-like | 55101 | NA |
| NA | ENSG00000105372 | RPS19 | ribosomal protein S19 | 6223 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S19E family of ribosomal proteins. It is located in the cytoplasm. Mutations in this gene cause Diamond-Blackfan anemia (DBA), a constitutional erythroblastopenia characterized by absent or decreased erythroid precursors, in a subset of patients. This suggests a possible extra-ribosomal function for this gene in erythropoietic differentiation and proliferation, in addition to its ribosomal function. Higher expression levels of this gene in some primary colon carcinomas compared to matched normal colon tissues has been observed. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000076928 | LOC100505585 | uncharacterized LOC100505585 | 100505585 | NA |
| NA | ENSG00000076928 | ARHGEF1 | Rho guanine nucleotide exchange factor 1 | 9138 | Rho GTPases play a fundamental role in numerous cellular processes that are initiated by extracellular stimuli that work through G protein coupled receptors. The encoded protein may form complex with G proteins and stimulate Rho-dependent signals. Multiple alternatively spliced transcript variants have been found for this gene, but the full-length nature of some variants has not been defined. |
| NA | ENSG00000105404 | RABAC1 | Rab acceptor 1 | 10567 | NA |
| NA | ENSG00000105409 | ATP1A3 | ATPase Na+/K+ transporting subunit alpha 3 | 478 | The protein encoded by this gene belongs to the family of P-type cation transport ATPases, and to the subfamily of Na+/K+ -ATPases. Na+/K+ -ATPase is an integral membrane protein responsible for establishing and maintaining the electrochemical gradients of Na and K ions across the plasma membrane. These gradients are essential for osmoregulation, for sodium-coupled transport of a variety of organic and inorganic molecules, and for electrical excitability of nerve and muscle. This enzyme is composed of two subunits, a large catalytic subunit (alpha) and a smaller glycoprotein subunit (beta). The catalytic subunit of Na+/K+ -ATPase is encoded by multiple genes. This gene encodes an alpha 3 subunit. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000105737 | GRIK5 | glutamate ionotropic receptor kainate type subunit 5 | 2901 | This gene encodes a protein that belongs to the glutamate-gated ionic channel family. Glutamate functions as the major excitatory neurotransmitter in the central nervous system through activation of ligand-gated ion channels and G protein-coupled membrane receptors. The protein encoded by this gene forms functional heteromeric kainate-preferring ionic channels with the subunits encoded by related gene family members. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105732 | ZNF574 | zinc finger protein 574 | 64763 | NA |
| NA | ENSG00000028277 | POU2F2 | POU class 2 homeobox 2 | 5452 | The protein encoded by this gene is a homeobox-containing transcription factor of the POU domain family. The encoded protein binds the octamer sequence 5’-ATTTGCAT-3’, a common transcription factor binding site in immunoglobulin gene promoters. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000160570 | DEDD2 | death effector domain containing 2 | 162989 | This gene encodes a nuclear-localized protein containing a death effector domain (DED). The encoded protein may regulate the trafficking of caspases and other proteins into the nucleus during death receptor-induced apoptosis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105723 | GSK3A | glycogen synthase kinase 3 alpha | 2931 | This gene encodes a multifunctional Ser/Thr protein kinase that is implicated in the control of several regulatory proteins including glycogen synthase, and transcription factors, such as JUN. It also plays a role in the WNT and PI3K signaling pathways, as well as regulates the production of beta-amyloid peptides associated with Alzheimer’s disease. |
| NA | ENSG00000105722 | ERF | ETS2 repressor factor | 2077 | ETS2 is a transcription factor and protooncogene involved in development, apoptosis, and the regulation of telomerase. The protein encoded by this gene binds to the ETS2 promoter and is a strong repressor of ETS2 transcription. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000079432 | CIC | capicua transcriptional repressor | 23152 | The protein encoded by this gene is an ortholog of the Drosophila melanogaster capicua gene, and is a member of the high mobility group (HMG)-box superfamily of transcriptional repressors. This protein contains a conserved HMG domain that is involved in DNA binding and nuclear localization, and a conserved C-terminus. Studies suggest that the N-terminal region of this protein interacts with Atxn1 (GeneID:6310), to form a transcription repressor complex, and in vitro studies suggest that polyglutamine-expansion of ATXN1 may alter the repressor activity of this complex. Mutations in this gene have been associated with olidogdendrogliomas (PMID:21817013). In addition, translocation events resulting in gene fusions of this gene with both DUX4 (GeneID:100288687) and FOXO4 (GeneID:4303) have been associated with round cell sarcomas. There are multiple pseudogenes of this gene found on chromosomes 1, 4, 6, 7, 16, 20, and the Y chromosome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000188368 | PRR19 | proline rich 19 | 284338 | NA |
| NA | ENSG00000167619 | TMEM145 | transmembrane protein 145 | 284339 | NA |
| NA | ENSG00000105429 | MEGF8 | multiple EGF like domains 8 | 1954 | The protein encoded by this gene is a single-pass type I membrane protein of unknown function that contains several EGF-like domains, Kelch repeats, and PSI domains. Defects in this gene are a cause of Carpenter syndrome 2. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000079435 | LIPE | lipase E, hormone sensitive type | 3991 | The protein encoded by this gene has a long and a short form, generated by use of alternative translational start codons. The long form is expressed in steroidogenic tissues such as testis, where it converts cholesteryl esters to free cholesterol for steroid hormone production. The short form is expressed in adipose tissue, among others, where it hydrolyzes stored triglycerides to free fatty acids. |
| NA | ENSG00000124466 | LYPD3 | LY6/PLAUR domain containing 3 | 27076 | NA |
| NA | ENSG00000176531 | PHLDB3 | pleckstrin homology like domain family B member 3 | 653583 | NA |
| NA | ENSG00000105755 | ETHE1 | ethylmalonic encephalopathy 1 | 23474 | This gene encodes a member of the metallo beta-lactamase family of iron-containing proteins involved in the mitochondrial sulfide oxidation pathway. The encoded protein catalyzes the oxidation of a persulfide substrate to sulfite. Certain mutations in this gene cause ethylmalonic encephalopathy, an infantile metabolic disorder affecting the brain, gastrointestinal tract and peripheral vessels. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000073050 | XRCC1 | X-ray repair complementing defective repair in Chinese hamster cells 1 | 7515 | The protein encoded by this gene is involved in the efficient repair of DNA single-strand breaks formed by exposure to ionizing radiation and alkylating agents. This protein interacts with DNA ligase III, polymerase beta and poly (ADP-ribose) polymerase to participate in the base excision repair pathway. It may play a role in DNA processing during meiogenesis and recombination in germ cells. A rare microsatellite polymorphism in this gene is associated with cancer in patients of varying radiosensitivity. |
| NA | ENSG00000234465 | PINLYP | phospholipase A2 inhibitor and LY6/PLAUR domain containing | 390940 | NA |
| NA | ENSG00000167378 | IRGQ | immunity-related GTPase family, Q | 126298 | NA |
| NA | ENSG00000124444 | ZNF576 | zinc finger protein 576 | 79177 | NA |
| NA | ENSG00000131116 | ZNF428 | zinc finger protein 428 | 126299 | NA |
| NA | ENSG00000105767 | CADM4 | cell adhesion molecule 4 | 199731 | NA |
| NA | ENSG00000011422 | PLAUR | plasminogen activator, urokinase receptor | 5329 | This gene encodes the receptor for urokinase plasminogen activator and, given its role in localizing and promoting plasmin formation, likely influences many normal and pathological processes related to cell-surface plasminogen activation and localized degradation of the extracellular matrix. It binds both the proprotein and mature forms of urokinase plasminogen activator and permits the activation of the receptor-bound pro-enzyme by plasmin. The protein lacks transmembrane or cytoplasmic domains and may be anchored to the plasma membrane by a glycosyl-phosphatidylinositol (GPI) moiety following cleavage of the nascent polypeptide near its carboxy-terminus. However, a soluble protein is also produced in some cell types. Alternative splicing results in multiple transcript variants encoding different isoforms. The proprotein experiences several post-translational cleavage reactions that have not yet been fully defined. |
| NA | ENSG00000105771 | SMG9 | SMG9 nonsense mediated mRNA decay factor | 56006 | NA |
| NA | ENSG00000167637 | ZNF283 | zinc finger protein 283 | 284349 | NA |
| NA | ENSG00000176222 | ZNF404 | zinc finger protein 404 | 342908 | NA |
| NA | ENSG00000124459 | ZNF45 | zinc finger protein 45 | 7596 | NA |
| NA | ENSG00000204920 | ZNF155 | zinc finger protein 155 | 7711 | NA |
| NA | ENSG00000159882 | ZNF230 | zinc finger protein 230 | 7773 | NA |
| NA | ENSG00000178386 | ZNF223 | zinc finger protein 223 | 7766 | This gene encodes a protein containing a Kruppel-associated box domain and multiple zinc finger domains. The function of this protein has yet to be determined. |
| NA | ENSG00000186026 | ZNF284 | zinc finger protein 284 | 342909 | NA |
| NA | ENSG00000267680 | ZNF224 | zinc finger protein 224 | 7767 | NA |
| NA | ENSG00000256294 | ZNF225 | zinc finger protein 225 | 7768 | NA |
| NA | ENSG00000263002 | ZNF234 | zinc finger protein 234 | 10780 | NA |
| NA | ENSG00000167380 | ZNF226 | zinc finger protein 226 | 7769 | NA |
| NA | ENSG00000131115 | ZNF227 | zinc finger protein 227 | 7770 | NA |
| NA | ENSG00000159917 | ZNF235 | zinc finger protein 235 | 9310 | This gene product belongs to the zinc finger protein superfamily, members of which are regulatory proteins characterized by nucleic acid-binding zinc finger domains. The encoded protein is a member of the Kruppel family of zinc finger proteins, and contains Kruppel-associated box (KRAB) A and B domains and 15 tandemly arrayed C2H2-type zinc fingers. It is an ortholog of the mouse Zfp93 protein. This gene is located in a cluster of zinc finger genes on 19q13.2. |
| NA | ENSG00000062370 | ZNF112 | zinc finger protein 112 | 7771 | NA |
| NA | ENSG00000167384 | ZNF180 | zinc finger protein 180 | 7733 | Zinc finger proteins have been shown to interact with nucleic acids and to have diverse functions. The zinc finger domain is a conserved amino acid sequence motif containing 2 specifically positioned cysteines and 2 histidines that are involved in coordinating zinc. Kruppel-related proteins form 1 family of zinc finger proteins. See MIM 604749 for additional information on zinc finger proteins. |
| NA | ENSG00000073008 | PVR | poliovirus receptor | 5817 | The protein encoded by this gene is a transmembrane glycoprotein belonging to the immunoglobulin superfamily. The external domain mediates cell attachment to the extracellular matrix molecule vitronectin, while its intracellular domain interacts with the dynein light chain Tctex-1/DYNLT1. The gene is specific to the primate lineage, and serves as a cellular receptor for poliovirus in the first step of poliovirus replication. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000142273 | CBLC | Cbl proto-oncogene C, E3 ubiquitin protein ligase | 23624 | This gene encodes a member of the Cbl family of E3 ubiquitin ligases. Cbl proteins play important roles in cell signaling through the ubiquitination and subsequent downregulation of tyrosine kinases. Expression of this gene may be restricted to epithelial cells, and alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000187244 | BCAM | basal cell adhesion molecule (Lutheran blood group) | 4059 | This gene encodes Lutheran blood group glycoprotein, a member of the immunoglobulin superfamily and a receptor for the extracellular matrix protein, laminin. The protein contains five extracellular immunoglobulin domains, a single transmembrane domain, and a short C-terminal cytoplasmic tail. This protein may play a role in epithelial cell cancer and in vaso-occlusion of red blood cells in sickle cell disease. Polymorphisms in this gene define some of the antigens in the Lutheran system and also the Auberger system. Inactivating variants of this gene result in the recessive Lutheran null phenotype, Lu(a-b-), of the Lutheran blood group. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130202 | NECTIN2 | nectin cell adhesion molecule 2 | 5819 | This gene encodes a single-pass type I membrane glycoprotein with two Ig-like C2-type domains and an Ig-like V-type domain. This protein is one of the plasma membrane components of adherens junctions. It also serves as an entry for certain mutant strains of herpes simplex virus and pseudorabies virus, and it is involved in cell to cell spreading of these viruses. Variations in this gene have been associated with differences in the severity of multiple sclerosis. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000130204 | TOMM40 | translocase of outer mitochondrial membrane 40 | 10452 | The protein encoded by this gene is localized in the outer membrane of the mitochondria. It is the channel-forming subunit of the translocase of the mitochondrial outer membrane (TOM) complex that is essential for import of protein precursors into mitochondria. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000130203 | APOE | apolipoprotein E | 348 | The protein encoded by this gene is a major apoprotein of the chylomicron. It binds to a specific liver and peripheral cell receptor, and is essential for the normal catabolism of triglyceride-rich lipoprotein constituents. This gene maps to chromosome 19 in a cluster with the related apolipoprotein C1 and C2 genes. Mutations in this gene result in familial dysbetalipoproteinemia, or type III hyperlipoproteinemia (HLP III), in which increased plasma cholesterol and triglycerides are the consequence of impaired clearance of chylomicron and VLDL remnants. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000104853 | CLPTM1 | cleft lip and palate associated transmembrane protein 1 | 1209 | NA |
| NA | ENSG00000104856 | RELB | v-rel avian reticuloendotheliosis viral oncogene homolog B | 5971 | NA |
| NA | ENSG00000104859 | CLASRP | CLK4-associating serine/arginine rich protein | 11129 | NA |
| NA | ENSG00000170684 | ZNF296 | zinc finger protein 296 | 162979 | NA |
| NA | ENSG00000142252 | GEMIN7 | gem nuclear organelle associated protein 7 | 79760 | The protein encoded by this gene is a component of the core SMN complex, which is required for pre-mRNA splicing in the nucleus. The encoded protein is found in the nucleoplasm, in nuclear ‘gems’ (Gemini of Cajal bodies), and in the cytoplasm. Three transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000007047 | MARK4 | microtubule affinity regulating kinase 4 | 57787 | This gene encodes a member of the microtubule affinity-regulating kinase family. These protein kinases phosphorylate microtubule-associated proteins and regulate the transition between stable and dynamic microtubules. The encoded protein is associated with the centrosome throughout mitosis and may be involved in cell cycle control. Expression of this gene is a potential marker for cancer, and the encoded protein may also play a role in Alzheimer’s disease. Pseudogenes of this gene are located on both the short and long arm of chromosome 3. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000104866 | PPP1R37 | protein phosphatase 1 regulatory subunit 37 | 284352 | NA |
| NA | ENSG00000007255 | TRAPPC6A | trafficking protein particle complex 6A | 79090 | This gene encodes a component of the trafficking protein particle complex, which tethers transport vesicles to the cis-Golgi membrane. Loss of expression of the related gene in mouse affects coat and eye pigmentation, suggesting that the encoded protein may be involved in melanosome biogenesis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000189114 | BLOC1S3 | biogenesis of lysosomal organelles complex 1 subunit 3 | 388552 | This gene encodes a protein that is a component of the BLOC1 multi-subunit protein complex. This complex is necessary for the biogenesis of specialized organelles of the endosomal-lysosomal system, including platelet dense granules and melanosomes. Mutations in this gene cause Hermansky-Pudlak syndrome 8, a disease characterized by lysosomal storage defects, bleeding due to platelet storage pool deficiency, and oculocutaneous albinism. |
| NA | ENSG00000104884 | ERCC2 | excision repair cross-complementation group 2 | 2068 | The nucleotide excision repair pathway is a mechanism to repair damage to DNA. The protein encoded by this gene is involved in transcription-coupled nucleotide excision repair and is an integral member of the basal transcription factor BTF2/TFIIH complex. The gene product has ATP-dependent DNA helicase activity and belongs to the RAD3/XPD subfamily of helicases. Defects in this gene can result in three different disorders, the cancer-prone syndrome xeroderma pigmentosum complementation group D, trichothiodystrophy, and Cockayne syndrome. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000104881 | PPP1R13L | protein phosphatase 1 regulatory subunit 13 like | 10848 | IASPP is one of the most evolutionarily conserved inhibitors of p53 (TP53; MIM 191170), whereas ASPP1 (MIM 606455) and ASPP2 (MIM 602143) are activators of p53. |
| NA | ENSG00000117877 | CD3EAP | CD3e molecule associated protein | 10849 | NA |
| NA | ENSG00000125740 | FOSB | FBJ murine osteosarcoma viral oncogene homolog B | 2354 | The Fos gene family consists of 4 members: FOS, FOSB, FOSL1, and FOSL2. These genes encode leucine zipper proteins that can dimerize with proteins of the JUN family, thereby forming the transcription factor complex AP-1. As such, the FOS proteins have been implicated as regulators of cell proliferation, differentiation, and transformation. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125744 | RTN2 | reticulon 2 | 6253 | This gene belongs to the family of reticulon encoding genes. Reticulons are necessary for proper generation of tubular endoplasmic reticulum and likely play a role in intracellular vesicular transport. Alternatively spliced transcript variants encoding different isoforms have been identified. Mutations at this locus have been associated with autosomal dominant spastic paraplegia-12. |
| NA | ENSG00000125753 | VASP | vasodilator-stimulated phosphoprotein | 7408 | Vasodilator-stimulated phosphoprotein (VASP) is a member of the Ena-VASP protein family. Ena-VASP family members contain an EHV1 N-terminal domain that binds proteins containing E/DFPPPPXD/E motifs and targets Ena-VASP proteins to focal adhesions. In the mid-region of the protein, family members have a proline-rich domain that binds SH3 and WW domain-containing proteins. Their C-terminal EVH2 domain mediates tetramerization and binds both G and F actin. VASP is associated with filamentous actin formation and likely plays a widespread role in cell adhesion and motility. VASP may also be involved in the intracellular signaling pathways that regulate integrin-extracellular matrix interactions. VASP is regulated by the cyclic nucleotide-dependent kinases PKA and PKG. |
| NA | ENSG00000125741 | OPA3 | optic atrophy 3 (autosomal recessive, with chorea and spastic paraplegia) | 80207 | The mouse ortholog of this protein co-purifies with the mitochondrial inner membrane. Mutations in this gene have been shown to result in 3-methylglutaconic aciduria type III and autosomal dominant optic atrophy and cataract. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125746 | EML2 | echinoderm microtubule associated protein like 2 | 24139 | NA |
| NA | ENSG00000011478 | QPCTL | glutaminyl-peptide cyclotransferase-like | 54814 | NA |
| NA | ENSG00000177051 | FBXO46 | F-box protein 46 | 23403 | Members of the F-box protein family, such as FBXO46, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000177045 | SIX5 | SIX homeobox 5 | 147912 | The protein encoded by this gene is a homeodomain-containing transcription factor that appears to function in the regulation of organogenesis. This gene is located downstream of the dystrophia myotonica-protein kinase gene. Mutations in this gene are a cause of branchiootorenal syndrome type 2. |
| NA | ENSG00000104936 | DMPK | dystrophia myotonica protein kinase | 1760 | The protein encoded by this gene is a serine-threonine kinase that is closely related to other kinases that interact with members of the Rho family of small GTPases. Substrates for this enzyme include myogenin, the beta-subunit of the L-type calcium channels, and phospholemman. The 3’ untranslated region of this gene contains 5-37 copies of a CTG trinucleotide repeat. Expansion of this unstable motif to 50-5,000 copies causes myotonic dystrophy type I, which increases in severity with increasing repeat element copy number. Repeat expansion is associated with condensation of local chromatin structure that disrupts the expression of genes in this region. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000185800 | DMWD | dystrophia myotonica, WD repeat containing | 1762 | NA |
| NA | ENSG00000125755 | SYMPK | symplekin | 8189 | This gene encodes a nuclear protein that functions in the regulation of polyadenylation and promotes gene expression. The protein forms a high-molecular weight complex with components of the polyadenylation machinery. It is thought to serve as a scaffold for recruiting regulatory factors to the polyadenylation complex. It also participates in 3’-end maturation of histone mRNAs, which do not undergo polyadenylation. The protein also localizes to the cytoplasmic plaques of tight junctions in some cell types. |
| NA | ENSG00000170608 | FOXA3 | forkhead box A3 | 3171 | This gene encodes a member of the forkhead class of DNA-binding proteins. These hepatocyte nuclear factors are transcriptional activators for liver-specific transcripts such as albumin and transthyretin, and they also interact with chromatin. Similar family members in mice have roles in the regulation of metabolism and in the differentiation of the pancreas and liver. The crystal structure of a similar protein in rat has been resolved. |
| NA | ENSG00000170604 | IRF2BP1 | interferon regulatory factor 2 binding protein 1 | 26145 | NA |
| NA | ENSG00000176182 | MYPOP | Myb-related transcription factor, partner of profilin | 339344 | NA |
| NA | ENSG00000104967 | NOVA2 | neuro-oncological ventral antigen 2 | 4858 | NA |
| NA | ENSG00000104983 | CCDC61 | coiled-coil domain containing 61 | 729440 | NA |
| NA | ENSG00000124440 | HIF3A | hypoxia inducible factor 3 alpha subunit | 64344 | The protein encoded by this gene is the alpha-3 subunit of one of several alpha/beta-subunit heterodimeric transcription factors that regulate many adaptive responses to low oxygen tension (hypoxia). The alpha-3 subunit lacks the transactivation domain found in factors containing either the alpha-1 or alpha-2 subunits. It is thought that factors containing the alpha-3 subunit are negative regulators of hypoxia-inducible gene expression. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000011485 | PPP5C | protein phosphatase 5 catalytic subunit | 5536 | This gene encodes a serine/threonine phosphatase which is a member of the protein phosphatase catalytic subunit family. Proteins in this family participate in pathways regulated by reversible phosphorylation at serine and threonine residues; many of these pathways are involved in the regulation of cell growth and differentiation. The product of this gene has been shown to participate in signaling pathways in response to hormones or cellular stress, and elevated levels of this protein may be associated with breast cancer development. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169515 | CCDC8 | coiled-coil domain containing 8 | 83987 | This gene encodes a coiled-coil domain-containing protein. The encoded protein functions as a cofactor required for p53-mediated apoptosis following DNA damage, and may also play a role in growth through interactions with the cytoskeletal adaptor protein obscurin-like 1. Mutations in this gene are a cause of 3M syndrome-3 (3M3). |
| NA | ENSG00000182013 | PNMAL1 | paraneoplastic Ma antigen family-like 1 | 55228 | NA |
| NA | ENSG00000160014 | CALM3 | calmodulin 3 (phosphorylase kinase, delta) | 808 | NA |
| NA | ENSG00000160014 | CALM2 | calmodulin 2 (phosphorylase kinase, delta) | 805 | This gene is a member of the calmodulin gene family. There are three distinct calmodulin genes dispersed throughout the genome that encode the identical protein, but differ at the nucleotide level. Calmodulin is a calcium binding protein that plays a role in signaling pathways, cell cycle progression and proliferation. Several infants with severe forms of long-QT syndrome (LQTS) who displayed life-threatening ventricular arrhythmias together with delayed neurodevelopment and epilepsy were found to have mutations in either this gene or another member of the calmodulin gene family (PMID:23388215). Mutations in this gene have also been identified in patients with less severe forms of LQTS (PMID:24917665), while mutations in another calmodulin gene family member have been associated with catecholaminergic polymorphic ventricular tachycardia (CPVT)(PMID:23040497), a rare disorder thought to be the cause of a significant fraction of sudden cardiac deaths in young individuals. Pseudogenes of this gene are found on chromosomes 10, 13, and 17. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000197380 | DACT3 | dishevelled-binding antagonist of beta-catenin 3 | 147906 | NA |
| NA | ENSG00000105287 | PRKD2 | protein kinase D2 | 25865 | The protein encoded by this gene belongs to the protein kinase D (PKD) family of serine/threonine protein kinases. This kinase can be activated by phorbol esters as well as by gastrin via the cholecystokinin B receptor (CCKBR) in gastric cancer cells. It can bind to diacylglycerol (DAG) in the trans-Golgi network (TGN) and may regulate basolateral membrane protein exit from TGN. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000090372 | STRN4 | striatin 4 | 29888 | NA |
| NA | ENSG00000181027 | FKRP | fukutin related protein | 79147 | This gene encodes a protein which is targeted to the medial Golgi apparatus and is necessary for posttranslational modification of dystroglycan. Mutations in this gene have been associated with congenital muscular dystrophy, mental retardation, and cerebellar cysts. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000105281 | SLC1A5 | solute carrier family 1 member 5 | 6510 | The SLC1A5 gene encodes a sodium-dependent neutral amino acid transporter that can act as a receptor for RD114/type D retrovirus (Larriba et al., 2001 [PubMed 11781704]). |
| NA | ENSG00000042753 | AP2S1 | adaptor related protein complex 2 sigma 1 subunit | 1175 | One of two major clathrin-associated adaptor complexes, AP-2, is a heterotetramer which is associated with the plasma membrane. This complex is composed of two large chains, a medium chain, and a small chain. This gene encodes the small chain of this complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160007 | ARHGAP35 | Rho GTPase activating protein 35 | 2909 | The human glucocorticoid receptor DNA binding factor, which associates with the promoter region of the glucocorticoid receptor gene (hGR gene), is a repressor of glucocorticoid receptor transcription. The amino acid sequence deduced from the cDNA sequences show the presence of three sequence motifs characteristic of a zinc finger and one motif suggestive of a leucine zipper in which 1 cysteine is found instead of all leucines. The GRLF1 enhances the homologous down-regulation of wild-type hGR gene expression. Biochemical analysis suggests that GRLF1 interaction is sequence specific and that transcriptional efficacy of GRLF1 is regulated through its interaction with specific sequence motif. The level of expression is regulated by glucocorticoids. |
| NA | ENSG00000130751 | NPAS1 | neuronal PAS domain protein 1 | 4861 | The protein encoded by this gene is a member of the basic helix-loop-helix (bHLH)-PAS family of transcription factors. Studies of a related mouse gene suggest that it functions in neurons. The exact function of this gene is unclear, but it may play protective or modulatory roles during late embryogenesis and postnatal development. |
| NA | ENSG00000130748 | TMEM160 | transmembrane protein 160 | 54958 | NA |
| NA | ENSG00000130749 | ZC3H4 | zinc finger CCCH-type containing 4 | 23211 | This gene encodes a member of a family of CCCH (C-x8-C-x5-C-x3-H type) zinc finger domain-containing proteins. These zinc finger domains, which coordinate zinc finger binding and are characterized by three cysteine residues and one histidine residue, are nucleic acid-binding. Other family members are known to function in post-transcriptional regulation. |
| NA | ENSG00000142230 | SAE1 | SUMO1 activating enzyme subunit 1 | 10055 | Posttranslational modification of proteins by the addition of the small protein SUMO (see SUMO1; MIM 601912), or sumoylation, regulates protein structure and intracellular localization. SAE1 and UBA2 (MIM 613295) form a heterodimer that functions as a SUMO-activating enzyme for the sumoylation of proteins (Okuma et al., 1999 [PubMed 9920803]). |
| NA | ENSG00000105327 | BBC3 | BCL2 binding component 3 | 27113 | This gene encodes a member of the BCL-2 family of proteins. This family member belongs to the BH3-only pro-apoptotic subclass. The protein cooperates with direct activator proteins to induce mitochondrial outer membrane permeabilization and apoptosis. It can bind to anti-apoptotic Bcl-2 family members to induce mitochondrial dysfunction and caspase activation. Because of its pro-apoptotic role, this gene is a potential drug target for cancer therapy and for tissue injury. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105321 | CCDC9 | coiled-coil domain containing 9 | 26093 | NA |
| NA | ENSG00000257704 | INAFM1 | InaF motif containing 1 | 255783 | NA |
| NA | ENSG00000134815 | DHX34 | DEAH-box helicase 34 | 9704 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a member of this family. It is mapped to the glioma 19q tumor suppressor region and is a tumor suppressor candidate gene. |
| NA | ENSG00000105419 | MEIS3 | Meis homeobox 3 | 56917 | NA |
| NA | ENSG00000118160 | SLC8A2 | solute carrier family 8 member A2 | 6543 | NA |
| NA | ENSG00000118162 | KPTN | kaptin (actin binding protein) | 11133 | This gene encodes a filamentous-actin-associated protein, which is involved in actin dynamics and plays an important role in neuromorphogenesis. Mutations in this gene result in recessive mental retardation-41. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000105402 | NAPA | NSF attachment protein alpha | 8775 | This gene encodes a member of the soluble NSF attachment protein (SNAP) family. SNAP proteins play a critical role in the docking and fusion of vesicles to target membranes as part of the 20S NSF-SNAP-SNARE complex. The encoded protein plays a role in the completion of membrane fusion by mediating the interaction of N-ethylmaleimide-sensitive factor (NSF) with the vesicle-associated and membrane-associated SNAP receptor (SNARE) complex, and stimulating the ATPase activity of NSF. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000063169 | GLTSCR1 | glioma tumor suppressor candidate region gene 1 | 29998 | NA |
| NA | ENSG00000024422 | EHD2 | EH domain containing 2 | 30846 | This gene encodes a member of the EH domain-containing protein family. These proteins are characterized by a C-terminal EF-hand domain, a nucleotide-binding consensus site at the N terminus and a bipartite nuclear localization signal. The encoded protein interacts with the actin cytoskeleton through an N-terminal domain and also binds to an EH domain-binding protein through the C-terminal EH domain. This interaction appears to connect clathrin-dependent endocytosis to actin, suggesting that this gene product participates in the endocytic pathway. |
| NA | ENSG00000105373 | GLTSCR2 | glioma tumor suppressor candidate region gene 2 | 29997 | NA |
| NA | ENSG00000178980 | SEPW1 | selenoprotein W, 1 | 6415 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. This protein shows highest expression in skeletal muscle and heart, and may be involved in oxidation-reduction reactions. A retroprocessed pseudogene, SEPW1P, has been identified and mapped to chromosome 1p35-34. |
| NA | ENSG00000105486 | LIG1 | ligase I, DNA, ATP-dependent | 3978 | This gene encodes a member of the ATP-dependent DNA ligase protein family. The encoded protein functions in DNA replication, recombination, and the base excision repair process. Mutations in this gene that lead to DNA ligase I deficiency result in immunodeficiency and increased sensitivity to DNA-damaging agents. Disruption of this gene may also be associated with a variety of cancers. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000185453 | C19orf68 | chromosome 19 open reading frame 68 | 374920 | NA |
| NA | ENSG00000178150 | ZNF114 | zinc finger protein 114 | 163071 | NA |
| NA | ENSG00000105483 | CARD8 | caspase recruitment domain family member 8 | 22900 | The protein encoded by this gene belongs to the caspase recruitment domain (CARD)-containing family of proteins, which are involved in pathways leading to activation of caspases or nuclear factor kappa-B (NFKB). This protein may be a component of the inflammasome, a protein complex that plays a role in the activation of proinflammatory caspases. It is thought that this protein acts as an adaptor molecule that negatively regulates NFKB activation, CASP1-dependent IL1B secretion, and apoptosis. Polymorphisms in this gene may be associated with a susceptibility to rheumatoid arthritis. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000142227 | EMP3 | epithelial membrane protein 3 | 2014 | The protein encoded by this gene belongs to the PMP-22/EMP/MP20 family of proteins. The protein contains four transmembrane domains and two N-linked glycosylation sites. It is thought to be involved in cell proliferation, cell-cell interactions and function as a tumor suppressor. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000161558 | TMEM143 | transmembrane protein 143 | 55260 | NA |
| NA | ENSG00000105438 | KDELR1 | KDEL endoplasmic reticulum protein retention receptor 1 | 10945 | Retention of resident soluble proteins in the lumen of the endoplasmic reticulum (ER) is achieved in both yeast and animal cells by their continual retrieval from the cis-Golgi, or a pre-Golgi compartment. Sorting of these proteins is dependent on a C-terminal tetrapeptide signal, usually lys-asp-glu-leu (KDEL) in animal cells, and his-asp-glu-leu (HDEL) in S. cerevisiae. This process is mediated by a receptor that recognizes, and binds the tetrapeptide-containing protein, and returns it to the ER. In yeast, the sorting receptor encoded by a single gene, ERD2, which is a seven-transmembrane protein. Unlike yeast, several human homologs of the ERD2 gene, constituting the KDEL receptor gene family, have been described. The protein encoded by this gene was the first member of the family to be identified, and it encodes a protein structurally and functionally similar to the yeast ERD2 gene product. |
| NA | ENSG00000105464 | GRIN2D | glutamate ionotropic receptor NMDA type subunit 2D | 2906 | N-methyl-D-aspartate (NMDA) receptors are a class of ionotropic glutamate receptors. NMDA channel has been shown to be involved in long-term potentiation, an activity-dependent increase in the efficiency of synaptic transmission thought to underlie certain kinds of memory and learning. NMDA receptor channels are heteromers composed of the key receptor subunit NMDAR1 (GRIN1) and 1 or more of the 4 NMDAR2 subunits: NMDAR2A (GRIN2A), NMDAR2B (GRIN2B), NMDAR2C (GRIN2C), and NMDAR2D (GRIN2D). |
| NA | ENSG00000105447 | GRWD1 | glutamate-rich WD repeat containing 1 | 83743 | This gene encodes a glutamate-rich protein that contains five WD-repeat motifs. The encoded protein may play a critical role in ribosome biogenesis and may also play a role in histone methylation through interactions with CUL4-DDB1 ubiquitin E3 ligase. |
| NA | ENSG00000182324 | KCNJ14 | potassium voltage-gated channel subfamily J member 14 | 3770 | Potassium channels are present in most mammalian cells, where they participate in a wide range of physiologic responses. The protein encoded by this gene is an integral membrane protein and inward-rectifier type potassium channel, and probably has a role in controlling the excitability of motor neurons. |
| NA | ENSG00000142235 | LMTK3 | lemur tyrosine kinase 3 | 114783 | NA |
| NA | ENSG00000063177 | RPL18 | ribosomal protein L18 | 6141 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a member of the L18E family of ribosomal proteins that is a component of the 60S subunit. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000063176 | SPHK2 | sphingosine kinase 2 | 56848 | This gene encodes one of two sphingosine kinase isozymes that catalyze the phosphorylation of sphingosine into sphingosine 1-phosphate. Sphingosine 1-phosphate mediates many cellular processes including migration, proliferation and apoptosis, and also plays a role in several types of cancer by promoting angiogenesis and tumorigenesis. The encoded protein may play a role in breast cancer proliferation and chemoresistance. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000105516 | DBP | D site of albumin promoter (albumin D-box) binding protein | 1628 | The protein encoded by this gene is a member of the PAR bZIP transcription factor family and binds to specific sequences in the promoters of several genes, such as albumin, CYP2A4, and CYP2A5. The encoded protein can bind DNA as a homo- or heterodimer and is involved in the regulation of some circadian rhythm genes. |
| NA | ENSG00000063180 | CA11 | carbonic anhydrase 11 | 770 | Carbonic anhydrases (CAs) are a large family of zinc metalloenzymes that catalyze the reversible hydration of carbon dioxide. They participate in a variety of biological processes, including respiration, calcification, acid-base balance, bone resorption, and the formation of aqueous humor, cerebrospinal fluid, saliva, and gastric acid. They show extensive diversity in tissue distribution and in their subcellular localization. CA XI is likely a secreted protein, however, radical changes at active site residues completely conserved in CA isozymes with catalytic activity, make it unlikely that it has carbonic anhydrase activity. It shares properties in common with two other acatalytic CA isoforms, CA VIII and CA X. CA XI is most abundantly expressed in brain, and may play a general role in the central nervous system. |
| NA | ENSG00000176920 | FUT2 | fucosyltransferase 2 | 2524 | The protein encoded by this gene is a Golgi stack membrane protein that is involved in the creation of a precursor of the H antigen, which is required for the final step in the soluble A and B antigen synthesis pathway. This gene is one of two encoding the galactoside 2-L-fucosyltransferase enzyme. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000176909 | MAMSTR | MEF2 activating motif and SAP domain containing transcriptional regulator | 284358 | NA |
| NA | ENSG00000105538 | RASIP1 | Ras interacting protein 1 | 54922 | NA |
| NA | ENSG00000174951 | FUT1 | fucosyltransferase 1 (H blood group) | 2523 | The protein encoded by this gene is a Golgi stack membrane protein that is involved in the creation of a precursor of the H antigen, which is required for the final step in the soluble A and B antigen synthesis pathway. This gene is one of two encoding the galactoside 2-L-fucosyltransferase enzyme. Mutations in this gene are a cause of the H-Bombay blood group. |
| NA | ENSG00000105552 | BCAT2 | branched chain amino acid transaminase 2 | 587 | This gene encodes a branched chain aminotransferase found in mitochondria. The encoded protein forms a dimer that catalyzes the first step in the production of the branched chain amino acids leucine, isoleucine, and valine. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000087076 | HSD17B14 | hydroxysteroid (17-beta) dehydrogenase 14 | 51171 | 17-beta-hydroxysteroid dehydrogenases, such as HSD17B14, are primarily involved in metabolism of steroids at the C17 position and also of other substrates, such as fatty acids, prostaglandins, and xenobiotics (Lukacik et al., 2007 [PubMed 17067289]). |
| NA | ENSG00000105559 | PLEKHA4 | pleckstrin homology domain containing A4 | 57664 | NA |
| NA | ENSG00000087074 | PPP1R15A | protein phosphatase 1 regulatory subunit 15A | 23645 | This gene is a member of a group of genes whose transcript levels are increased following stressful growth arrest conditions and treatment with DNA-damaging agents. The induction of this gene by ionizing radiation occurs in certain cell lines regardless of p53 status, and its protein response is correlated with apoptosis following ionizing radiation. |
| NA | ENSG00000104805 | NUCB1 | nucleobindin 1 | 4924 | This gene encodes a member of a small calcium-binding EF-hand protein family. The encoded protein is thought to have a key role in Golgi calcium homeostasis and Ca(2+)-regulated signal transduction events. |
| NA | ENSG00000087088 | BAX | BCL2-associated X protein | 581 | The protein encoded by this gene belongs to the BCL2 protein family. BCL2 family members form hetero- or homodimers and act as anti- or pro-apoptotic regulators that are involved in a wide variety of cellular activities. This protein forms a heterodimer with BCL2, and functions as an apoptotic activator. This protein is reported to interact with, and increase the opening of, the mitochondrial voltage-dependent anion channel (VDAC), which leads to the loss in membrane potential and the release of cytochrome c. The expression of this gene is regulated by the tumor suppressor P53 and has been shown to be involved in P53-mediated apoptosis. Multiple alternatively spliced transcript variants, which encode different isoforms, have been reported for this gene. |
| NA | ENSG00000087086 | FTL | ferritin, light polypeptide | 2512 | This gene encodes the light subunit of the ferritin protein. Ferritin is the major intracellular iron storage protein in prokaryotes and eukaryotes. It is composed of 24 subunits of the heavy and light ferritin chains. Variation in ferritin subunit composition may affect the rates of iron uptake and release in different tissues. A major function of ferritin is the storage of iron in a soluble and nontoxic state. Defects in this light chain ferritin gene are associated with several neurodegenerative diseases and hyperferritinemia-cataract syndrome. This gene has multiple pseudogenes. |
| NA | ENSG00000104812 | GYS1 | glycogen synthase 1 | 2997 | The protein encoded by this gene catalyzes the addition of glucose monomers to the growing glycogen molecule through the formation of alpha-1,4-glycoside linkages. Mutations in this gene are associated with muscle glycogen storage disease. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183207 | RUVBL2 | RuvB like AAA ATPase 2 | 10856 | This gene encodes the second human homologue of the bacterial RuvB gene. Bacterial RuvB protein is a DNA helicase essential for homologous recombination and DNA double-strand break repair. Functional analysis showed that this gene product has both ATPase and DNA helicase activities. This gene is physically linked to the CGB/LHB gene cluster on chromosome 19q13.3, and is very close (55 nt) to the LHB gene, in the opposite orientation. |
| NA | ENSG00000104852 | SNRNP70 | small nuclear ribonucleoprotein U1 subunit 70 | 6625 | NA |
| NA | ENSG00000104863 | LIN7B | lin-7 homolog B, crumbs cell polarity complex component | 64130 | NA |
| NA | ENSG00000221916 | C19orf73 | chromosome 19 open reading frame 73 | 55150 | NA |
| NA | ENSG00000177380 | PPFIA3 | PTPRF interacting protein alpha 3 | 8541 | The protein encoded by this gene is a member of the LAR protein-tyrosine phosphatase-interacting protein (liprin) family. Liprins interact with members of LAR family of transmembrane protein tyrosine phosphatases, which are known to be important for axon guidance and mammary gland development. Liprin family protein has been shown to localize phosphatase LAR to cell focal adhesions and may be involved in the molecular organization of presynaptic active zones. |
| NA | ENSG00000130528 | HRC | histidine rich calcium binding protein | 3270 | This gene encodes a luminal sarcoplasmic reticulum protein identified by its ability to bind low-density lipoprotein with high affinity. The protein interacts with the cytoplasmic domain of triadin, the main transmembrane protein of the junctional sarcoplasmic reticulum (SR) of skeletal muscle. The protein functions in the regulation of releasable calcium into the SR. |
| NA | ENSG00000104894 | CD37 | CD37 molecule | 951 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. This encoded protein is a cell surface glycoprotein that is known to complex with integrins and other transmembrane 4 superfamily proteins. It may play a role in T-cell-B-cell interactions. Alternate splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000074219 | TEAD2 | TEA domain transcription factor 2 | 8463 | NA |
| NA | ENSG00000104901 | DKKL1 | dickkopf like acrosomal protein 1 | 27120 | The dickkopf protein family interacts with the Wnt signaling pathway and its members are characterized by two conserved cysteine-rich domains. This gene encodes a secreted protein that has low sequence similarity to the dickkopf-3 protein. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000161618 | ALDH16A1 | aldehyde dehydrogenase 16 family member A1 | 126133 | This gene encodes a member of the aldehyde dehydrogenase superfamily. The family members act on aldehyde substrates and use nicotinamide adenine dinucleotide phosphate (NADP) as a cofactor. This gene is conserved in chimpanzee, dog, cow, mouse, rat, and zebrafish. The protein encoded by this gene interacts with maspardin, a protein that when truncated is responsible for Mast syndrome. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000142541 | RPL13A | ribosomal protein L13a | 23521 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a member of the L13P family of ribosomal proteins that is a component of the 60S subunit. The encoded protein also plays a role in the repression of inflammatory genes as a component of the IFN-gamma-activated inhibitor of translation (GAIT) complex. This gene is co-transcribed with the small nucleolar RNA genes U32, U33, U34, and U35, which are located in the second, fourth, fifth, and sixth introns, respectively. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed throughout the genome. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000142534 | RPS11 | ribosomal protein S11 | 6205 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a member of the S17P family of ribosomal proteins that is a component of the 40S subunit. This gene is co-transcribed with the small nucleolar RNA gene U35B, which is located in the third intron. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed throughout the genome. |
| NA | ENSG00000104870 | FCGRT | Fc fragment of IgG receptor and transporter | 2217 | This gene encodes a receptor that binds the Fc region of monomeric immunoglobulin G. The encoded protein transfers immunoglobulin G antibodies from mother to fetus across the placenta. This protein also binds immunoglobulin G to protect the antibody from degradation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000142552 | RCN3 | reticulocalbin 3 | 57333 | NA |
| NA | ENSG00000142546 | NOSIP | nitric oxide synthase interacting protein | 51070 | The protein encoded by this gene may modulate the activity and localization of nitric oxide synthase (endothelial and neuronal) and thus nitric oxide production. Alternative splicing results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000126460 | PRRG2 | proline rich Gla (G-carboxyglutamic acid) 2 | 5639 | The protein encoded by this gene is a single-pass transmembrane protein containing an N-terminal gamma-carboxyglutamic acid (Gla) domain and tandem Pro/Leu-Pro-Xaa-Tyr (PY) motifs at its C-terminal end. The Gla domain is exposed on the cell surface while the PY motifs are cytoplasmic. The PY motifs of the encoded protein have been shown to interact with YAP1, a WW domain-containing protein. Therefore, it is thought that the encoded protein may be part of a signal transduction pathway. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000126464 | PRR12 | proline rich 12 | 57479 | NA |
| NA | ENSG00000126458 | RRAS | related RAS viral (r-ras) oncogene homolog | 6237 | The protein encoded by this gene is a small GTPase involved in diverse processes including angiogenesis, vascular homeostasis and regeneration, cell adhesion, and neuronal axon guidance. Mutations in this gene are found in many invasive cancers. |
| NA | ENSG00000126461 | SCAF1 | SR-related CTD associated factor 1 | 58506 | NA |
| NA | ENSG00000126456 | IRF3 | interferon regulatory factor 3 | 3661 | This gene encodes a member of the interferon regulatory transcription factor (IRF) family. The encoded protein is found in an inactive cytoplasmic form that upon serine/threonine phosphorylation forms a complex with CREBBP. This complex translocates to the nucleus and activates the transcription of interferons alpha and beta, as well as other interferon-induced genes. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000126453 | BCL2L12 | BCL2 like 12 | 83596 | This gene encodes a member of a family of proteins containing a Bcl-2 homology domain 2 (BH2). The encoded protein is an anti-apoptotic factor that acts as an inhibitor of caspases 3 and 7 in the cytoplasm. In the nucleus, it binds to the p53 tumor suppressor protein, preventing its association with target genes. Overexpression of this gene has been detected in a number of different cancers. There is a pseudogene for this gene on chromosome 3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000126457 | PRMT1 | protein arginine methyltransferase 1 | 3276 | This gene encodes a member of the protein arginine N-methyltransferase (PRMT) family. Post-translational modification of target proteins by PRMTs plays an important regulatory role in many biological processes, whereby PRMTs methylate arginine residues by transferring methyl groups from S-adenosyl-L-methionine to terminal guanidino nitrogen atoms. The encoded protein is a type I PRMT and is responsible for the majority of cellular arginine methylation activity. Increased expression of this gene may play a role in many types of cancer. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 5. |
| NA | ENSG00000196961 | AP2A1 | adaptor related protein complex 2 alpha 1 subunit | 160 | This gene encodes the alpha 1 adaptin subunit of the adaptor protein 2 (AP-2) complex found in clathrin coated vesicles. The AP-2 complex is a heterotetramer consisting of two large adaptins (alpha or beta), a medium adaptin (mu), and a small adaptin (sigma). The complex is part of the protein coat on the cytoplasmic face of coated vesicles which links clathrin to receptors in vesicles. Alternative splicing of this gene results in two transcript variants encoding two different isoforms. A third transcript variant has been described, but its full length nature has not been determined. |
| NA | ENSG00000010361 | FUZ | fuzzy planar cell polarity protein | 80199 | This gene encodes a planar cell polarity protein that is involved in ciliogenesis and directional cell movement. Knockout studies in mice exhibit neural tube defects and defective cilia, and mutations in this gene are associated with neural tube defects in humans. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000104973 | MED25 | mediator complex subunit 25 | 81857 | This gene encodes a component of the transcriptional coactivator complex termed the Mediator complex. This complex is required for transcription of most RNA polymerase II-dependent genes. The encoded protein plays a role in chromatin modification and in preinitiation complex assembly. Mutations in this gene are associated with Charcot-Marie-Tooth disease type 2B2. |
| NA | ENSG00000104960 | PTOV1 | prostate tumor overexpressed 1 | 53635 | This gene encodes a protein that was found to be overexpressed in prostate adenocarcinomas. The encoded protein was found to interact with the lipid raft protein flotillin-1 and shuttle it from the cytoplasm to the nucleus in a cell cycle dependent manner. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000039650 | PNKP | polynucleotide kinase 3’-phosphatase | 11284 | This locus represents a gene involved in DNA repair. In response to ionizing radiation or oxidative damage, the protein encoded by this locus catalyzes 5’ phosphorylation and 3’ dephosphorylation of nucleic acids. Mutations at this locus have been associated with microcephaly, seizures, and developmental delay. |
| NA | ENSG00000204673 | AKT1S1 | AKT1 substrate 1 (proline rich) | 84335 | AKT1S1 is a proline-rich substrate of AKT (MIM 164730) that binds 14-3-3 protein (see YWHAH, MIM 113508) when phosphorylated (Kovacina et al., 2003 [PubMed 12524439]). |
| NA | ENSG00000104946 | TBC1D17 | TBC1 domain family member 17 | 79735 | NA |
| NA | ENSG00000213024 | NUP62 | nucleoporin 62kDa | 23636 | The nuclear pore complex is a massive structure that extends across the nuclear envelope, forming a gateway that regulates the flow of macromolecules between the nucleus and the cytoplasm. Nucleoporins are the main components of the nuclear pore complex in eukaryotic cells. The protein encoded by this gene is a member of the FG-repeat containing nucleoporins and is localized to the nuclear pore central plug. This protein associates with the importin alpha/beta complex which is involved in the import of proteins containing nuclear localization signals. Multiple transcript variants of this gene encode a single protein isoform. |
| NA | ENSG00000169136 | ATF5 | activating transcription factor 5 | 22809 | NA |
| NA | ENSG00000105053 | VRK3 | vaccinia related kinase 3 | 51231 | This gene encodes a member of the vaccinia-related kinase (VRK) family of serine/threonine protein kinases. In both human and mouse, this gene has substitutions at several residues within the ATP binding motifs that in other kinases have been shown to be required for catalysis. In vitro assays indicate the protein lacks phosphorylation activity. The protein, however, likely retains its substrate binding capability. This gene is widely expressed in human tissues and its protein localizes to the nucleus. Alternative splicing results in multiple transcripts encoding different isoforms. |
| NA | ENSG00000142528 | ZNF473 | zinc finger protein 473 | 25888 | NA |
| NA | ENSG00000131398 | KCNC3 | potassium voltage-gated channel subfamily C member 3 | 3748 | The Shaker gene family of Drosophila encodes components of voltage-gated potassium channels and is comprised of four subfamilies. Based on sequence similarity, this gene is similar to one of these subfamilies, namely the Shaw subfamily. The protein encoded by this gene belongs to the delayed rectifier class of channel proteins and is an integral membrane protein that mediates the voltage-dependent potassium ion permeability of excitable membranes. Alternate splicing results in several transcript variants. |
| NA | ENSG00000131408 | NR1H2 | nuclear receptor subfamily 1 group H member 2 | 7376 | The liver X receptors, LXRA (NR1H3; MIM 602423) and LXRB, form a subfamily of the nuclear receptor superfamily and are key regulators of macrophage function, controlling transcriptional programs involved in lipid homeostasis and inflammation. The inducible LXRA is highly expressed in liver, adrenal gland, intestine, adipose tissue, macrophages, lung, and kidney, whereas LXRB is ubiquitously expressed. Ligand-activated LXRs form obligate heterodimers with retinoid X receptors (RXRs; see MIM 180245) and regulate expression of target genes containing LXR response elements (summary by Korf et al., 2009 [PubMed 19436111]). |
| NA | ENSG00000062822 | POLD1 | polymerase (DNA) delta 1, catalytic subunit | 5424 | This gene encodes the 125-kDa catalytic subunit of DNA polymerase delta. DNA polymerase delta possesses both polymerase and 3’ to 5’ exonuclease activity and plays a critical role in DNA replication and repair. Alternatively spliced transcript variants have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 6. |
| NA | ENSG00000269404 | SPIB | Spi-B transcription factor | 6689 | The protein encoded by this gene is a transcriptional activator that binds to the PU-box (5’-GAGGAA-3’) and acts as a lymphoid-specific enhancer. Four transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000142530 | FAM71E1 | family with sequence similarity 71 member E1 | 112703 | NA |
| NA | ENSG00000161671 | EMC10 | ER membrane protein complex subunit 10 | 284361 | NA |
| NA | ENSG00000213023 | SYT3 | synaptotagmin 3 | 84258 | NA |
| NA | ENSG00000105472 | CLEC11A | C-type lectin domain family 11 member A | 6320 | This gene encodes a member of the C-type lectin superfamily. The encoded protein is a secreted sulfated glycoprotein and functions as a growth factor for primitive hematopoietic progenitor cells. An alternative splice variant has been described but its biological nature has not been determined. |
| NA | ENSG00000167747 | C19orf48 | chromosome 19 open reading frame 48 | 84798 | NA |
| NA | ENSG00000167754 | KLK5 | kallikrein related peptidase 5 | 25818 | Kallikreins are a subgroup of serine proteases having diverse physiological functions. Growing evidence suggests that many kallikreins are implicated in carcinogenesis and some have potential as novel cancer and other disease biomarkers. This gene is one of the fifteen kallikrein subfamily members located in a cluster on chromosome 19. Its expression is up-regulated by estrogens and progestins. The encoded protein is secreted and may be involved in desquamation in the epidermis. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000129451 | KLK10 | kallikrein related peptidase 10 | 5655 | Kallikreins are a subgroup of serine proteases having diverse physiological functions. Growing evidence suggests that many kallikreins are implicated in carcinogenesis and some have potential as novel cancer and other disease biomarkers. This gene is one of the fifteen kallikrein subfamily members located in a cluster on chromosome 19. Its encoded protein is secreted and may play a role in suppression of tumorigenesis in breast and prostate cancers. Alternate splicing of this gene results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000142544 | CTU1 | cytosolic thiouridylase subunit 1 | 90353 | NA |
| NA | ENSG00000142549 | IGLON5 | IgLON family member 5 | 402665 | NA |
| NA | ENSG00000186806 | VSIG10L | V-set and immunoglobulin domain containing 10 like | 147645 | NA |
| NA | ENSG00000105379 | ETFB | electron transfer flavoprotein beta subunit | 2109 | This gene encodes electron-transfer-flavoprotein, beta polypeptide, which shuttles electrons between primary flavoprotein dehydrogenases involved in mitochondrial fatty acid and amino acid catabolism and the membrane-bound electron transfer flavoprotein ubiquinone oxidoreductase. The gene deficiencies have been implicated in type II glutaricaciduria. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000160318 | CLDND2 | claudin domain containing 2 | 125875 | NA |
| NA | ENSG00000262874 | C19orf84 | chromosome 19 open reading frame 84 | 147646 | NA |
| NA | ENSG00000105497 | ZNF175 | zinc finger protein 175 | 7728 | NA |
| NA | ENSG00000198093 | ZNF649 | zinc finger protein 649 | 65251 | NA |
| NA | ENSG00000176024 | ZNF613 | zinc finger protein 613 | 79898 | NA |
| NA | ENSG00000256683 | ZNF350 | zinc finger protein 350 | 59348 | NA |
| NA | ENSG00000197619 | ZNF615 | zinc finger protein 615 | 284370 | NA |
| NA | ENSG00000142556 | ZNF614 | zinc finger protein 614 | 80110 | NA |
| NA | ENSG00000256087 | ZNF432 | zinc finger protein 432 | 9668 | NA |
| NA | ENSG00000197608 | ZNF841 | zinc finger protein 841 | 284371 | NA |
| NA | ENSG00000204611 | ZNF616 | zinc finger protein 616 | 90317 | NA |
| NA | ENSG00000196267 | ZNF836 | zinc finger protein 836 | 162962 | NA |
| NA | ENSG00000105568 | PPP2R1A | protein phosphatase 2 regulatory subunit A, alpha | 5518 | This gene encodes a constant regulatory subunit of protein phosphatase 2. Protein phosphatase 2 is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The constant regulatory subunit A serves as a scaffolding molecule to coordinate the assembly of the catalytic subunit and a variable regulatory B subunit. This gene encodes an alpha isoform of the constant regulatory subunit A. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000198464 | ZNF480 | zinc finger protein 480 | 147657 | NA |
| NA | ENSG00000167554 | ZNF610 | zinc finger protein 610 | 162963 | NA |
| NA | ENSG00000198633 | ZNF534 | zinc finger protein 534 | 147658 | NA |
| NA | ENSG00000258405 | ZNF578 | zinc finger protein 578 | 147660 | NA |
| NA | ENSG00000198482 | ZNF808 | zinc finger protein 808 | 388558 | NA |
| NA | ENSG00000167562 | ZNF701 | zinc finger protein 701 | 55762 | NA |
| NA | ENSG00000167766 | ZNF83 | zinc finger protein 83 | 55769 | NA |
| NA | ENSG00000213020 | ZNF611 | zinc finger protein 611 | 81856 | NA |
| NA | ENSG00000189190 | ZNF600 | zinc finger protein 600 | 162966 | NA |
| NA | ENSG00000198538 | ZNF28 | zinc finger protein 28 | 7576 | NA |
| NA | ENSG00000204604 | ZNF468 | zinc finger protein 468 | 90333 | NA |
| NA | ENSG00000180257 | ZNF816 | zinc finger protein 816 | 125893 | NA |
| NA | ENSG00000170949 | ZNF160 | zinc finger protein 160 | 90338 | The protein encoded by this gene is a Kruppel-related zinc finger protein which is characterized by the presence of an N-terminal repressor domain, the Kruppel-associated box (KRAB). The KRAB domain is a potent repressor of transcription; thus this protein may function in transcription regulation. Three alternative transcripts encoding the same protein have been described. |
| NA | ENSG00000170954 | ZNF415 | zinc finger protein 415 | 55786 | NA |
| NA | ENSG00000197937 | ZNF347 | zinc finger protein 347 | 84671 | NA |
| NA | ENSG00000197497 | ZNF665 | zinc finger protein 665 | 79788 | NA |
| NA | ENSG00000203326 | ZNF525 | zinc finger protein 525 | ENSG00000203326 | NA |
| NA | ENSG00000196417 | ZNF765 | zinc finger protein 765 | 91661 | NA |
| NA | ENSG00000198346 | ZNF813 | zinc finger protein 813 | 126017 | NA |
| NA | ENSG00000130844 | ZNF331 | zinc finger protein 331 | 55422 | This gene encodes a zinc finger protein containing a KRAB (Kruppel-associated box) domain found in transcriptional repressors. This gene may be methylated and silenced in cancer cells. This gene is located within a differentially methylated region (DMR) and shows allele-specific expression in placenta. Alternative splicing and the use of alternative promoters results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000179820 | MYADM | myeloid-associated differentiation marker | 91663 | NA |
| NA | ENSG00000126583 | PRKCG | protein kinase C gamma | 5582 | Protein kinase C (PKC) is a family of serine- and threonine-specific protein kinases that can be activated by calcium and second messenger diacylglycerol. PKC family members phosphorylate a wide variety of protein targets and are known to be involved in diverse cellular signaling pathways. PKC also serve as major receptors for phorbol esters, a class of tumor promoters. Each member of the PKC family has a specific expression profile and is believed to play distinct roles in cells. The protein encoded by this gene is one of the PKC family members. This protein kinase is expressed solely in the brain and spinal cord and its localization is restricted to neurons. It has been demonstrated that several neuronal functions, including long term potentiation (LTP) and long term depression (LTD), specifically require this kinase. Knockout studies in mice also suggest that this kinase may be involved in neuropathic pain development. Defects in this protein have been associated with neurodegenerative disorder spinocerebellar ataxia-14 (SCA14). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000105605 | CACNG7 | calcium voltage-gated channel auxiliary subunit gamma 7 | 59284 | The protein encoded by this gene is a type II transmembrane AMPA receptor regulatory protein (TARP). TARPs regulate both trafficking and channel gating of the AMPA receptors. This gene is part of a functionally diverse eight-member protein subfamily of the PMP-22/EMP/MP20 family and is located in a cluster with two family members, a type I TARP and a calcium channel gamma subunit. |
| NA | ENSG00000170906 | NDUFA3 | NADH:ubiquinone oxidoreductase subunit A3 | 4696 | NA |
| NA | ENSG00000105619 | TFPT | TCF3 (E2A) fusion partner (in childhood Leukemia) | 29844 | NA |
| NA | ENSG00000105618 | PRPF31 | pre-mRNA processing factor 31 | 26121 | This gene encodes a component of the spliceosome complex and is one of several retinitis pigmentosa-causing genes. When the gene product is added to the spliceosome complex, activation occurs. |
| NA | ENSG00000088038 | CNOT3 | CCR4-NOT transcription complex subunit 3 | 4849 | NA |
| NA | ENSG00000105617 | LENG1 | leukocyte receptor cluster (LRC) member 1 | 79165 | NA |
| NA | ENSG00000167608 | TMC4 | transmembrane channel like 4 | 147798 | NA |
| NA | ENSG00000125505 | MBOAT7 | membrane bound O-acyltransferase domain containing 7 | 79143 | This gene encodes a member of the membrane-bound O-acyltransferases family of integral membrane proteins that have acyltransferase activity. The encoded protein is a lysophosphatidylinositol acyltransferase that has specificity for arachidonoyl-CoA as an acyl donor. This protein is involved in the reacylation of phospholipids as part of the phospholipid remodeling pathway known as the Land cycle. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000170892 | TSEN34 | tRNA splicing endonuclease subunit 34 | 79042 | This gene encodes a catalytic subunit of the tRNA splicing endonuclease, which catalyzes the removal of introns from precursor tRNAs. The endonuclease complex is also associated with a pre-mRNA 3-prime end processing factor. A mutation in this gene results in the neurological disorder pontocerebellar hypoplasia type 2. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000170889 | RPS9 | ribosomal protein S9 | 6203 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S4P family of ribosomal proteins. It is located in the cytoplasm. Variable expression of this gene in colorectal cancers compared to adjacent normal tissues has been observed, although no correlation between the level of expression and the severity of the disease has been found. As is typical for genes encoding ribosomal proteins, multiple processed pseudogenes derived from this gene are dispersed through the genome. |
| NA | ENSG00000167614 | TTYH1 | tweety family member 1 | 57348 | This gene encodes a member of the tweety family of proteins. Members of this family function as chloride anion channels. The encoded protein functions as a calcium(2+)-independent, volume-sensitive large conductance chloride(-) channel. Three transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000167615 | LENG8 | leukocyte receptor cluster (LRC) member 8 | 114823 | NA |
| NA | ENSG00000022556 | NLRP2 | NLR family, pyrin domain containing 2 | 55655 | NALP proteins, such as NALP2, are characterized by an N-terminal pyrin (MIM 608107) domain (PYD) and are involved in the activation of caspase-1 (CASP1; MIM 147678) by Toll-like receptors (see TLR4; MIM 603030). They may also be involved in protein complexes that activate proinflammatory caspases (Tschopp et al., 2003 [PubMed 12563287]). |
| NA | ENSG00000160439 | RDH13 | retinol dehydrogenase 13 (all-trans/9-cis) | 112724 | This gene encodes a mitochondrial short-chain dehydrogenase/reductase, which catalyzes the reduction and oxidation of retinoids. The encoded enzyme may function in retinoic acid production and may also protect the mitochondria against oxidative stress. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000131037 | EPS8L1 | EPS8 like 1 | 54869 | This gene encodes a protein that is related to epidermal growth factor receptor pathway substrate 8 (EPS8), a substrate for the epidermal growth factor receptor. The function of this protein is unknown. At least two alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125503 | PPP1R12C | protein phosphatase 1 regulatory subunit 12C | 54776 | The gene encodes a subunit of myosin phosphatase. The encoded protein regulates the catalytic activity of protein phosphatase 1 delta and assembly of the actin cytoskeleton. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000105048 | TNNT1 | troponin T1, slow skeletal type | 7138 | This gene encodes a protein that is a subunit of troponin, which is a regulatory complex located on the thin filament of the sarcomere. This complex regulates striated muscle contraction in response to fluctuations in intracellular calcium concentration. This complex is composed of three subunits: troponin C, which binds calcium, troponin T, which binds tropomyosin, and troponin I, which is an inhibitory subunit. This protein is the slow skeletal troponin T subunit. Mutations in this gene cause nemaline myopathy type 5, also known as Amish nemaline myopathy, a neuromuscular disorder characterized by muscle weakness and rod-shaped, or nemaline, inclusions in skeletal muscle fibers which affects infants, resulting in death due to respiratory insufficiency, usually in the second year. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000129991 | TNNI3 | troponin I3, cardiac type | 7137 | Troponin I (TnI), along with troponin T (TnT) and troponin C (TnC), is one of 3 subunits that form the troponin complex of the thin filaments of striated muscle. TnI is the inhibitory subunit; blocking actin-myosin interactions and thereby mediating striated muscle relaxation. The TnI subfamily contains three genes: TnI-skeletal-fast-twitch, TnI-skeletal-slow-twitch, and TnI-cardiac. This gene encodes the TnI-cardiac protein and is exclusively expressed in cardiac muscle tissues. Mutations in this gene cause familial hypertrophic cardiomyopathy type 7 (CMH7) and familial restrictive cardiomyopathy (RCM). |
| NA | ENSG00000105063 | PPP6R1 | protein phosphatase 6 regulatory subunit 1 | 22870 | Protein phosphatase regulatory subunits, such as SAPS1, modulate the activity of protein phosphatase catalytic subunits by restricting substrate specificity, recruiting substrates, and determining the intracellular localization of the holoenzyme. SAPS1 is a regulatory subunit for the protein phosphatase-6 catalytic subunit (PPP6C; MIM 612725) (Stefansson and Brautigan, 2006 [PubMed 16769727]). |
| NA | ENSG00000133265 | HSPBP1 | HSPA (heat shock 70kDa) binding protein, cytoplasmic cochaperone 1 | 23640 | NA |
| NA | ENSG00000160469 | BRSK1 | BR serine/threonine kinase 1 | 84446 | NA |
| NA | ENSG00000133247 | KMT5C | lysine methyltransferase 5C | 84787 | SUV420H2 and the related enzyme SUV420H1 (MIM 610881) function as histone methyltransferases that specifically trimethylate nucleosomal histone H4 (see MIM 602822) on lysine-20 (K20) (Schotta et al., 2004 [PubMed 15145825]). |
| NA | ENSG00000108107 | RPL28 | ribosomal protein L28 | 6158 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L28E family of ribosomal proteins. It is located in the cytoplasm. Variable expression of this gene in colorectal cancers compared to adjacent normal tissues has been observed, although no correlation between the level of expression and the severity of the disease has been found. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000108106 | UBE2S | ubiquitin conjugating enzyme E2 S | 27338 | This gene encodes a member of the ubiquitin-conjugating enzyme family. The encoded protein is able to form a thiol ester linkage with ubiquitin in a ubiquitin activating enzyme-dependent manner, a characteristic property of ubiquitin carrier proteins. |
| NA | ENSG00000063241 | ISOC2 | isochorismatase domain containing 2 | 79763 | NA |
| NA | ENSG00000197483 | ZNF628 | zinc finger protein 628 | 89887 | Zinc finger proteins (ZNFs), which bind nucleic acids, perform many key functions, the most important of which is regulating transcription. See ZNF91 (MIM 603971) for general information on ZNFs. |
| NA | ENSG00000090971 | NAT14 | N-acetyltransferase 14 (putative) | 57106 | NA |
| NA | ENSG00000218891 | ZNF579 | zinc finger protein 579 | 163033 | NA |
| NA | ENSG00000179943 | FIZ1 | FLT3 interacting zinc finger 1 | 84922 | This gene encodes zinc finger protein, which interacts with a receptor tyrosine kinase involved in the regulation of hematopoietic and lymphoid cells. This gene product also interacts with a transcription factor that regulates the expression of rod-specific genes in retina. |
| NA | ENSG00000261221 | ZNF865 | zinc finger protein 865 | 100507290 | NA |
| NA | ENSG00000179922 | ZNF784 | zinc finger protein 784 | 147808 | NA |
| NA | ENSG00000213015 | ZNF580 | zinc finger protein 580 | 51157 | NA |
| NA | ENSG00000171425 | ZNF581 | zinc finger protein 581 | 51545 | NA |
| NA | ENSG00000173581 | CCDC106 | coiled-coil domain containing 106 | 29903 | NA |
| NA | ENSG00000063244 | U2AF2 | U2 small nuclear RNA auxiliary factor 2 | 11338 | U2 auxiliary factor (U2AF), comprised of a large and a small subunit, is a non-snRNP protein required for the binding of U2 snRNP to the pre-mRNA branch site. This gene encodes the U2AF large subunit which contains a sequence-specific RNA-binding region with 3 RNA recognition motifs and an Arg/Ser-rich domain necessary for splicing. The large subunit binds to the polypyrimidine tract of introns early during spliceosome assembly. Multiple transcript variants have been detected for this gene, but the full-length natures of only two have been determined to date. |
| NA | ENSG00000063245 | EPN1 | epsin 1 | 29924 | This gene encodes a member of the epsin protein family. The encoded protein binds clathrin and is involved in the endocytosis of clathrin-coated vesicles. Loss of function of this gene is associated with reduced tumor growth and progression in certain cancer types. |
| NA | ENSG00000142409 | ZNF787 | zinc finger protein 787 | 126208 | NA |
| NA | ENSG00000167685 | ZNF444 | zinc finger protein 444 | 55311 | This gene encodes a zinc finger protein which activates transcription of a scavenger receptor gene involved in the degradation of acetylated low density lipoprotein (Ac-LDL) (PMID: 11978792). This gene is located in a cluster of zinc finger genes on chromosome 19 at q13.4. A pseudogene of this gene is located on chromosome 15. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000131848 | ZSCAN5A | zinc finger and SCAN domain containing 5A | 79149 | NA |
| NA | ENSG00000197016 | ZNF470 | zinc finger protein 470 | 388566 | NA |
| NA | ENSG00000197951 | ZNF71 | zinc finger protein 71 | 58491 | NA |
| NA | ENSG00000105146 | AURKC | aurora kinase C | 6795 | This gene encodes a member of the Aurora subfamily of serine/threonine protein kinases. The encoded protein is a chromosomal passenger protein that forms complexes with Aurora-B and inner centromere proteins and may play a role in organizing microtubules in relation to centrosome/spindle function during mitosis. This gene is overexpressed in several cancer cell lines, suggesting an involvement in oncogenic signal transduction. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197714 | ZNF460 | zinc finger protein 460 | 10794 | Zinc finger proteins, such as ZNF272, interact with nucleic acids and have diverse functions. The zinc finger domain is a conserved amino acid sequence motif containing 2 specifically positioned cysteines and 2 histidines that are involved in coordinating zinc. Kruppel-related proteins form 1 family of zinc finger proteins. See ZFP93 (MIM 604749) for additional information on zinc finger proteins. |
| NA | ENSG00000178229 | ZNF543 | zinc finger protein 543 | 125919 | NA |
| NA | ENSG00000131845 | ZNF304 | zinc finger protein 304 | 57343 | NA |
| NA | ENSG00000256060 | TRAPPC2P1 | Trafficking protein particle complex subunit 2B | ENSG00000256060 | NA |
| NA | ENSG00000188785 | ZNF548 | zinc finger protein 548 | 147694 | NA |
| NA | ENSG00000186272 | ZNF17 | zinc finger protein 17 | 7565 | NA |
| NA | ENSG00000197128 | ZNF772 | zinc finger protein 772 | 400720 | NA |
| NA | ENSG00000105136 | ZNF419 | zinc finger protein 419 | 79744 | NA |
| NA | ENSG00000152439 | ZNF773 | zinc finger protein 773 | 374928 | NA |
| NA | ENSG00000121406 | ZNF549 | zinc finger protein 549 | 256051 | NA |
| NA | ENSG00000251369 | ZNF550 | zinc finger protein 550 | 162972 | NA |
| NA | ENSG00000083817 | ZNF416 | zinc finger protein 416 | 55659 | NA |
| NA | ENSG00000171649 | ZIK1 | zinc finger protein interacting with K protein 1 | 284307 | NA |
| NA | ENSG00000183647 | ZNF530 | zinc finger protein 530 | 348327 | NA |
| NA | ENSG00000213762 | ZNF134 | zinc finger protein 134 | 7693 | NA |
| NA | ENSG00000121417 | ZNF211 | zinc finger protein 211 | 10520 | This gene encodes a protein containing a Kruppel-associated box domain and multiple zinc finger domains. This protein may play a role in developmental processes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204519 | ZNF551 | zinc finger protein 551 | 90233 | NA |
| NA | ENSG00000179909 | ZNF154 | zinc finger protein 154 | 7710 | This gene encodes a protein that belongs to the zinc finger Kruppel family of transcriptional regulators, whose members are thought to function in normal and abnormal cell growth and differentiation. Hypermethylation of this gene is associated with the recurrence of non muscle invasive bladder cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000083814 | ZNF671 | zinc finger protein 671 | 79891 | NA |
| NA | ENSG00000152443 | ZNF776 | zinc finger protein 776 | 284309 | NA |
| NA | ENSG00000083828 | ZNF586 | zinc finger protein 586 | 54807 | NA |
| NA | ENSG00000178935 | ZNF552 | zinc finger protein 552 | 79818 | NA |
| NA | ENSG00000198466 | ZNF587 | zinc finger protein 587 | 84914 | NA |
| NA | ENSG00000173480 | ZNF417 | zinc finger protein 417 | 147687 | NA |
| NA | ENSG00000196724 | ZNF418 | zinc finger protein 418 | 147686 | NA |
| NA | ENSG00000152454 | ZNF256 | zinc finger protein 256 | 10172 | NA |
| NA | ENSG00000166704 | ZNF606 | zinc finger protein 606 | 80095 | NA |
| NA | ENSG00000176593 | LOC100128398 | uncharacterized LOC100128398 | 100128398 | NA |
| NA | ENSG00000176293 | ZNF135 | zinc finger protein 135 | 7694 | NA |
| NA | ENSG00000181894 | ZNF329 | zinc finger protein 329 | 79673 | NA |
| NA | ENSG00000198131 | ZNF544 | zinc finger protein 544 | 27300 | NA |
| NA | ENSG00000267216 | AC010642.1 | NA | ENSG00000267216 | NA |
| NA | ENSG00000182318 | ZSCAN22 | zinc finger and SCAN domain containing 22 | 342945 | NA |
| NA | ENSG00000121410 | A1BG | alpha-1-B glycoprotein | 1 | The protein encoded by this gene is a plasma glycoprotein of unknown function. The protein shows sequence similarity to the variable regions of some immunoglobulin supergene family member proteins. |
| NA | ENSG00000083845 | RPS5 | ribosomal protein S5 | 6193 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S7P family of ribosomal proteins. It is located in the cytoplasm. Variable expression of this gene in colorectal cancers compared to adjacent normal tissues has been observed, although no correlation between the level of expression and the severity of the disease has been found. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000171574 | ZNF584 | zinc finger protein 584 | 201514 | NA |
| NA | ENSG00000083812 | ZNF324 | zinc finger protein 324 | 25799 | NA |
| NA | ENSG00000083838 | ZNF446 | zinc finger protein 446 | 55663 | NA |
| NA | ENSG00000083807 | SLC27A5 | solute carrier family 27 member 5 | 10998 | The protein encoded by this gene is an isozyme of very long-chain acyl-CoA synthetase (VLCS). It is capable of activating very long-chain fatty-acids containing 24- and 26-carbons. It is expressed in liver and associated with endoplasmic reticulum but not with peroxisomes. Its primary role is in fatty acid elongation or complex lipid synthesis rather than in degradation. This gene has a mouse ortholog. |
| NA | ENSG00000119574 | ZBTB45 | zinc finger and BTB domain containing 45 | 84878 | NA |
| NA | ENSG00000130726 | TRIM28 | tripartite motif containing 28 | 10155 | The protein encoded by this gene mediates transcriptional control by interaction with the Kruppel-associated box repression domain found in many transcription factors. The protein localizes to the nucleus and is thought to associate with specific chromatin regions. The protein is a member of the tripartite motif family. This tripartite motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. |
| NA | ENSG00000130725 | UBE2M | ubiquitin conjugating enzyme E2 M | 9040 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. The encoded protein is linked with a ubiquitin-like protein, NEDD8, which can be conjugated to cellular proteins, such as Cdc53/culin. |
| NA | ENSG00000099326 | MZF1 | myeloid zinc finger 1 | 7593 | NA |
| NA | ENSG00000184731 | FAM110C | family with sequence similarity 110 member C | 642273 | NA |
| NA | ENSG00000035115 | SH3YL1 | SH3 and SYLF domain containing 1 | 26751 | NA |
| NA | ENSG00000143727 | ACP1 | acid phosphatase 1, soluble | 52 | The product of this gene belongs to the phosphotyrosine protein phosphatase family of proteins. It functions as an acid phosphatase and a protein tyrosine phosphatase by hydrolyzing protein tyrosine phosphate to protein tyrosine and orthophosphate. This enzyme also hydrolyzes orthophosphoric monoesters to alcohol and orthophosphate. This gene is genetically polymorphic, and three common alleles segregating at the corresponding locus give rise to six phenotypes. Each allele appears to encode at least two electrophoretically different isozymes, Bf and Bs, which are produced in allele-specific ratios. Multiple alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000189292 | FAM150B | family with sequence similarity 150 member B | 285016 | NA |
| NA | ENSG00000151353 | TMEM18 | transmembrane protein 18 | 129787 | NA |
| NA | ENSG00000172554 | SNTG2 | syntrophin gamma 2 | 54221 | This gene encodes a protein belonging to the syntrophin family. Syntrophins are cytoplasmic peripheral membrane proteins that bind to components of mechanosenstive sodium channels and the extreme carboxy-terminal domain of dystrophin and dystrophin-related proteins. The PDZ domain of this protein product interacts with a protein component of a mechanosensitive sodium channel that affects channel gating. Absence or reduction of this protein product has been associated with Duchenne muscular dystrophy. There is evidence of alternative splicing yet the full-length nature of these variants has not been described. |
| NA | ENSG00000130508 | PXDN | peroxidasin | 7837 | This gene encodes a heme-containing peroxidase that is secreted into the extracellular matrix. It is involved in extracellular matrix formation, and may function in the physiological and pathological fibrogenic response in fibrotic kidney. Mutations in this gene cause corneal opacification and other ocular anomalies, and also microphthalmia and anterior segment dysgenesis. |
| NA | ENSG00000032389 | TSSC1 | tumor suppressing subtransferable candidate 1 | 7260 | This gene has been reported in PMID 9403053 as one of several tumor-suppressing subtransferable fragments located in the imprinted gene domain of 11p15.5, an important tumor-suppressor gene region. Alterations in this region have been associated with the Beckwith-Wiedemann syndrome, Wilms tumor, rhabdomyosarcoma, adrenocortical carcinoma, and lung, ovarian, and breast cancer. Alignment of this gene to genomic sequence data suggests that this gene resides on chromosome 2 rather than chromosome 11. |
| NA | ENSG00000171853 | TRAPPC12 | trafficking protein particle complex 12 | 51112 | NA |
| NA | ENSG00000171865 | RNASEH1 | ribonuclease H1 | 246243 | This gene encodes an endonuclease that specifically degrades the RNA of RNA-DNA hybrids and is necessary for DNA replication and repair. This enzyme is present in both mitochondria and nuclei, which are resulted from translation of a single mRNA with two in-frame initiation start codons. The use of the first start codon produces the mitochondrial isoform and the use of the second start codon produces the nuclear isoform. The production of the mitochondrial isoform is modulated by an upstream open reading frame (uORF) which overlaps the first initiation start codon in human. An alternately spliced transcript variant has been found which encodes a shorter isoform. This gene has three pseudogenes; two of them are at different locations of chromosome 17 and one of them is on chromosome 1q32.2. |
| NA | ENSG00000171863 | RPS7 | ribosomal protein S7 | 6201 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S7E family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000151692 | RNF144A | ring finger protein 144A | 9781 | The protein encoded by this protein contains a RING finger, a motif known to be involved in protein-DNA and protein-protein interactions. The mouse counterpart of this protein has been shown to interact with Ube2l3/UbcM4, which is an ubiquitin-conjugating enzyme involved in embryonic development. |
| NA | ENSG00000134313 | KIDINS220 | kinase D-interacting substrate 220kDa | 57498 | NA |
| NA | ENSG00000143797 | MBOAT2 | membrane bound O-acyltransferase domain containing 2 | 129642 | NA |
| NA | ENSG00000151693 | ASAP2 | ArfGAP with SH3 domain, ankyrin repeat and PH domain 2 | 8853 | This gene encodes a multidomain protein containing an N-terminal alpha-helical region with a coiled-coil motif, followed by a pleckstrin homology (PH) domain, an Arf-GAP domain, an ankyrin homology region, a proline-rich region, and a C-terminal Src homology 3 (SH3) domain. The protein localizes in the Golgi apparatus and at the plasma membrane, where it colocalizes with protein tyrosine kinase 2-beta (PYK2). The encoded protein forms a stable complex with PYK2 in vivo. This interaction appears to be mediated by binding of its SH3 domain to the C-terminal proline-rich domain of PYK2. The encoded protein is tyrosine phosphorylated by activated PYK2. It has catalytic activity for class I and II ArfGAPs in vitro, and can bind the class III Arf ARF6 without immediate GAP activity. The encoded protein is believed to function as an ARF GAP that controls ARF-mediated vesicle budding when recruited to Golgi membranes. In addition, it functions as a substrate and downstream target for PYK2 and SRC, a pathway that may be involved in the regulation of vesicular transport. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000119185 | ITGB1BP1 | integrin subunit beta 1 binding protein 1 | 9270 | The cytoplasmic domains of integrins are essential for cell adhesion. The protein encoded by this gene binds to the beta1 integrin cytoplasmic domain. The interaction between this protein and beta1 integrin is highly specific. Two isoforms of this protein are derived from alternatively spliced transcripts. The shorter form of this protein does not interact with the beta1 integrin cytoplasmic domain. The longer form is a phosphoprotein and the extent of its phosphorylation is regulated by the cell-matrix interaction, suggesting an important role of this protein during integrin-dependent cell adhesion. Several transcript variants, some protein-coding and some non-protein coding, have been found for this gene. |
| NA | ENSG00000119203 | CPSF3 | cleavage and polyadenylation specific factor 3 | 51692 | This gene encodes a member of the metallo-beta-lactamase family. The encoded protein is a 73kDa subunit of the cleavage and polyadenylation specificity factor and functions as an endonuclease that recognizes the pre-mRNA 3’-cleavage site AAUAAA prior to polyadenylation. It also cleaves after the pre-mRNA sequence ACCCA during histone 3’-end pre-mRNA processing. |
| NA | ENSG00000134330 | IAH1 | isoamyl acetate-hydrolyzing esterase 1 homolog | 285148 | NA |
| NA | ENSG00000151694 | ADAM17 | ADAM metallopeptidase domain 17 | 6868 | This gene encodes a member of the ADAM (a disintegrin and metalloprotease domain) family. Members of this family are membrane-anchored proteins structurally related to snake venom disintegrins, and have been implicated in a variety of biologic processes involving cell-cell and cell-matrix interactions, including fertilization, muscle development, and neurogenesis. The encoded preproprotein is proteolytically processed to generate the mature protease. The encoded protease functions in the ectodomain shedding of tumor necrosis factor-alpha, in which soluble tumor necrosis factor-alpha is released from the membrane-bound precursor. This protease also functions in the processing of numerous other substrates, including cell adhesion proteins, cytokine and growth factor receptors and epidermal growth factor (EGF) receptor ligands. The encoded protein also plays a prominent role in the activation of the Notch signaling pathway. Elevated expression of this gene has been observed in specific cell types derived from psoriasis, rheumatoid arthritis, multiple sclerosis and Crohn’s disease patients, suggesting that the encoded protein may play a role in autoimmune disease. |
| NA | ENSG00000134308 | YWHAQ | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein theta | 10971 | This gene product belongs to the 14-3-3 family of proteins which mediate signal transduction by binding to phosphoserine-containing proteins. This highly conserved protein family is found in both plants and mammals, and this protein is 99% identical to the mouse and rat orthologs. This gene is upregulated in patients with amyotrophic lateral sclerosis. It contains in its 5’ UTR a 6 bp tandem repeat sequence which is polymorphic, however, there is no correlation between the repeat number and the disease. |
| NA | ENSG00000134317 | GRHL1 | grainyhead like transcription factor 1 | 29841 | This gene encodes a member of the grainyhead family of transcription factors. The encoded protein can exist as a homodimer or can form heterodimers with sister-of-mammalian grainyhead or brother-of-mammalian grainyhead. This protein functions as a transcription factor during development. |
| NA | ENSG00000172059 | KLF11 | Kruppel-like factor 11 | 8462 | The protein encoded by this gene is a zinc finger transcription factor that binds to SP1-like sequences in epsilon- and gamma-globin gene promoters. This binding inhibits cell growth and causes apoptosis. Defects in this gene are a cause of maturity-onset diabetes of the young type 7 (MODY7). Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000171848 | RRM2 | ribonucleotide reductase regulatory subunit M2 | 6241 | This gene encodes one of two non-identical subunits for ribonucleotide reductase. This reductase catalyzes the formation of deoxyribonucleotides from ribonucleotides. Synthesis of the encoded protein (M2) is regulated in a cell-cycle dependent fashion. Transcription from this gene can initiate from alternative promoters, which results in two isoforms that differ in the lengths of their N-termini. Related pseudogenes have been identified on chromosomes 1 and X. |
| NA | ENSG00000115756 | HPCAL1 | hippocalcin like 1 | 3241 | The protein encoded by this gene is a member of neuron-specific calcium-binding proteins family found in the retina and brain. It is highly similar to human hippocalcin protein and nearly identical to the rat and mouse hippocalcin like-1 proteins. It may be involved in the calcium-dependent regulation of rhodopsin phosphorylation and may be of relevance for neuronal signalling in the central nervous system. Several alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000115758 | ODC1 | ornithine decarboxylase 1 | 4953 | This gene encodes the rate-limiting enzyme of the polyamine biosynthesis pathway which catalyzes ornithine to putrescine. The activity level for the enzyme varies in response to growth-promoting stimuli and exhibits a high turnover rate in comparison to other mammalian proteins. Originally localized to both chromosomes 2 and 7, the gene encoding this enzyme has been determined to be located on 2p25, with a pseudogene located on 7q31-qter. Multiple alternatively spliced transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000115761 | NOL10 | nucleolar protein 10 | 79954 | NA |
| NA | ENSG00000143882 | ATP6V1C2 | ATPase H+ transporting V1 subunit C2 | 245973 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A,three B, and two G subunits, as well as a C, D, E, F, and H subunit. The V1 domain contains the ATP catalytic site. This gene encodes alternate transcriptional splice variants, encoding different V1 domain C subunit isoforms. |
| NA | ENSG00000143870 | PDIA6 | protein disulfide isomerase family A member 6 | 10130 | Protein disulfide isomerases (EC 5.3.4.1), such as PDIA6, are endoplasmic reticulum (ER) resident proteins that catalyze formation, reduction, and isomerization of disulfide bonds in proteins and are thought to play a role in folding of disulfide-bonded proteins (Hayano and Kikuchi, 1995 [PubMed 7590364]). |
| NA | ENSG00000162976 | PQLC3 | PQ loop repeat containing 3 | 130814 | NA |
| NA | ENSG00000134318 | ROCK2 | Rho associated coiled-coil containing protein kinase 2 | 9475 | The protein encoded by this gene is a serine/threonine kinase that regulates cytokinesis, smooth muscle contraction, the formation of actin stress fibers and focal adhesions, and the activation of the c-fos serum response element. This protein, which is an isozyme of ROCK1 is a target for the small GTPase Rho. |
| NA | ENSG00000169016 | E2F6 | E2F transcription factor 6 | 1876 | This gene encodes a member of a family of transcription factors that play a crucial role in the control of the cell cycle. The protein encoded by this gene lacks the transactivation and tumor suppressor protein association domains found in other family members, and contains a modular suppression domain that functions in the inhibition of transcription. It interacts in a complex with chromatin modifying factors. There are pseudogenes for this gene on chromosomes 22 and X. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196208 | GREB1 | growth regulation by estrogen in breast cancer 1 | 9687 | This gene is an estrogen-responsive gene that is an early response gene in the estrogen receptor-regulated pathway. It is thought to play an important role in hormone-responsive tissues and cancer. Three alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000134324 | LPIN1 | lipin 1 | 23175 | This gene encodes a magnesium-ion-dependent phosphatidic acid phosphohydrolase enzyme that catalyzes the penultimate step in triglyceride synthesis including the dephosphorylation of phosphatidic acid to yield diacylglycerol. Expression of this gene is required for adipocyte differentiation and it also functions as a nuclear transcriptional coactivator with some peroxisome proliferator-activated receptors to modulate expression of other genes involved in lipid metabolism. Mutations in this gene are associated with metabolic syndrome, type 2 diabetes, and autosomal recessive acute recurrent myoglobinuria (ARARM). This gene is also a candidate for several human lipodystrophy syndromes. Alternative splicing results in multiple transcript variants encoding distinct isoforms. Additional splice variants have been described but their full-length structures have not been determined. |
| NA | ENSG00000162981 | FAM84A | family with sequence similarity 84 member A | 151354 | NA |
| NA | ENSG00000079785 | DDX1 | DEAD/H-box helicase 1 | 1653 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein of unknown function. It shows high transcription levels in 2 retinoblastoma cell lines and in tissues of neuroectodermal origin. |
| NA | ENSG00000134323 | MYCN | v-myc avian myelocytomatosis viral oncogene neuroblastoma derived homolog | 4613 | This gene is a member of the MYC family and encodes a protein with a basic helix-loop-helix (bHLH) domain. This protein is located in the nucleus and must dimerize with another bHLH protein in order to bind DNA. Amplification of this gene is associated with a variety of tumors, most notably neuroblastomas. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197872 | FAM49A | family with sequence similarity 49 member A | 81553 | NA |
| NA | ENSG00000163029 | SMC6 | structural maintenance of chromosomes 6 | 79677 | NA |
| NA | ENSG00000178295 | GEN1 | GEN1, Holliday junction 5’ flap endonuclease | 348654 | NA |
| NA | ENSG00000170745 | KCNS3 | potassium voltage-gated channel modifier subfamily S member 3 | 3790 | Voltage-gated potassium channels form the largest and most diversified class of ion channels and are present in both excitable and nonexcitable cells. Their main functions are associated with the regulation of the resting membrane potential and the control of the shape and frequency of action potentials. The alpha subunits are of 2 types: those that are functional by themselves and those that are electrically silent but capable of modulating the activity of specific functional alpha subunits. The protein encoded by this gene is not functional by itself but can form heteromultimers with member 1 and with member 2 (and possibly other members) of the Shab-related subfamily of potassium voltage-gated channel proteins. This gene belongs to the S subfamily of the potassium channel family. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000240857 | RDH14 | retinol dehydrogenase 14 (all-trans/9-cis/11-cis) | 57665 | NA |
| NA | ENSG00000183891 | TTC32 | tetratricopeptide repeat domain 32 | 130502 | NA |
| NA | ENSG00000118965 | WDR35 | WD repeat domain 35 | 57539 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. Two patients with Sensenbrenner syndrome / cranioectodermal dysplasia (CED) were identified with mutations in this gene, consistent with a possible ciliary function. |
| NA | ENSG00000132031 | MATN3 | matrilin 3 | 4148 | This gene encodes a member of von Willebrand factor A domain containing protein family. This family of proteins is thought to be involved in the formation of filamentous networks in the extracellular matrices of various tissues. This protein contains two von Willebrand factor A domains; it is present in the cartilage extracellular matrix and has a role in the development and homeostasis of cartilage and bone. Mutations in this gene result in multiple epiphyseal dysplasia. |
| NA | ENSG00000068697 | LAPTM4A | lysosomal protein transmembrane 4 alpha | 9741 | This gene encodes a protein that has four predicted transmembrane domains. The function of this gene has not yet been determined; however, studies in the mouse homolog suggest a role in the transport of small molecules across endosomal and lysosomal membranes. |
| NA | ENSG00000115884 | SDC1 | syndecan 1 | 6382 | The protein encoded by this gene is a transmembrane (type I) heparan sulfate proteoglycan and is a member of the syndecan proteoglycan family. The syndecans mediate cell binding, cell signaling, and cytoskeletal organization and syndecan receptors are required for internalization of the HIV-1 tat protein. The syndecan-1 protein functions as an integral membrane protein and participates in cell proliferation, cell migration and cell-matrix interactions via its receptor for extracellular matrix proteins. Altered syndecan-1 expression has been detected in several different tumor types. While several transcript variants may exist for this gene, the full-length natures of only two have been described to date. These two represent the major variants of this gene and encode the same protein. |
| NA | ENSG00000055917 | PUM2 | pumilio RNA binding family member 2 | 23369 | This gene encodes a protein that belongs to a family of RNA-binding proteins. The encoded protein functions as a translational repressor during embryonic development and cell differentiation. This protein is also thought to be a positive regulator of cell proliferation in adipose-derived stem cells. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000143878 | RHOB | ras homolog family member B | 388 | NA |
| NA | ENSG00000118960 | HS1BP3 | HCLS1 binding protein 3 | 64342 | The protein encoded by this gene shares similarity with mouse Hs1bp3, an Hcls1/Hs1-interacting protein that may be involved in lymphocyte activation. |
| NA | ENSG00000119771 | KLHL29 | kelch like family member 29 | 114818 | NA |
| NA | ENSG00000119778 | ATAD2B | ATPase family, AAA domain containing 2B | 54454 | The protein encoded by this gene belongs to the AAA ATPase family. This family member includes an N-terminal bromodomain. It has been found to be localized to the nucleus, partly to replication sites, consistent with a chromatin-related function. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000173960 | UBXN2A | UBX domain protein 2A | 165324 | NA |
| NA | ENSG00000205639 | MFSD2B | major facilitator superfamily domain containing 2B | 388931 | NA |
| NA | ENSG00000163026 | C2orf44 | chromosome 2 open reading frame 44 | 80304 | NA |
| NA | ENSG00000119782 | FKBP1B | FK506 binding protein 1B | 2281 | The protein encoded by this gene is a member of the immunophilin protein family, which play a role in immunoregulation and basic cellular processes involving protein folding and trafficking. This encoded protein is a cis-trans prolyl isomerase that binds the immunosuppressants FK506 and rapamycin. It is highly similar to the FK506-binding protein 1A. Its physiological role is thought to be in excitation-contraction coupling in cardiac muscle. There are two alternatively spliced transcript variants of this gene encoding different isoforms. |
| NA | ENSG00000115128 | SF3B6 | splicing factor 3b subunit 6 | 51639 | This gene encodes a 14 kDa protein subunit of the splicing factor 3b complex. Splicing factor 3b associates with both the U2 and U11/U12 small nuclear ribonucleoprotein complexes (U2 snRNP) of spliceosomes. This 14 kDa protein interacts directly with subunit 1 of the splicing factor 3b complex. This 14 kDa protein also interacts directly with the adenosine that carries out the first transesterification step of splicing at the pre-mRNA branch site. |
| NA | ENSG00000219626 | FAM228B | family with sequence similarity 228 member B | 375190 | NA |
| NA | ENSG00000115129 | TP53I3 | tumor protein p53 inducible protein 3 | 9540 | The protein encoded by this gene is similar to oxidoreductases, which are enzymes involved in cellular responses to oxidative stresses and irradiation. This gene is induced by the tumor suppressor p53 and is thought to be involved in p53-mediated cell death. It contains a p53 consensus binding site in its promoter region and a downstream pentanucleotide microsatellite sequence. P53 has been shown to transcriptionally activate this gene by interacting with the downstream pentanucleotide microsatellite sequence. The microsatellite is polymorphic, with a varying number of pentanucleotide repeats directly correlated with the extent of transcriptional activation by p53. It has been suggested that the microsatellite polymorphism may be associated with differential susceptibility to cancer. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198399 | ITSN2 | intersectin 2 | 50618 | This gene encodes a cytoplasmic protein which contains SH3 domains. This protein is a member of a family of proteins involved in clathrin-mediated endocytosis. Intersectin 2 is thought to regulate the formation of clathrin-coated vesicles and also may function in the induction of T cell antigen receptor (TCR) endocytosis. Alternatively spliced transcript variants have been found for this gene that encode three distinct isoforms. Additional variants have been found but their full length nature has not been determined. |
| NA | ENSG00000084676 | NCOA1 | nuclear receptor coactivator 1 | 8648 | The protein encoded by this gene acts as a transcriptional coactivator for steroid and nuclear hormone receptors. It is a member of the p160/steroid receptor coactivator (SRC) family and like other family members has histone acetyltransferase activity and contains a nuclear localization signal, as well as bHLH and PAS domains. The product of this gene binds nuclear receptors directly and stimulates the transcriptional activities in a hormone-dependent fashion. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000184924 | PTRHD1 | peptidyl-tRNA hydrolase domain containing 1 | 391356 | NA |
| NA | ENSG00000138031 | ADCY3 | adenylate cyclase 3 | 109 | This gene encodes adenylyl cyclase 3 which is a membrane-associated enzyme and catalyzes the formation of the secondary messenger cyclic adenosine monophosphate (cAMP). This protein appears to be widely expressed in various human tissues and may be involved in a number of physiological and pathophysiological metabolic processes. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000115137 | DNAJC27 | DnaJ heat shock protein family (Hsp40) member C27 | 51277 | NA |
| NA | ENSG00000119772 | DNMT3A | DNA (cytosine-5-)-methyltransferase 3 alpha | 1788 | CpG methylation is an epigenetic modification that is important for embryonic development, imprinting, and X-chromosome inactivation. Studies in mice have demonstrated that DNA methylation is required for mammalian development. This gene encodes a DNA methyltransferase that is thought to function in de novo methylation, rather than maintenance methylation. The protein localizes to the cytoplasm and nucleus and its expression is developmentally regulated. |
| NA | ENSG00000138101 | DTNB | dystrobrevin beta | 1838 | This gene encodes dystrobrevin beta, a component of the dystrophin-associated protein complex (DPC). The DPC consists of dystrophin and several integral and peripheral membrane proteins, including dystroglycans, sarcoglycans, syntrophins and dystrobrevin alpha and beta. The DPC localizes to the sarcolemma and its disruption is associated with various forms of muscular dystrophy. Dystrobrevin beta is thought to interact with syntrophin and the DP71 short form of dystrophin. |
| NA | ENSG00000143970 | ASXL2 | additional sex combs like 2, transcriptional regulator | 55252 | ASXL2 is a human homolog of the Drosophila asx gene. Drosophila asx is an enhancer of trithorax (see MIM 159555) and polycomb (see MIM 610231) (ETP) gene that encodes a chromatin protein with dual functions in transcriptional activation and silencing (Katoh and Katoh, 2003 [PubMed 12888926]). |
| NA | ENSG00000084731 | KIF3C | kinesin family member 3C | 3797 | NA |
| NA | ENSG00000268412 | TRMT112P6 | tRNA methyltransferase 11-2 homolog (S. cerevisiae) pseudogene 6 | ENSG00000268412 | NA |
| NA | ENSG00000084733 | RAB10 | RAB10, member RAS oncogene family | 10890 | RAB10 belongs to the RAS (see HRAS; MIM 190020) superfamily of small GTPases. RAB proteins localize to exocytic and endocytic compartments and regulate intracellular vesicle trafficking (Bao et al., 1998 [PubMed 9918381]). |
| NA | ENSG00000157833 | GAREM2 | GRB2 associated regulator of MAPK1 subtype 2 | 150946 | NA |
| NA | ENSG00000138029 | HADHB | hydroxyacyl-CoA dehydrogenase/3-ketoacyl-CoA thiolase/enoyl-CoA hydratase (trifunctional protein), beta subunit | 3032 | This gene encodes the beta subunit of the mitochondrial trifunctional protein, which catalyzes the last three steps of mitochondrial beta-oxidation of long chain fatty acids. The mitochondrial membrane-bound heterocomplex is composed of four alpha and four beta subunits, with the beta subunit catalyzing the 3-ketoacyl-CoA thiolase activity. The encoded protein can also bind RNA and decreases the stability of some mRNAs. The genes of the alpha and beta subunits of the mitochondrial trifunctional protein are located adjacent to each other in the human genome in a head-to-head orientation. Mutations in this gene result in trifunctional protein deficiency. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000173567 | ADGRF3 | adhesion G protein-coupled receptor F3 | 165082 | NA |
| NA | ENSG00000138018 | EPT1 | ethanolaminephosphotransferase 1 | 85465 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. |
| NA | ENSG00000213699 | SLC35F6 | solute carrier family 35 member F6 | 54978 | NA |
| NA | ENSG00000115163 | CENPA | centromere protein A | 1058 | Centromeres are the differentiated chromosomal domains that specify the mitotic behavior of chromosomes. This gene encodes a centromere protein which contains a histone H3 related histone fold domain that is required for targeting to the centromere. Centromere protein A is proposed to be a component of a modified nucleosome or nucleosome-like structure in which it replaces 1 or both copies of conventional histone H3 in the (H3-H4)2 tetrameric core of the nucleosome particle. The protein is a replication-independent histone that is a member of the histone H3 family. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000157851 | DPYSL5 | dihydropyrimidinase like 5 | 56896 | This gene encodes a member of the CRMP (collapsing response mediator protein) family thought to be involved in neural development. Antibodies to the encoded protein were found in some patients with neurologic symptoms who had paraneoplastic syndrome. A pseudogene of this gene is found on chromosome 11. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000084764 | MAPRE3 | microtubule associated protein RP/EB family member 3 | 22924 | The protein encoded by this gene is a member of the RP/EB family of genes. The protein localizes to the cytoplasmic microtubule network and binds APCL, a homolog of the adenomatous polyposis coli tumor suppressor gene. |
| NA | ENSG00000119777 | TMEM214 | transmembrane protein 214 | 54867 | NA |
| NA | ENSG00000084693 | AGBL5 | ATP/GTP binding protein-like 5 | 60509 | NA |
| NA | ENSG00000228474 | OST4 | oligosaccharyltransferase complex subunit 4, non-catalytic | 100128731 | NA |
| NA | ENSG00000138030 | KHK | ketohexokinase | 3795 | This gene encodes ketohexokinase that catalyzes conversion of fructose to fructose-1-phosphate. The product of this gene is the first enzyme with a specialized pathway that catabolizes dietary fructose. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000138073 | PREB | prolactin regulatory element binding | 10113 | This gene encodes a protein that specifically binds to a Pit1-binding element of the prolactin (PRL) promoter. This protein may act as a transcriptional regulator and is thought to be involved in some of the developmental abnormalities observed in patients with partial trisomy 2p. This gene overlaps the abhydrolase domain containing 1 (ABHD1) gene on the opposite strand. |
| NA | ENSG00000138074 | SLC5A6 | solute carrier family 5 member 6 | 8884 | NA |
| NA | ENSG00000084774 | CAD | carbamoyl-phosphate synthetase 2, aspartate transcarbamylase, and dihydroorotase | 790 | The de novo synthesis of pyrimidine nucleotides is required for mammalian cells to proliferate. This gene encodes a trifunctional protein which is associated with the enzymatic activities of the first 3 enzymes in the 6-step pathway of pyrimidine biosynthesis: carbamoylphosphate synthetase (CPS II), aspartate transcarbamoylase, and dihydroorotase. This protein is regulated by the mitogen-activated protein kinase (MAPK) cascade, which indicates a direct link between activation of the MAPK cascade and de novo biosynthesis of pyrimidine nucleotides. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000115194 | SLC30A3 | solute carrier family 30 member 3 | 7781 | NA |
| NA | ENSG00000138100 | TRIM54 | tripartite motif containing 54 | 57159 | The protein encoded by this gene contains a RING finger motif and is highly similar to the ring finger proteins RNF28/MURF1 and RNF29/MURF2. In vitro studies demonstrated that this protein, RNF28, and RNF29 form heterodimers, which may be important for the regulation of titin kinase and microtubule-dependent signal pathways in striated muscles. Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000115211 | EIF2B4 | eukaryotic translation initiation factor 2B subunit delta | 8890 | Eukaryotic initiation factor 2B (EIF2B), which is necessary for protein synthesis, is a GTP exchange factor composed of five different subunits. The protein encoded by this gene is the fourth, or delta, subunit. Defects in this gene are a cause of leukoencephalopathy with vanishing white matter (VWM) and ovarioleukodystrophy. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000115234 | SNX17 | sorting nexin 17 | 9784 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein does not contain a coiled coil region, like some family members, but contains a B41 domain. This protein interacts with the cytoplasmic domain of P-selectin, and may function in the intracellular trafficking of P-selectin. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000115241 | PPM1G | protein phosphatase, Mg2+/Mn2+ dependent 1G | 5496 | The protein encoded by this gene is a member of the PP2C family of Ser/Thr protein phosphatases. PP2C family members are known to be negative regulators of cell stress response pathways. This phosphatase is found to be responsible for the dephosphorylation of Pre-mRNA splicing factors, which is important for the formation of functional spliceosome. Studies of a similar gene in mice suggested a role of this phosphatase in regulating cell cycle progression. |
| NA | ENSG00000115216 | NRBP1 | nuclear receptor binding protein 1 | 29959 | NA |
| NA | ENSG00000157992 | KRTCAP3 | keratinocyte associated protein 3 | 200634 | NA |
| NA | ENSG00000138002 | IFT172 | intraflagellar transport 172 | 26160 | This gene encodes a subunit of the intraflagellar transport subcomplex IFT-B. Subcomplexes IFT-A and IFT-B are necessary for ciliary assembly and maintenance. Mutations in this gene have been associated with skeletal ciliopathies, with or without polydactyly, such as such short-rib thoracic dysplasias 1, 9 or 10. |
| NA | ENSG00000115226 | FNDC4 | fibronectin type III domain containing 4 | 64838 | NA |
| NA | ENSG00000243943 | ZNF512 | zinc finger protein 512 | 84450 | This gene encodes a protein containing four putative zinc finger motifs. Zinc finger motifs may bind to proteins or nucleic acids. Zinc finger-containing proteins are involved in a variety of processes, including regulation of transcription. Alternative splicing results in multiple transcript variants for this gene. |
| NA | ENSG00000176714 | CCDC121 | coiled-coil domain containing 121 | 79635 | NA |
| NA | ENSG00000198522 | GPN1 | GPN-loop GTPase 1 | 11321 | This gene encodes a guanosine triphosphatase enzyme. The encoded protein may play a role in DNA repair and may function in activation of transcription. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000119760 | SUPT7L | SPT7-like STAGA complex gamma subunit | 9913 | SUPT7L is a protein subunit of the human STAGA complex (SPT3; (MIM 602947)/TAF9 (MIM 600822)/GCN5 (MIM 602301) acetyltransferase complex), which is a chromatin-modifying multiprotein complex (Martinez et al., 2001 [PubMed 11564863]). |
| NA | ENSG00000163798 | SLC4A1AP | solute carrier family 4 member 1 adaptor protein | 22950 | NA |
| NA | ENSG00000171174 | RBKS | ribokinase | 64080 | This gene encodes a member of the carbohydrate kinase PfkB family. The encoded protein phosphorylates ribose to form ribose-5-phosphate in the presence of ATP and magnesium as a first step in ribose metabolism. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000158019 | BRE | brain and reproductive organ-expressed (TNFRSF1A modulator) | 9577 | NA |
| NA | ENSG00000075426 | FOSL2 | FOS like antigen 2 | 2355 | The Fos gene family consists of 4 members: FOS, FOSB, FOSL1, and FOSL2. These genes encode leucine zipper proteins that can dimerize with proteins of the JUN family, thereby forming the transcription factor complex AP-1. As such, the FOS proteins have been implicated as regulators of cell proliferation, differentiation, and transformation. |
| NA | ENSG00000171103 | TRMT61B | tRNA methyltransferase 61B | 55006 | NA |
| NA | ENSG00000163811 | WDR43 | WD repeat domain 43 | 23160 | NA |
| NA | ENSG00000213626 | LBH | limb bud and heart development | 81606 | NA |
| NA | ENSG00000162949 | CAPN13 | calpain 13 | 92291 | The calpains, calcium-activated neutral proteases, are nonlysosomal, intracellular cysteine proteases. The mammalian calpains include ubiquitous, stomach-specific, and muscle-specific proteins. The ubiquitous enzymes consist of heterodimers with distinct large, catalytic subunits associated with a common small, regulatory subunit. This gene encodes a member of the calpain large subunit family. |
| NA | ENSG00000158089 | GALNT14 | polypeptide N-acetylgalactosaminyltransferase 14 | 79623 | This gene encodes a Golgi protein which is a member of the polypeptide N-acetylgalactosaminyltransferase (ppGalNAc-Ts) protein family. These enzymes catalyze the transfer of N-acetyl-D-galactosamine (GalNAc) to the hydroxyl groups on serines and threonines in target peptides. The encoded protein has been shown to transfer GalNAc to large proteins like mucins. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000013016 | EHD3 | EH domain containing 3 | 30845 | NA |
| NA | ENSG00000162959 | MEMO1 | mediator of cell motility 1 | 51072 | NA |
| NA | ENSG00000162961 | DPY30 | dpy-30, histone methyltransferase complex regulatory subunit | 84661 | This gene encodes an integral core subunit of the SET1/MLL family of H3K4 methyltransferases. The encoded protein directly controls cell cycle regulators and plays an important role in the proliferation and differentiation of human hematopoietic progenitor cells. |
| NA | ENSG00000021574 | SPAST | spastin | 6683 | This gene encodes a member of the AAA (ATPases associated with a variety of cellular activities) protein family. Members of this protein family share an ATPase domain and have roles in diverse cellular processes including membrane trafficking, intracellular motility, organelle biogenesis, protein folding, and proteolysis. The encoded ATPase may be involved in the assembly or function of nuclear protein complexes. Two transcript variants encoding distinct isoforms have been identified for this gene. Other alternative splice variants have been described but their full length sequences have not been determined. Mutations associated with this gene cause the most frequent form of autosomal dominant spastic paraplegia 4. |
| NA | ENSG00000152683 | SLC30A6 | solute carrier family 30 member 6 | 55676 | Zinc functions as a cofactor for numerous enzymes, nuclear factors, and hormones and as an intra- and intercellular signal ion. Members of the zinc transporter (ZNT)/SLC30 subfamily of the cation diffusion facilitator family, such as SLC30A6, permit cellular efflux of zinc (Seve et al., 2004 [PubMed 15154973]). |
| NA | ENSG00000119820 | YIPF4 | Yip1 domain family member 4 | 84272 | NA |
| NA | ENSG00000115760 | BIRC6 | baculoviral IAP repeat containing 6 | 57448 | This gene encodes a protein with a BIR (baculoviral inhibition of apoptosis protein repeat) domain and a UBCc (ubiquitin-conjugating enzyme E2, catalytic) domain. This protein inhibits apoptosis by facilitating the degradation of apoptotic proteins by ubiquitination. |
| NA | ENSG00000018699 | TTC27 | tetratricopeptide repeat domain 27 | 55622 | NA |
| NA | ENSG00000049323 | LTBP1 | latent transforming growth factor beta binding protein 1 | 4052 | The protein encoded by this gene belongs to the family of latent TGF-beta binding proteins (LTBPs). The secretion and activation of TGF-betas is regulated by their association with latency-associated proteins and with latent TGF-beta binding proteins. The product of this gene targets latent complexes of transforming growth factor beta to the extracellular matrix, where the latent cytokine is subsequently activated by several different mechanisms. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000119812 | FAM98A | family with sequence similarity 98 member A | 25940 | NA |
| NA | ENSG00000150938 | CRIM1 | cysteine rich transmembrane BMP regulator 1 (chordin-like) | 51232 | This gene encodes a transmembrane protein containing six cysteine-rich repeat domains and an insulin-like growth factor-binding domain. The encoded protein may play a role in tissue development though interactions with members of the transforming growth factor beta family, such as bone morphogenetic proteins. |
| NA | ENSG00000171055 | FEZ2 | fasciculation and elongation protein zeta 2 | 9637 | This gene is an ortholog of the C. elegans unc-76 gene, which is necessary for normal axonal bundling and elongation within axon bundles. Other orthologs include the rat gene that encodes zygin II, which can bind to synaptotagmin. |
| NA | ENSG00000115808 | STRN | striatin | 6801 | NA |
| NA | ENSG00000008869 | HEATR5B | HEAT repeat containing 5B | 54497 | NA |
| NA | ENSG00000152133 | GPATCH11 | G-patch domain containing 11 | 253635 | NA |
| NA | ENSG00000115816 | CEBPZ | CCAAT/enhancer binding protein zeta | 10153 | NA |
| NA | ENSG00000003509 | NDUFAF7 | NADH:ubiquinone oxidoreductase complex assembly factor 7 | 55471 | NA |
| NA | ENSG00000115825 | PRKD3 | protein kinase D3 | 23683 | This gene belongs to the multigene protein kinase D family of serine/threonine kinases, which bind diacylglycerol and phorbol esters. Members of this family are characterized by an N-terminal regulatory domain comprised of a tandem repeat of cysteine-rich zinc-finger motifs and a pleckstrin domain. The C-terminal region contains the catalytic domain and is distantly related to calcium-regulated kinases. Catalytic activity of this enzyme promotes its nuclear localization. This protein has been implicated in a variety of functions including negative regulation of human airway epithelial barrier formation, growth regulation of breast and prostate cancer cells, and vesicle trafficking. |
| NA | ENSG00000115828 | QPCT | glutaminyl-peptide cyclotransferase | 25797 | This gene encodes human pituitary glutaminyl cyclase, which is responsible for the presence of pyroglutamyl residues in many neuroendocrine peptides. The amino acid sequence of this enzyme is 86% identical to that of bovine glutaminyl cyclase. |
| NA | ENSG00000163171 | CDC42EP3 | CDC42 effector protein 3 | 10602 | This gene encodes a member of a small family of guanosine triphosphate (GTP) metabolizing proteins that contain a CRIB (Cdc42, Rac interactive binding) domain. Members of this family of proteins act as effectors of CDC42 function. The encoded protein is involved in actin cytoskeleton re-organization during cell shape changes, including pseudopodia formation. A pseudogene of this gene is found on chromosome 19. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000115841 | RMDN2 | regulator of microtubule dynamics 2 | 151393 | NA |
| NA | ENSG00000138061 | CYP1B1 | cytochrome P450 family 1 subfamily B member 1 | 1545 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. The enzyme encoded by this gene localizes to the endoplasmic reticulum and metabolizes procarcinogens such as polycyclic aromatic hydrocarbons and 17beta-estradiol. Mutations in this gene have been associated with primary congenital glaucoma; therefore it is thought that the enzyme also metabolizes a signaling molecule involved in eye development, possibly a steroid. |
| NA | ENSG00000119787 | ATL2 | atlastin GTPase 2 | 64225 | NA |
| NA | ENSG00000143889 | HNRNPLL | heterogeneous nuclear ribonucleoprotein L like | 92906 | HNRNPLL is a master regulator of activation-induced alternative splicing in T cells. In particular, it alters splicing of CD45 (PTPRC; MIM 151460), a tyrosine phosphatase essential for T-cell development and activation (Oberdoerffer et al., 2008 [PubMed 18669861]). |
| NA | ENSG00000143891 | GALM | galactose mutarotase (aldose 1-epimerase) | 130589 | This gene encodes an enzyme that catalyzes the epimerization of hexose sugars such as glucose and galactose. The encoded protein is expressed in the cytoplasm and has a preference for galactose. The encoded protein may be required for normal galactose metabolism by maintaining the equilibrium of alpha and beta anomers of galactose. |
| NA | ENSG00000115875 | SRSF7 | serine/arginine-rich splicing factor 7 | 6432 | The protein encoded by this gene is a member of the serine/arginine (SR)-rich family of pre-mRNA splicing factors, which constitute part of the spliceosome. Each of these factors contains an RNA recognition motif (RRM) for binding RNA and an RS domain for binding other proteins. The RS domain is rich in serine and arginine residues and facilitates interaction between different SR splicing factors. In addition to being critical for mRNA splicing, the SR proteins have also been shown to be involved in mRNA export from the nucleus and in translation. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163214 | DHX57 | DEAH-box helicase 57 | 90957 | NA |
| NA | ENSG00000188010 | MORN2 | MORN repeat containing 2 | 729967 | NA |
| NA | ENSG00000214694 | ARHGEF33 | Rho guanine nucleotide exchange factor 33 | 100271715 | NA |
| NA | ENSG00000115904 | SOS1 | SOS Ras/Rac guanine nucleotide exchange factor 1 | 6654 | This gene encodes a protein that is a guanine nucleotide exchange factor for RAS proteins, membrane proteins that bind guanine nucleotides and participate in signal transduction pathways. GTP binding activates and GTP hydrolysis inactivates RAS proteins. The product of this gene may regulate RAS proteins by facilitating the exchange of GTP for GDP. Mutations in this gene are associated with gingival fibromatosis 1 and Noonan syndrome type 4. |
| NA | ENSG00000011566 | MAP4K3 | mitogen-activated protein kinase kinase kinase kinase 3 | 8491 | This gene encodes a member of the mitogen-activated protein kinase kinase kinase kinase family. The encoded protein activates key effectors in cell signalling, among them c-Jun. Alternatively spliced transcripts encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000152154 | TMEM178A | transmembrane protein 178A | 130733 | NA |
| NA | ENSG00000183023 | SLC8A1 | solute carrier family 8 member A1 | 6546 | In cardiac myocytes, Ca(2+) concentrations alternate between high levels during contraction and low levels during relaxation. The increase in Ca(2+) concentration during contraction is primarily due to release of Ca(2+) from intracellular stores. However, some Ca(2+) also enters the cell through the sarcolemma (plasma membrane). During relaxation, Ca(2+) is sequestered within the intracellular stores. To prevent overloading of intracellular stores, the Ca(2+) that entered across the sarcolemma must be extruded from the cell. The Na(+)-Ca(2+) exchanger is the primary mechanism by which the Ca(2+) is extruded from the cell during relaxation. In the heart, the exchanger may play a key role in digitalis action. The exchanger is the dominant mechanism in returning the cardiac myocyte to its resting state following excitation. |
| NA | ENSG00000162878 | PKDCC | protein kinase domain containing, cytoplasmic | 91461 | NA |
| NA | ENSG00000115944 | COX7A2L | cytochrome c oxidase subunit 7A2 like | 9167 | Cytochrome c oxidase (COX), the terminal component of the mitochondrial respiratory chain, catalyzes the electron transfer from reduced cytochrome c to oxygen. This component is a heteromeric complex consisting of 3 catalytic subunits encoded by mitochondrial genes and multiple structural subunits encoded by nuclear genes. The mitochondrially-encoded subunits function in electron transfer, and the nuclear-encoded subunits may function in the regulation and assembly of the complex. This nuclear gene encodes a protein similar to polypeptides 1 and 2 of subunit VIIa in the C-terminal region, and also highly similar to the mouse Sig81 protein sequence. This gene is expressed in all tissues, and upregulated in a breast cancer cell line after estrogen treatment. It is possible that this gene represents a regulatory subunit of COX and mediates the higher level of energy production in target cells by estrogen. Several transcript variants, some protein-coding and others non-protein coding, have been found for this gene. |
| NA | ENSG00000171126 | KCNG3 | potassium voltage-gated channel modifier subfamily G member 3 | 170850 | Voltage-gated potassium (Kv) channels represent the most complex class of voltage-gated ion channels from both functional and structural standpoints. Their diverse functions include regulating neurotransmitter release, heart rate, insulin secretion, neuronal excitability, epithelial electrolyte transport, smooth muscle contraction, and cell volume. This gene encodes a member of the potassium channel, voltage-gated, subfamily G. This member is a gamma subunit functioning as a modulatory molecule. Alternative splicing results in two transcript variants encoding distinct isoforms. |
| NA | ENSG00000057935 | MTA3 | metastasis associated 1 family member 3 | 57504 | NA |
| NA | ENSG00000115970 | THADA | thyroid adenoma associated | 63892 | NA |
| NA | ENSG00000152518 | ZFP36L2 | ZFP36 ring finger protein-like 2 | 678 | This gene is a member of the TIS11 family of early response genes. Family members are induced by various agonists such as the phorbol ester TPA and the polypeptide mitogen EGF. The encoded protein contains a distinguishing putative zinc finger domain with a repeating cys-his motif. This putative nuclear transcription factor most likely functions in regulating the response to growth factors. |
| NA | ENSG00000138036 | DYNC2LI1 | dynein cytoplasmic 2 light intermediate chain 1 | 51626 | NA |
| NA | ENSG00000138095 | LRPPRC | leucine rich pentatricopeptide repeat containing | 10128 | This gene encodes a leucine-rich protein that has multiple pentatricopeptide repeats (PPR). The precise role of this protein is unknown but studies suggest it may play a role in cytoskeletal organization, vesicular transport, or in transcriptional regulation of both nuclear and mitochondrial genes. The protein localizes primarily to mitochondria and is predicted to have an N-terminal mitochondrial targeting sequence. Mutations in this gene are associated with the French-Canadian type of Leigh syndrome. |
| NA | ENSG00000138032 | PPM1B | protein phosphatase, Mg2+/Mn2+ dependent 1B | 5495 | The protein encoded by this gene is a member of the PP2C family of Ser/Thr protein phosphatases. PP2C family members are known to be negative regulators of cell stress response pathways. This phosphatase has been shown to dephosphorylate cyclin-dependent kinases (CDKs), and thus may be involved in cell cycle control. Overexpression of this phosphatase is reported to cause cell-growth arrest or cell death. Alternative splicing results in multiple transcript variants encoding different isoforms. Additional transcript variants have been described, but currently do not represent full-length sequences. |
| NA | ENSG00000138078 | PREPL | prolyl endopeptidase-like | 9581 | The protein encoded by this gene belongs to the prolyl oligopeptidase subfamily of serine peptidases. Mutations in this gene have been associated with hypotonia-cystinuria syndrome, also known as the 2p21 deletion syndrome. Several alternatively spliced transcript variants encoding either the same or different isoforms have been described for this gene. |
| NA | ENSG00000143919 | CAMKMT | calmodulin-lysine N-methyltransferase | 79823 | This gene encodes a class I protein methyltransferase that acts in the formation of trimethyllysine in calmodulin. The protein contains a AdoMet-binding motif and may play a role in calcium-dependent signaling. |
| NA | ENSG00000138083 | SIX3 | SIX homeobox 3 | 6496 | This gene encodes a member of the sine oculis homeobox transcription factor family. The encoded protein plays a role in eye development. Mutations in this gene have been associated with holoprosencephaly type 2. |
| NA | ENSG00000250565 | ATP6V1E2 | ATPase H+ transporting V1 subunit E2 | 90423 | NA |
| NA | ENSG00000119729 | RHOQ | ras homolog family member Q | 23433 | This gene encodes a member of the Rho family of small GTPases, which cycle between inactive GDP-bound and active GTP-bound states and function as molecular switches in signal transduction cascades. Rho proteins promote reorganization of the actin cytoskeleton and regulate cell shape, attachment, and motility. The encoded protein is an important signalling protein for sarcomere assembly and has been shown to play a significant role in the exocytosis of the solute carrier family 2, facilitated glucose transporter member 4 and other proteins, possibly acting as the signal that turns on the membrane fusion machinery. Three related pseudogene have been identified on chromosomes 2 and 14. |
| NA | ENSG00000119878 | CRIPT | CXXC repeat containing interactor of PDZ3 domain | 9419 | This gene encodes a protein that binds to the PDZ3 peptide recognition domain. The encoded protein may modulates protein interactions with the cytoskeleton. A mutation in this gene resulted in short stature with microcephaly and distinctive facies. |
| NA | ENSG00000171150 | SOCS5 | suppressor of cytokine signaling 5 | 9655 | The protein encoded by this gene contains a SH2 domain and a SOCS BOX domain. The protein thus belongs to the suppressor of cytokine signaling (SOCS) family, also known as STAT-induced STAT inhibitor (SSI) protein family. SOCS family members are known to be cytokine-inducible negative regulators of cytokine signaling. The specific function of this protein has not yet been determined. Two alternatively spliced transcript variants encoding an identical protein have been reported. |
| NA | ENSG00000180398 | MCFD2 | multiple coagulation factor deficiency 2 | 90411 | This gene encodes a soluble luminal protein with two calmodulin-like EF-hand motifs at its C-terminus. This protein forms a complex with LAMN1 (lectin mannose binding protein 1; also known as ERGIC-53) that facilitates the transport of coagulation factors V (FV) and VIII (FVIII) from the endoplasmic reticulum to the Golgi apparatus via an endoplasmic reticulum Golgi intermediate compartment (ERGIC). Mutations in this gene cause combined deficiency of FV and FVIII (F5F8D); a rare autosomal recessive bleeding disorder characterized by mild to moderate bleeding and coordinate reduction in plasma FV and FVIII levels. This protein has also been shown to maintain stem cell potential in adult central nervous system and is a marker for testicular germ cell tumors. The 3’ UTR of this gene contains a transposon-like human repeat element named ‘THE 1’. A processed RNA pseudogene of this gene is on chromosome 6p22.1. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000068724 | TTC7A | tetratricopeptide repeat domain 7A | 57217 | This gene encodes a protein containing tetratricopeptide repeats. Mutations in this gene disrupt intestinal development and can cause early onset inflammatory bowel disease and intestinal atresia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000143933 | CALM2 | calmodulin 2 (phosphorylase kinase, delta) | 805 | This gene is a member of the calmodulin gene family. There are three distinct calmodulin genes dispersed throughout the genome that encode the identical protein, but differ at the nucleotide level. Calmodulin is a calcium binding protein that plays a role in signaling pathways, cell cycle progression and proliferation. Several infants with severe forms of long-QT syndrome (LQTS) who displayed life-threatening ventricular arrhythmias together with delayed neurodevelopment and epilepsy were found to have mutations in either this gene or another member of the calmodulin gene family (PMID:23388215). Mutations in this gene have also been identified in patients with less severe forms of LQTS (PMID:24917665), while mutations in another calmodulin gene family member have been associated with catecholaminergic polymorphic ventricular tachycardia (CPVT)(PMID:23040497), a rare disorder thought to be the cause of a significant fraction of sudden cardiac deaths in young individuals. Pseudogenes of this gene are found on chromosomes 10, 13, and 17. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000119888 | EPCAM | epithelial cell adhesion molecule | 4072 | This gene encodes a carcinoma-associated antigen and is a member of a family that includes at least two type I membrane proteins. This antigen is expressed on most normal epithelial cells and gastrointestinal carcinomas and functions as a homotypic calcium-independent cell adhesion molecule. The antigen is being used as a target for immunotherapy treatment of human carcinomas. Mutations in this gene result in congenital tufting enteropathy. |
| NA | ENSG00000095002 | MSH2 | mutS homolog 2 | 4436 | This locus is frequently mutated in hereditary nonpolyposis colon cancer (HNPCC). When cloned, it was discovered to be a human homolog of the E. coli mismatch repair gene mutS, consistent with the characteristic alterations in microsatellite sequences (RER+ phenotype) found in HNPCC. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000184261 | KCNK12 | potassium two pore domain channel subfamily K member 12 | 56660 | This gene encodes one of the members of the superfamily of potassium channel proteins containing two pore-forming P domains. The product of this gene has not been shown to be a functional channel, however, it may require other non-pore-forming proteins for activity. |
| NA | ENSG00000116062 | MSH6 | mutS homolog 6 | 2956 | This gene encodes a member of the DNA mismatch repair MutS family. In E. coli, the MutS protein helps in the recognition of mismatched nucleotides prior to their repair. A highly conserved region of approximately 150 aa, called the Walker-A adenine nucleotide binding motif, exists in MutS homologs. The encoded protein heterodimerizes with MSH2 to form a mismatch recognition complex that functions as a bidirectional molecular switch that exchanges ADP and ATP as DNA mismatches are bound and dissociated. Mutations in this gene may be associated with hereditary nonpolyposis colon cancer, colorectal cancer, and endometrial cancer. Transcripts variants encoding different isoforms have been described. |
| NA | ENSG00000138081 | FBXO11 | F-box protein 11 | 80204 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class. It can function as an arginine methyltransferase that symmetrically dimethylates arginine residues, and it acts as an adaptor protein to mediate the neddylation of p53, which leads to the suppression of p53 function. This gene is known to be down-regulated in melanocytes from patients with vitiligo, a skin disorder that results in depigmentation. Polymorphisms in this gene are associated with chronic otitis media with effusion and recurrent otitis media (COME/ROM), a hearing loss disorder, and the knockout of the homologous mouse gene results in the deaf mouse mutant Jeff (Jf), a single gene model of otitis media. Alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000170802 | FOXN2 | forkhead box N2 | 3344 | This gene encodes a forkhead domain binding protein and may function in the transcriptional regulation of the human T-cell leukemia virus long terminal repeat. |
| NA | ENSG00000162869 | PPP1R21 | protein phosphatase 1 regulatory subunit 21 | 129285 | NA |
| NA | ENSG00000243244 | STON1 | stonin 1 | 11037 | Endocytosis of cell surface proteins is mediated by a complex molecular machinery that assembles on the inner surface of the plasma membrane. This gene encodes one of two human homologs of the Drosophila melanogaster stoned B protein. This protein is related to components of the endocytic machinery and exhibits a modular structure consisting of an N-terminal proline-rich domain, a central region of homology specific to the human stoned B-like proteins, and a C-terminal region homologous to the mu subunits of adaptor protein (AP) complexes. Read-through transcription of this gene into the neighboring downstream gene, which encodes TFIIA-alpha/beta-like factor, generates a transcript (SALF), which encodes a fusion protein comprised of sequence sharing identity with each individual gene product. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000138039 | LHCGR | luteinizing hormone/choriogonadotropin receptor | 3973 | This gene encodes the receptor for both luteinizing hormone and choriogonadotropin. This receptor belongs to the G-protein coupled receptor 1 family, and its activity is mediated by G proteins which activate adenylate cyclase. Mutations in this gene result in disorders of male secondary sexual character development, including familial male precocious puberty, also known as testotoxicosis, hypogonadotropic hypogonadism, Leydig cell adenoma with precocious puberty, and male pseudohermaphtoditism with Leydig cell hypoplasia. |
| NA | ENSG00000179915 | NRXN1 | neurexin 1 | 9378 | This gene encodes a single-pass type I membrane protein that belongs to the neurexin family. Neurexins are cell-surface receptors that bind neuroligins to form Ca(2+)-dependent neurexin/neuroligin complexes at synapses in the central nervous system. This complex is required for efficient neurotransmission, and is involved in the formation of synaptic contacts. Three members of this gene family have been studied in detail and are estimated to generate over 3,000 variants through the use of two alternative promoters (alpha and beta) and extensive alternative splicing in each family member. Recently, a third promoter (gamma) was identified for this gene in the 3’ region. The RefSeq project has decided to create only a few representative transcript variants of the multitude that are possible. Mutations in this gene are associated with Pitt-Hopkins-like syndrome-2. |
| NA | ENSG00000115239 | ASB3 | ankyrin repeat and SOCS box containing 3 | 51130 | The protein encoded by this gene is a member of the ankyrin repeat and SOCS box-containing (ASB) family of proteins. They contain ankyrin repeat sequence and SOCS box domain. The SOCS box serves to couple suppressor of cytokine signalling (SOCS) proteins and their binding partners with the elongin B and C complex, possibly targeting them for degradation. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000143942 | CHAC2 | ChaC, cation transport regulator homolog 2 (E. coli) | 494143 | NA |
| NA | ENSG00000068912 | ERLEC1 | endoplasmic reticulum lectin 1 | 27248 | This gene encodes a resident endoplasmic reticulum (ER) protein that functions in N-glycan recognition. This protein is thought to be involved in ER-associated degradation via its interaction with the membrane-associated ubiquitin ligase complex. It also functions as a regulator of multiple cellular stress-response pathways in a manner that promotes metastatic cell survival. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 21. |
| NA | ENSG00000068878 | PSME4 | proteasome activator subunit 4 | 23198 | NA |
| NA | ENSG00000170634 | ACYP2 | acylphosphatase 2 | 98 | Acylphosphatase can hydrolyze the phosphoenzyme intermediate of different membrane pumps, particularly the Ca2+/Mg2+-ATPase from sarcoplasmic reticulum of skeletal muscle. Two isoenzymes have been isolated, called muscle acylphosphatase and erythrocyte acylphosphatase on the basis of their tissue localization. This gene encodes the muscle-type isoform (MT). An increase of the MT isoform is associated with muscle differentiation. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000115306 | SPTBN1 | spectrin beta, non-erythrocytic 1 | 6711 | Spectrin is an actin crosslinking and molecular scaffold protein that links the plasma membrane to the actin cytoskeleton, and functions in the determination of cell shape, arrangement of transmembrane proteins, and organization of organelles. It is composed of two antiparallel dimers of alpha- and beta- subunits. This gene is one member of a family of beta-spectrin genes. The encoded protein contains an N-terminal actin-binding domain, and 17 spectrin repeats which are involved in dimer formation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000115310 | RTN4 | reticulon 4 | 57142 | This gene belongs to the family of reticulon encoding genes. Reticulons are associated with the endoplasmic reticulum, and are involved in neuroendocrine secretion or in membrane trafficking in neuroendocrine cells. The product of this gene is a potent neurite outgrowth inhibitor which may also help block the regeneration of the central nervous system in higher vertebrates. Alternatively spliced transcript variants derived both from differential splicing and differential promoter usage and encoding different isoforms have been identified. |
| NA | ENSG00000162994 | CLHC1 | clathrin heavy chain linker domain containing 1 | 130162 | NA |
| NA | ENSG00000143947 | RPS27A | ribosomal protein S27a | 6233 | Ubiquitin, a highly conserved protein that has a major role in targeting cellular proteins for degradation by the 26S proteosome, is synthesized as a precursor protein consisting of either polyubiquitin chains or a single ubiquitin fused to an unrelated protein. This gene encodes a fusion protein consisting of ubiquitin at the N terminus and ribosomal protein S27a at the C terminus. When expressed in yeast, the protein is post-translationally processed, generating free ubiquitin monomer and ribosomal protein S27a. Ribosomal protein S27a is a component of the 40S subunit of the ribosome and belongs to the S27AE family of ribosomal proteins. It contains C4-type zinc finger domains and is located in the cytoplasm. Pseudogenes derived from this gene are present in the genome. As with ribosomal protein S27a, ribosomal protein L40 is also synthesized as a fusion protein with ubiquitin; similarly, ribosomal protein S30 is synthesized as a fusion protein with the ubiquitin-like protein fubi. Multiple alternatively spliced transcript variants that encode the same proteins have been identified. |
| NA | ENSG00000085760 | MTIF2 | mitochondrial translational initiation factor 2 | 4528 | During the initiation of protein biosynthesis, initiation factor-2 (IF-2) promotes the binding of the initiator tRNA to the small subunit of the ribosome in a GTP-dependent manner. Prokaryotic IF-2 is a single polypeptide, while eukaryotic cytoplasmic IF-2 (eIF-2) is a trimeric protein. Bovine liver mitochondria contain IF-2(mt), an 85-kD monomeric protein that is equivalent to prokaryotic IF-2. The predicted 727-amino acid human protein contains a 29-amino acid presequence. Human IF-2(mt) shares 32 to 38% amino acid sequence identity with yeast IF-2(mt) and several prokaryotic IF-2s, with the greatest degree of conservation in the G domains of the proteins. |
| NA | ENSG00000115355 | CCDC88A | coiled-coil domain containing 88A | 55704 | This gene encodes a member of the Girdin family of coiled-coil domain containing proteins. The encoded protein is an actin-binding protein that is activated by the serine/threonine kinase Akt and plays a role in cytoskeleton remodeling and cell migration. The encoded protein also enhances Akt signaling by mediating phosphoinositide 3-kinase (PI3K)-dependent activation of Akt by growth factor receptor tyrosine kinases and G protein-coupled receptors. Increased expression of this gene and phosphorylation of the encoded protein may play a role in cancer metastasis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| TRUE | ENSG00000138041 | NA | NA | NA | NA |
| NA | ENSG00000138035 | PNPT1 | polyribonucleotide nucleotidyltransferase 1 | 87178 | The protein encoded by this gene belongs to the evolutionary conserved polynucleotide phosphorylase family comprised of phosphate dependent 3’-to-5’ exoribonucleases implicated in RNA processing and degradation. This enzyme is predominantly localized in the mitochondrial intermembrane space and is involved in import of RNA to mitochondria. Mutations in this gene have been associated with combined oxidative phosphorylation deficiency-13 and autosomal recessive nonsyndromic deafness-70. Related pseudogenes are found on chromosomes 3 and 7. |
| NA | ENSG00000115380 | EFEMP1 | EGF containing fibulin-like extracellular matrix protein 1 | 2202 | This gene encodes a member of the fibulin family of extracellular matrix glycoproteins. Like all members of this family, the encoded protein contains tandemly repeated epidermal growth factor-like repeats followed by a C-terminus fibulin-type domain. This gene is upregulated in malignant gliomas and may play a role in the aggressive nature of these tumors. Mutations in this gene are associated with Doyne honeycomb retinal dystrophy. Alternatively spliced transcript variants that encode the same protein have been described. |
| NA | ENSG00000115421 | PAPOLG | poly(A) polymerase gamma | 64895 | This gene encodes a member of the poly(A) polymerase family which catalyzes template-independent extension of the 3’ end of a DNA/RNA strand. This enzyme shares 60% identity to the well characterized poly(A) polymerase II (PAPII) at the amino acid level. These two enzymes have similar organization of structural and functional domains. This enzyme is exclusively localized in the nucleus and exhibits both nonspecific and CPSF (cleavage and polyadenylation specificity factor)/AAUAAA-dependent polyadenylation activity. This gene is located on chromosome 2 in contrast to the PAPII gene, which is located on chromosome 14. |
| NA | ENSG00000162924 | REL | v-rel avian reticuloendotheliosis viral oncogene homolog | 5966 | This gene encodes a protein that belongs to the Rel homology domain/immunoglobulin-like fold, plexin, transcription factor (RHD/IPT) family. Members of this family regulate genes involved in apoptosis, inflammation, the immune response, and oncogenic processes. This proto-oncogene plays a role in the survival and proliferation of B lymphocytes. Mutation or amplification of this gene is associated with B-cell lymphomas, including Hodgkin’s lymphoma. Single nucleotide polymorphisms in this gene are associated with susceptibility to ulcerative colitis and rheumatoid arthritis. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000162927 | PUS10 | pseudouridylate synthase 10 | 150962 | Pseudouridination, the isomerization of uridine to pseudouridine, is the most common posttranscriptional nucleotide modification found in RNA and is essential for biologic functions such as spliceosome biogenesis. Pseudouridylate synthases, such as PUS10, catalyze pseudouridination of structural RNAs, including transfer, ribosomal, and splicing RNAs. These enzymes also act as RNA chaperones, facilitating the correct folding and assembly of tRNAs (McCleverty et al., 2007 [PubMed 17900615]). |
| NA | ENSG00000162929 | KIAA1841 | KIAA1841 | 84542 | NA |
| NA | ENSG00000115464 | USP34 | ubiquitin specific peptidase 34 | 9736 | NA |
| NA | ENSG00000082898 | XPO1 | exportin 1 | 7514 | This cell-cycle-regulated gene encodes a protein that mediates leucine-rich nuclear export signal (NES)-dependent protein transport. The protein specifically inhibits the nuclear export of Rev and U snRNAs. It is involved in the control of several cellular processes by controlling the localization of cyclin B, MPAK, and MAPKAP kinase 2. This protein also regulates NFAT and AP-1. |
| NA | ENSG00000170264 | FAM161A | family with sequence similarity 161 member A | 84140 | This gene belongs to the FAM161 family. It is expressed mainly in the retina. Mouse studies suggested that this gene is involved in development of retinal progenitors during embryogenesis, and that its activity is restricted to mature photoreceptors after birth. Mutations in this gene cause autosomal recessive retinitis pigmentosa-28. Alternatively spliced transcript variants have been identified. |
| NA | ENSG00000115484 | CCT4 | chaperonin containing TCP1 subunit 4 | 10575 | The chaperonin containing TCP1 (MIM 186980) complex (CCT), also called the TCP1 ring complex, consists of 2 back-to-back rings, each containing 8 unique but homologous subunits, such as CCT4. CCT assists the folding of newly translated polypeptide substrates through multiple rounds of ATP-driven release and rebinding of partially folded intermediate forms. Substrates of CCT include the cytoskeletal proteins actin (see MIM 102560) and tubulin (see MIM 191130), as well as alpha-transducin (MIM 139330) (Won et al., 1998 [PubMed 9819444]). |
| NA | ENSG00000173163 | COMMD1 | copper metabolism domain containing 1 | 150684 | COMMD1 is a regulator of copper homeostasis, sodium uptake, and NF-kappa-B (see MIM 164011) signaling (de Bie et al., 2005 [PubMed 16267171]). |
| NA | ENSG00000170340 | B3GNT2 | UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 2 | 10678 | This gene encodes a member of the beta-1,3-N-acetylglucosaminyltransferase family. This enzyme is a type II transmembrane protein. It prefers the substrate of lacto-N-neotetraose, and is involved in the biosynthesis of poly-N-acetyllactosamine chains. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000186889 | TMEM17 | transmembrane protein 17 | 200728 | NA |
| NA | ENSG00000115504 | EHBP1 | EH domain binding protein 1 | 23301 | This gene encodes an Eps15 homology domain binding protein. The encoded protein may play a role in endocytic trafficking. A single nucleotide polymorphism in this gene is associated with an aggressive form of prostate cancer. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000143951 | WDPCP | WD repeat containing planar cell polarity effector | 51057 | This gene encodes a cytoplasmic WD40 repeat protein. A similar gene in frogs encodes a planar cell polarity protein that plays a critical role in collective cell movement and ciliogenesis by mediating septin localization. Mutations in this gene are associated with Bardet-Biedl syndrome 15 and may also play a role in Meckel-Gruber syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169764 | UGP2 | UDP-glucose pyrophosphorylase 2 | 7360 | The enzyme encoded by this gene is an important intermediary in mammalian carbohydrate interconversions. It transfers a glucose moiety from glucose-1-phosphate to MgUTP and forms UDP-glucose and MgPPi. In liver and muscle tissue, UDP-glucose is a direct precursor of glycogen; in lactating mammary gland it is converted to UDP-galactose which is then converted to lactose. The eukaryotic enzyme has no significant sequence similarity to the prokaryotic enzyme. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000143952 | VPS54 | VPS54, GARP complex subunit | 51542 | This gene encodes for a protein that in yeast forms part of a trimeric vacuolar-protein-sorting complex that is required for retrograde transport of proteins from prevacuoles to the late Golgi compartment. As in yeast, mammalian Vps54 proteins contain a coiled-coil region and dileucine motifs. Alternative splicing results in multiple transcript variants encoding different isoforms |
| NA | ENSG00000197329 | PELI1 | pellino E3 ubiquitin protein ligase 1 | 57162 | NA |
| NA | ENSG00000119862 | LGALSL | lectin, galactoside-binding-like | 29094 | NA |
| NA | ENSG00000119844 | AFTPH | aftiphilin | 54812 | NA |
| NA | ENSG00000179833 | SERTAD2 | SERTA domain containing 2 | 9792 | NA |
| NA | ENSG00000011523 | CEP68 | centrosomal protein 68kDa | 23177 | NA |
| NA | ENSG00000138069 | RAB1A | RAB1A, member RAS oncogene family | 5861 | This gene encodes a member of the Ras superfamily of GTPases. Members of the gene family cycle between inactive GDP-bound and active GTP-bound forms. This small GTPase controls vesicle traffic from the endoplasmic reticulum to the Golgi apparatus. Multiple alternatively spliced transcript variants have been identified for this gene which encode different protein isoforms. |
| NA | ENSG00000138071 | ACTR2 | ARP2 actin-related protein 2 homolog (yeast) | 10097 | The specific function of this gene has not yet been determined; however, the protein it encodes is known to be a major constituent of the ARP2/3 complex. This complex is located at the cell surface and is essential to cell shape and motility through lamellipodial actin assembly and protrusion. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198369 | SPRED2 | sprouty related, EVH1 domain containing 2 | 200734 | SPRED2 is a member of the Sprouty (see SPRY1; MIM 602465)/SPRED family of proteins that regulate growth factor-induced activation of the MAP kinase cascade (see MAPK1; MIM 176948) (Nonami et al., 2004 [PubMed 15465815]). |
| NA | ENSG00000143971 | ETAA1 | Ewing tumor-associated antigen 1 | 54465 | NA |
| NA | ENSG00000197223 | C1D | C1D nuclear receptor corepressor | 10438 | The protein encoded by this gene is a DNA binding and apoptosis-inducing protein and is localized in the nucleus. It is also a Rac3-interacting protein which acts as a corepressor for the thyroid hormone receptor. This protein is thought to regulate TRAX/Translin complex formation. Alternate splicing results in multiple transcript variants that encode the same protein. Multiple pseudogenes of this gene are found on chromosome 10. |
| NA | ENSG00000243667 | WDR92 | WD repeat domain 92 | 116143 | This gene encodes a protein with two WD40 repeat domains thought to be involved in an apoptosis via activation of caspase-3. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000115946 | PNO1 | partner of NOB1 homolog | 56902 | NA |
| NA | ENSG00000221823 | PPP3R1 | protein phosphatase 3 regulatory subunit B, alpha | 5534 | NA |
| NA | ENSG00000119865 | CNRIP1 | cannabinoid receptor interacting protein 1 | 25927 | This gene encodes a protein that interacts with the C-terminal tail of cannabinoid receptor 1. Two transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000204923 | FBXO48 | F-box protein 48 | 554251 | NA |
| NA | ENSG00000169621 | APLF | aprataxin and PNKP like factor | 200558 | C2ORF13 is a component of the cellular response to chromosomal DNA single- and double-strand breaks (Iles et al., 2007 [PubMed 17353262]). |
| NA | ENSG00000169621 | PROKR1 | prokineticin receptor 1 | 10887 | NA |
| NA | ENSG00000198380 | GFPT1 | glutamine–fructose-6-phosphate transaminase 1 | 2673 | This gene encodes the first and rate-limiting enzyme of the hexosamine pathway and controls the flux of glucose into the hexosamine pathway. The product of this gene catalyzes the formation of glucosamine 6-phosphate. |
| NA | ENSG00000115977 | AAK1 | AP2 associated kinase 1 | 22848 | Adaptor-related protein complex 2 (AP-2 complexes) functions during receptor-mediated endocytosis to trigger clathrin assembly, interact with membrane-bound receptors, and recruit encodytic accessory factors. This gene encodes a member of the SNF1 subfamily of Ser/Thr protein kinases. The protein interacts with and phosphorylates a subunit of the AP-2 complex, which promotes binding of AP-2 to sorting signals found in membrane-bound receptors and subsequent receptor endocytosis. Its kinase activity is stimulated by clathrin. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000196975 | ANXA4 | annexin A4 | 307 | Annexin IV (ANX4) belongs to the annexin family of calcium-dependent phospholipid binding proteins. Although their functions are still not clearly defined, several members of the annexin family have been implicated in membrane-related events along exocytotic and endocytotic pathways. ANX4 has 45 to 59% identity with other members of its family and shares a similar size and exon-intron organization. Isolated from human placenta, ANX4 encodes a protein that has possible interactions with ATP, and has in vitro anticoagulant activity and also inhibits phospholipase A2 activity. ANX4 is almost exclusively expressed in epithelial cells. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000124380 | SNRNP27 | small nuclear ribonucleoprotein U4/U6.U5 subunit 27 | 11017 | This gene encodes a serine/arginine-rich (SR) protein. SR proteins play important roles in pre-mRNA splicing by facilitating the recognition and selection of splice sites. The encoded protein associates with the 25S U4/U6.U5 tri-snRNP, a major component of the U2-type spiceosome. The expression of this gene may be altered in cells infected with the human T-cell lymphotropic virus type 1 (HTLV-1) retrovirus. A pseudogene of this gene is located on the long arm of chromosome 5. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000059728 | MXD1 | MAX dimerization protein 1 | 4084 | This gene encodes a member of the MYC/MAX/MAD network of basic helix-loop-helix leucine zipper transcription factors. The MYC/MAX/MAD transcription factors mediate cellular proliferation, differentiation and apoptosis. The encoded protein antagonizes MYC-mediated transcriptional activation of target genes by competing for the binding partner MAX and recruiting repressor complexes containing histone deacetylases. Mutations in this gene may play a role in acute leukemia, and the encoded protein is a potential tumor suppressor. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000169564 | PCBP1 | poly(rC) binding protein 1 | 5093 | This intronless gene is thought to have been generated by retrotransposition of a fully processed PCBP-2 mRNA. This gene and PCBP-2 have paralogues (PCBP3 and PCBP4) which are thought to have arisen as a result of duplication events of entire genes. The protein encoded by this gene appears to be multifunctional. It along with PCBP-2 and hnRNPK corresponds to the major cellular poly(rC)-binding protein. It contains three K-homologous (KH) domains which may be involved in RNA binding. This encoded protein together with PCBP-2 also functions as translational coactivators of poliovirus RNA via a sequence-specific interaction with stem-loop IV of the IRES and promote poliovirus RNA replication by binding to its 5’-terminal cloverleaf structure. It has also been implicated in translational control of the 15-lipoxygenase mRNA, human Papillomavirus type 16 L2 mRNA, and hepatitis A virus RNA. The encoded protein is also suggested to play a part in formation of a sequence-specific alpha-globin mRNP complex which is associated with alpha-globin mRNA stability. |
| NA | ENSG00000115998 | C2orf42 | chromosome 2 open reading frame 42 | 54980 | NA |
| NA | ENSG00000116001 | TIA1 | TIA1 cytotoxic granule-associated RNA binding protein | 7072 | The product encoded by this gene is a member of a RNA-binding protein family and possesses nucleolytic activity against cytotoxic lymphocyte (CTL) target cells. It has been suggested that this protein may be involved in the induction of apoptosis as it preferentially recognizes poly(A) homopolymers and induces DNA fragmentation in CTL targets. The major granule-associated species is a 15-kDa protein that is thought to be derived from the carboxyl terminus of the 40-kDa product by proteolytic processing. Alternative splicing resulting in different isoforms of this gene product has been described in the literature. |
| NA | ENSG00000143977 | SNRPG | small nuclear ribonucleoprotein polypeptide G | 6637 | The protein encoded by this gene is a component of the U1, U2, U4, and U5 small nuclear ribonucleoprotein complexes, precursors of the spliceosome. The encoded protein may also be a part of the U7 small nuclear ribonucleoprotein complex, which participates in the processing of the 3’ end of histone transcripts. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163235 | TGFA | transforming growth factor alpha | 7039 | This gene encodes a growth factor that is a ligand for the epidermal growth factor receptor, which activates a signaling pathway for cell proliferation, differentiation and development. This protein may act as either a transmembrane-bound ligand or a soluble ligand. This gene has been associated with many types of cancers, and it may also be involved in some cases of cleft lip/palate. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000075340 | ADD2 | adducin 2 | 119 | Adducins are heteromeric proteins composed of different subunits referred to as adducin alpha, beta and gamma. The three subunits are encoded by distinct genes and belong to a family of membrane skeletal proteins involved in the assembly of spectrin-actin network in erythrocytes and at sites of cell-cell contact in epithelial tissues. While adducins alpha and gamma are ubiquitously expressed, the expression of adducin beta is restricted to brain and hematopoietic tissues. Adducin, originally purified from human erythrocytes, was found to be a heterodimer of adducins alpha and beta. Polymorphisms resulting in amino acid substitutions in these two subunits have been associated with the regulation of blood pressure in an animal model of hypertension. Heterodimers consisting of alpha and gamma subunits have also been described. Structurally, each subunit is comprised of two distinct domains. The amino-terminal region is protease resistant and globular in shape, while the carboxy-terminal region is protease sensitive. The latter contains multiple phosphorylation sites for protein kinase C, the binding site for calmodulin, and is required for association with spectrin and actin. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000144043 | TEX261 | testis expressed 261 | 113419 | NA |
| NA | ENSG00000124357 | NAGK | N-acetylglucosamine kinase | 55577 | This gene encodes a member of the N-acetylhexosamine kinase family. The encoded protein catalyzes the conversion of N-acetyl-D-glucosamine to N-acetyl-D-glucosamine 6-phosphate, and is the major mammalian enzyme which recovers amino sugars. |
| NA | ENSG00000124370 | MCEE | methylmalonyl-CoA epimerase | 84693 | The product of this gene catalyzes the interconversion of D- and L-methylmalonyl-CoA during the degradation of branched chain amino acids. odd chain-length fatty acids, and other metabolites. Mutations in this gene result in methylmalonyl-CoA epimerase deficiency, which is presented as mild to moderate methylmalonic aciduria. |
| NA | ENSG00000124383 | MPHOSPH10 | M-phase phosphoprotein 10 | 10199 | This gene encodes a protein that is phosphorylated during mitosis. The protein localizes to the nucleolus during interphase and to the chromosomes during M phase. The protein associates with the U3 small nucleolar ribonucleoprotein 60-80S complexes and may be involved in pre-rRNA processing. |
| NA | ENSG00000124374 | PAIP2B | poly(A) binding protein interacting protein 2B | 400961 | Most mRNAs, except for histones, contain a 3-prime poly(A) tail. Poly(A)-binding protein (PABP; see MIM 604679) enhances translation by circularizing mRNA through its interaction with the translation initiation factor EIF4G1 (MIM 600495) and the poly(A) tail. Various PABP-binding proteins regulate PABP activity, including PAIP1 (MIM 605184), a translational stimulator, and PAIP2A (MIM 605604) and PAIP2B, translational inhibitors (Derry et al., 2006 [PubMed 17381337]). |
| NA | ENSG00000075292 | ZNF638 | zinc finger protein 638 | 27332 | The protein encoded by this gene is a nucleoplasmic protein. It binds cytidine-rich sequences in double-stranded DNA. This protein has three types of domains: MH1, MH2 (repeated three times) and MH3. It is associated with packaging, transferring, or processing transcripts. Multiple alternatively spliced transcript variants have been found for this gene, but the biological validity of some variants has not been determined. |
| NA | ENSG00000135636 | DYSF | dysferlin | 8291 | The protein encoded by this gene belongs to the ferlin family and is a skeletal muscle protein found associated with the sarcolemma. It is involved in muscle contraction and contains C2 domains that play a role in calcium-mediated membrane fusion events, suggesting that it may be involved in membrane regeneration and repair. In addition, the protein encoded by this gene binds caveolin-3, a skeletal muscle membrane protein which is important in the formation of caveolae. Specific mutations in this gene have been shown to cause autosomal recessive limb girdle muscular dystrophy type 2B (LGMD2B) as well as Miyoshi myopathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000144036 | EXOC6B | exocyst complex component 6B | 23233 | In yeast and rat, Sec15 is part of a multiprotein complex that is required for targeted exocytosis. |
| NA | ENSG00000116096 | SPR | sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase) | 6697 | This gene encodes an aldo-keto reductase that catalyzes the NADPH-dependent reduction of pteridine derivatives and is important in the biosynthesis of tetrahydrobiopterin (BH4). Mutations in this gene result in DOPA-responsive dystonia due to sepiaterin reductase deficiency. A pseudogene has been identified on chromosome 1. |
| NA | ENSG00000144040 | SFXN5 | sideroflexin 5 | 94097 | NA |
| NA | ENSG00000135631 | RAB11FIP5 | RAB11 family interacting protein 5 (class I) | 26056 | NA |
| NA | ENSG00000135632 | SMYD5 | SMYD family member 5 | 10322 | NA |
| NA | ENSG00000135617 | PRADC1 | protease-associated domain containing 1 | 84279 | NA |
| NA | ENSG00000135624 | CCT7 | chaperonin containing TCP1 subunit 7 | 10574 | This gene encodes a molecular chaperone that is a member of the chaperonin containing TCP1 complex (CCT), also known as the TCP1 ring complex (TRiC). This complex consists of two identical stacked rings, each containing eight different proteins. Unfolded polypeptides enter the central cavity of the complex and are folded in an ATP-dependent manner. The complex folds various proteins, including actin and tubulin. Alternative splicing results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 5 and 6. |
| NA | ENSG00000163013 | FBXO41 | F-box protein 41 | 150726 | This gene encodes a member of the F-box protein family, which is characterized by an approximately 40 amino acid motif, the F-box. F-box proteins constitute one of the four subunits of the SCF ubiquitin protein ligase complex that plays a role in phosphorylation-dependent ubiquitination. F-box proteins are divided into three classes depending on the interaction substrate domain each contains in addition to the F-box motif: FBXW proteins contain WD-40 domains, FBXL proteins contain leucine-rich repeats, and FBXO proteins contain either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the FBXO class. |
| NA | ENSG00000116127 | ALMS1 | ALMS1, centrosome and basal body associated protein | 7840 | This gene encodes a protein containing a large tandem-repeat domain as well as additional low complexity regions. The encoded protein functions in microtubule organization, particularly in the formation and maintanance of cilia. Mutations in this gene cause Alstrom syndrome. There is a pseudogene for this gene located adjacent in the same region of chromosome 2. Alternative splice variants have been described but their full length nature has not been determined. |
| NA | ENSG00000144034 | TPRKB | TP53RK binding protein | 51002 | NA |
| NA | ENSG00000124356 | STAMBP | STAM binding protein | 10617 | Cytokine-mediated signal transduction in the JAK-STAT cascade requires the involvement of adaptor molecules. One such signal-transducing adaptor molecule contains an SH3 domain that is required for induction of MYC and cell growth. The protein encoded by this gene binds to the SH3 domain of the signal-transducing adaptor molecule, and plays a critical role in cytokine-mediated signaling for MYC induction and cell cycle progression. Multiple alternatively spliced transcript variants encoding the same protein isoform have been found for this gene. |
| NA | ENSG00000163017 | ACTG2 | actin, gamma 2, smooth muscle, enteric | 72 | Actins are highly conserved proteins that are involved in various types of cell motility and in the maintenance of the cytoskeleton. Three types of actins, alpha, beta and gamma, have been identified in vertebrates. Alpha actins are found in muscle tissues and are a major constituent of the contractile apparatus. The beta and gamma actins co-exist in most cell types as components of the cytoskeleton and as mediators of internal cell motility. This gene encodes actin gamma 2; a smooth muscle actin found in enteric tissues. Alternative splicing results in multiple transcript variants encoding distinct isoforms. Based on similarity to peptide cleavage of related actins, the mature protein of this gene is formed by removal of two N-terminal peptides. |
| NA | ENSG00000114956 | DGUOK | deoxyguanosine kinase | 1716 | In mammalian cells, the phosphorylation of purine deoxyribonucleosides is mediated predominantly by two deoxyribonucleoside kinases, cytosolic deoxycytidine kinase and mitochondrial deoxyguanosine kinase. The protein encoded by this gene is responsible for phosphorylation of purine deoxyribonucleosides in the mitochondrial matrix. In addition, this protein phosphorylates several purine deoxyribonucleoside analogs used in the treatment of lymphoproliferative disorders, and this phosphorylation is critical for the effectiveness of the analogs. Alternative splice variants encoding different protein isoforms have been described for this gene. |
| NA | ENSG00000187605 | TET3 | tet methylcytosine dioxygenase 3 | 200424 | Members of the ten-eleven translocation (TET) gene family, including TET3, play a role in the DNA methylation process (Langemeijer et al., 2009 [PubMed 19923888]). |
| NA | ENSG00000163170 | BOLA3 | bolA family member 3 | 388962 | This gene encodes a protein that plays an essential role in the production of iron-sulfur (Fe-S) clusters for the normal maturation of lipoate-containing 2-oxoacid dehydrogenases, and for the assembly of the mitochondrial respiratory chain complexes. Mutation in this gene has been associated with multiple mitochondrial dysfunctions syndrome-2. Two alternatively spliced transcript variants encoding different isoforms with distinct subcellular localization have been reported for this gene (PMID:21944046). |
| NA | ENSG00000065911 | MTHFD2 | methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2, methenyltetrahydrofolate cyclohydrolase | 10797 | This gene encodes a nuclear-encoded mitochondrial bifunctional enzyme with methylenetetrahydrofolate dehydrogenase and methenyltetrahydrofolate cyclohydrolase activities. The enzyme functions as a homodimer and is unique in its absolute requirement for magnesium and inorganic phosphate. Formation of the enzyme-magnesium complex allows binding of NAD. Alternative splicing results in two different transcripts, one protein-coding and the other not protein-coding. This gene has a pseudogene on chromosome 7. |
| NA | ENSG00000204843 | DCTN1 | dynactin subunit 1 | 1639 | This gene encodes the largest subunit of dynactin, a macromolecular complex consisting of 10 subunits ranging in size from 22 to 150 kD. Dynactin binds to both microtubules and cytoplasmic dynein. Dynactin is involved in a diverse array of cellular functions, including ER-to-Golgi transport, the centripetal movement of lysosomes and endosomes, spindle formation, chromosome movement, nuclear positioning, and axonogenesis. This subunit interacts with dynein intermediate chain by its domains directly binding to dynein and binds to microtubules via a highly conserved glycine-rich cytoskeleton-associated protein (CAP-Gly) domain in its N-terminus. Alternative splicing of this gene results in multiple transcript variants encoding distinct isoforms. Mutations in this gene cause distal hereditary motor neuronopathy type VIIB (HMN7B) which is also known as distal spinal and bulbar muscular atrophy (dSBMA). |
| NA | ENSG00000159239 | C2orf81 | chromosome 2 open reading frame 81 | 388963 | NA |
| NA | ENSG00000114993 | RTKN | rhotekin | 6242 | This gene encodes a scaffold protein that interacts with GTP-bound Rho proteins. Binding of this protein inhibits the GTPase activity of Rho proteins. This protein may interfere with the conversion of active, GTP-bound Rho to the inactive GDP-bound form by RhoGAP. Rho proteins regulate many important cellular processes, including cytokinesis, transcription, smooth muscle contraction, cell growth and transformation. Dysregulation of the Rho signal transduction pathway has been implicated in many forms of cancer. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000115274 | INO80B | INO80 complex subunit B | 83444 | This gene encodes a subunit of an ATP-dependent chromatin remodeling complex, INO80, which plays a role in DNA and nucleosome-activated ATPase activity and ATP-dependent nucleosome sliding. Readthrough transcription of this gene into the neighboring downstream gene, which encodes WW domain-binding protein 1, generates a non-coding transcript. |
| NA | ENSG00000239779 | WBP1 | WW domain binding protein 1 | 23559 | The globular WW domain, named for the conserved tryptophan residues in the protein motif present in various structural and regulatory proteins, is known to play a role in the mediation of protein-protein interactions. This gene encodes a ligand of the WW domain of the Yes kinase-associated protein. Readthrough transcription of the neighboring upstream gene, which encodes INO80 complex subunit B, into this gene generates a non-coding transcript. |
| NA | ENSG00000115275 | MOGS | mannosyl-oligosaccharide glucosidase | 7841 | This gene encodes the first enzyme in the N-linked oligosaccharide processing pathway. The enzyme cleaves the distal alpha-1,2-linked glucose residue from the Glc(3)-Man(9)-GlcNAc(2) oligosaccharide precursor. This protein is located in the lumen of the endoplasmic reticulum. Defects in this gene are a cause of type IIb congenital disorder of glycosylation (CDGIIb). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000135637 | CCDC142 | coiled-coil domain containing 142 | 84865 | NA |
| NA | ENSG00000115282 | TTC31 | tetratricopeptide repeat domain 31 | 64427 | NA |
| NA | ENSG00000115289 | PCGF1 | polycomb group ring finger 1 | 84759 | PCGF1 is a mammalian homolog of the Drosophila polycomb group genes, which act as transcriptional repressors to regulate anterior-posterior patterning in early embryonic development (Nunes et al., 2001 [PubMed 11287196]). See also PCGF2 (MIM 600346). |
| NA | ENSG00000115307 | AUP1 | ancient ubiquitous protein 1 | 550 | The protein encoded this gene is involved in several pathways including quality control of misfolded proteins in the endoplasmic reticulum and lipid droplet accumulation. Lipid droplets are organelles in the cytoplasm that store neutral lipids such as cholesterol esters and trigylycerides to prevent the overabundance of free cholesterol and fatty acids in cells, but also to act as storage for other metabolic processes, such as membrane biogenesis. Reduced expression of this gene results in reduced lipid droplet clustering, a function that is dependent on ubiquitination of the protein. This protein contains multiple domains including a hydrophobic N-terminal domain, an acetyltranferase domain, a ubiquitin-binding CUE domain, and a UBE2B2-binding domain (G2BR). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000115317 | HTRA2 | HtrA serine peptidase 2 | 27429 | This gene encodes a serine protease. The protein has been localized in the endoplasmic reticulum and interacts with an alternatively spliced form of mitogen-activated protein kinase 14. The protein has also been localized to the mitochondria with release to the cytosol following apoptotic stimulus. The protein is thought to induce apoptosis by binding the apoptosis inhibitory protein baculoviral IAP repeat-containing 4. Nuclear localization of this protein has also been observed. Alternate splicing of this gene results in two transcript variants encoding different isoforms. Additional transcript variants have been described, but their full-length sequences have not been determined. |
| NA | ENSG00000115325 | DOK1 | docking protein 1 | 1796 | The protein encoded by this gene is part of a signal transduction pathway downstream of receptor tyrosine kinases. The encoded protein is a scaffold protein that helps form a platform for the assembly of multiprotein signaling complexes. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000159374 | M1AP | meiosis 1 associated protein | 130951 | This gene encodes a protein that is likely to function in progression of meiosis. A similar protein in mouse plays a role in gametogenesis in both sexes. Alternate splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000135622 | SEMA4F | ssemaphorin 4F | 10505 | This gene encodes a transmembrane class IV semaphorin family protein, which plays a role in neural development. This gene may be involved in neurogenesis in prostate cancer, the development of neurofibromas, and breast cancer tumorigenesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000159399 | HK2 | hexokinase 2 | 3099 | Hexokinases phosphorylate glucose to produce glucose-6-phosphate, the first step in most glucose metabolism pathways. This gene encodes hexokinase 2, the predominant form found in skeletal muscle. It localizes to the outer membrane of mitochondria. Expression of this gene is insulin-responsive, and studies in rat suggest that it is involved in the increased rate of glycolysis seen in rapidly growing cancer cells. |
| NA | ENSG00000115350 | POLE4 | polymerase (DNA) epsilon 4, accessory subunit | 56655 | POLE4 is a histone-fold protein that interacts with other histone-fold proteins to bind DNA in a sequence-independent manner. These histone-fold protein dimers combine within larger enzymatic complexes for DNA transcription, replication, and packaging. |
| NA | ENSG00000005436 | GCFC2 | GC-rich sequence DNA-binding factor 2 | 6936 | The first mRNA transcript isolated for this gene was part of an artificial chimera derived from two distinct gene transcripts and a primer used in the cloning process (see Genbank accession M29204). A positively charged amino terminus present only in the chimera was determined to bind GC-rich DNA, thus mistakenly thought to identify a transcription factor gene. |
| NA | ENSG00000176204 | LRRTM4 | leucine rich repeat transmembrane neuronal 4 | 80059 | NA |
| NA | ENSG00000163541 | SUCLG1 | succinate-CoA ligase, alpha subunit | 8802 | This gene encodes the alpha subunit of the heterodimeric enzyme succinate coenzyme A ligase. This enzyme is targeted to the mitochondria and catalyzes the conversion of succinyl CoA and ADP or GDP to succinate and ATP or GTP. Mutations in this gene are the cause of the metabolic disorder fatal infantile lactic acidosis and mitochondrial DNA depletion. |
| NA | ENSG00000186854 | TRABD2A | TraB domain containing 2A | 129293 | NA |
| NA | ENSG00000034510 | TMSB10 | thymosin beta 10 | 9168 | NA |
| NA | ENSG00000176407 | KCMF1 | potassium channel modulatory factor 1 | 56888 | NA |
| NA | ENSG00000152284 | TCF7L1 | transcription factor 7 like 1 | 83439 | This gene encodes a member of the T cell factor/lymphoid enhancer factor family of transcription factors. These transcription factors are activated by beta catenin, mediate the Wnt signaling pathway and are antagonized by the transforming growth factor beta signaling pathway. The encoded protein contains a high mobility group-box DNA binding domain and participates in the regulation of cell cycle genes and cellular senescence. |
| NA | ENSG00000042445 | RETSAT | retinol saturase (all-trans-retinol 13,14-reductase) | 54884 | NA |
| NA | ENSG00000115459 | ELMOD3 | ELMO domain containing 3 | 84173 | NA |
| NA | ENSG00000042493 | CAPG | capping actin protein, gelsolin like | 822 | This gene encodes a member of the gelsolin/villin family of actin-regulatory proteins. The encoded protein reversibly blocks the barbed ends of F-actin filaments in a Ca2+ and phosphoinositide-regulated manner, but does not sever preformed actin filaments. By capping the barbed ends of actin filaments, the encoded protein contributes to the control of actin-based motility in non-muscle cells. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000168906 | MAT2A | methionine adenosyltransferase 2A | 4144 | The protein encoded by this gene catalyzes the production of S-adenosylmethionine (AdoMet) from methionine and ATP. AdoMet is the key methyl donor in cellular processes. |
| NA | ENSG00000115486 | GGCX | gamma-glutamyl carboxylase | 2677 | This gene encodes an integral membrane protein of the rough endoplasmic reticulum that carboxylates glutamate residues of vitamin K-dependent proteins to gamma carboxyl glutamate, a modification that is required for their activity. The vitamin K-dependent protein substrates have a propeptide that binds the enzyme, with carbon dioxide, dioxide, and reduced vitamin K acting as co-substrates. Vitamin K-dependent proteins affect a number of physiologic processes including blood coagulation, prevention of vascular calcification, and inflammation. Allelic variants of this gene have been associated with pseudoxanthoma elasticum-like disorder with associated multiple coagulation factor deficiency. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000118640 | VAMP8 | vesicle associated membrane protein 8 | 8673 | This gene encodes an integral membrane protein that belongs to the synaptobrevin/vesicle-associated membrane protein subfamily of soluble N-ethylmaleimide-sensitive factor attachment protein receptors (SNAREs). The encoded protein is involved in the fusion of synaptic vesicles with the presynaptic membrane. |
| NA | ENSG00000168899 | VAMP5 | vesicle associated membrane protein 5 | 10791 | Synaptobrevins/VAMPs, syntaxins, and the 25-kD synaptosomal-associated protein are the main components of a protein complex involved in the docking and/or fusion of vesicles and cell membranes. The VAMP5 gene is a member of the vesicle-associated membrane protein (VAMP)/synaptobrevin family and the SNARE superfamily. This VAMP family member may participate in vesicle trafficking events that are associated with myogenesis. |
| NA | ENSG00000168883 | USP39 | ubiquitin specific peptidase 39 | 10713 | NA |
| NA | ENSG00000168887 | C2orf68 | chromosome 2 open reading frame 68 | 388969 | NA |
| NA | ENSG00000168878 | SFTPB | surfactant protein B | 6439 | This gene encodes the pulmonary-associated surfactant protein B (SPB), an amphipathic surfactant protein essential for lung function and homeostasis after birth. Pulmonary surfactant is a surface-active lipoprotein complex composed of 90% lipids and 10% proteins which include plasma proteins and apolipoproteins SPA, SPB, SPC and SPD. The surfactant is secreted by the alveolar cells of the lung and maintains the stability of pulmonary tissue by reducing the surface tension of fluids that coat the lung. The SPB enhances the rate of spreading and increases the stability of surfactant monolayers in vitro. Multiple mutations in this gene have been identified, which cause pulmonary surfactant metabolism dysfunction type 1, also called pulmonary alveolar proteinosis due to surfactant protein B deficiency, and are associated with fatal respiratory distress in the neonatal period. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000115525 | ST3GAL5 | ST3 beta-galactoside alpha-2,3-sialyltransferase 5 | 8869 | Ganglioside GM3 is known to participate in the induction of cell differentiation, modulation of cell proliferation, maintenance of fibroblast morphology, signal transduction, and integrin-mediated cell adhesion. The protein encoded by this gene is a type II membrane protein which catalyzes the formation of GM3 using lactosylceramide as the substrate. The encoded protein is a member of glycosyltransferase family 29 and may be localized to the Golgi apparatus. Mutation in this gene has been associated with Amish infantile epilepsy syndrome. Transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000068654 | POLR1A | polymerase (RNA) I subunit A | 25885 | NA |
| NA | ENSG00000132300 | PTCD3 | pentatricopeptide repeat domain 3 | 55037 | NA |
| NA | ENSG00000132305 | IMMT | inner membrane mitochondrial protein | 10989 | NA |
| NA | ENSG00000132313 | MRPL35 | mitochondrial ribosomal protein L35 | 51318 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. Sequence analysis identified three transcript variants. Pseudogenes corresponding to this gene are found on chromosomes 6p, 10q, and Xp. |
| NA | ENSG00000068615 | REEP1 | receptor accessory protein 1 | 65055 | This gene encodes a mitochondrial protein that functions to enhance the cell surface expression of odorant receptors. Mutations in this gene cause spastic paraplegia autosomal dominant type 31, a neurodegenerative disorder. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000115548 | KDM3A | lysine demethylase 3A | 55818 | This gene encodes a zinc finger protein that contains a jumonji domain and may play a role in hormone-dependent transcriptional activation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000115561 | CHMP3 | charged multivesicular body protein 3 | 51652 | This gene encodes a protein that sorts transmembrane proteins into lysosomes/vacuoles via the multivesicular body (MVB) pathway. This protein, along with other soluble coiled-coil containing proteins, forms part of the ESCRT-III protein complex that binds to the endosomal membrane and recruits additional cofactors for protein sorting into the MVB. This protein may also co-immunoprecipitate with a member of the IFG-binding protein superfamily. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the upstream ring finger protein 103 (RNF103) gene. |
| NA | ENSG00000239305 | RNF103 | ring finger protein 103 | 7844 | The protein encoded by this gene contains a RING-H2 finger, a motif known to be involved in protein-protein and protein-DNA interactions. This gene is highly expressed in normal cerebellum, but not in the cerebral cortex. The expression of the rat counterpart in the frontal cortex and hippocampus was shown to be induced by elctroconvulsive treatment (ECT) as well as chronic antidepressant treatment, suggesting that this gene may be a molecular target for ECT and antidepressants. The protein is a ubiquitin ligase that functions in the endoplasmic reticulum-associated degradation pathway. Alternative splicing of this gene results in multiple transcript variants. Read-through transcription also exists between this gene and the downstream CHMP3 (charged multivesicular body protein 3) gene. |
| NA | ENSG00000153561 | RMND5A | required for meiotic nuclear division 5 homolog A | 64795 | NA |
| NA | ENSG00000185304 | RGPD2 | RANBP2-like and GRIP domain containing 2 | 729857 | NA |
| NA | ENSG00000172086 | KRCC1 | lysine-rich coiled-coil 1 | 51315 | NA |
| NA | ENSG00000144115 | THNSL2 | threonine synthase like 2 | 55258 | This gene encodes a threonine synthase-like protein. A similar enzyme in mouse can catalyze the degradation of O-phospho-homoserine to a-ketobutyrate, phosphate, and ammonia. This protein also has phospho-lyase activity on both gamma and beta phosphorylated substrates. In mouse an alternatively spliced form of this protein has been shown to act as a cytokine and can induce the production of the inflammatory cytokine IL6 in osteoblasts. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000172071 | EIF2AK3 | eukaryotic translation initiation factor 2 alpha kinase 3 | 9451 | The protein encoded by this gene phosphorylates the alpha subunit of eukaryotic translation-initiation factor 2, leading to its inactivation, and thus to a rapid reduction of translational initiation and repression of global protein synthesis. This protein is thought to modulate mitochondrial function. It is a type I membrane protein located in the endoplasmic reticulum (ER), where it is induced by ER stress caused by malfolded proteins. Mutations in this gene are associated with Wolcott-Rallison syndrome. |
| NA | ENSG00000153574 | RPIA | ribose 5-phosphate isomerase A | 22934 | The protein encoded by this gene is an enzyme, which catalyzes the reversible conversion between ribose-5-phosphate and ribulose-5-phosphate in the pentose-phosphate pathway. This gene is highly conserved in most organisms. The enzyme plays an essential role in the carbohydrate metabolism. Mutations in this gene cause ribose 5-phosphate isomerase deficiency. A pseudogene is found on chromosome 18. |
| NA | ENSG00000144026 | ZNF514 | zinc finger protein 514 | 84874 | NA |
| TRUE | ENSG00000163067 | NA | NA | NA | NA |
| NA | ENSG00000115042 | FAHD2A | fumarylacetoacetate hydrolase domain containing 2A | 51011 | NA |
| NA | ENSG00000174501 | ANKRD36C | ankyrin repeat domain 36C | ENSG00000174501 | NA |
| TRUE | ENSG00000222040 | NA | NA | NA | NA |
| NA | ENSG00000158050 | DUSP2 | dual specificity phosphatase 2 | 1844 | The protein encoded by this gene is a member of the dual specificity protein phosphatase subfamily. These phosphatases inactivate their target kinases by dephosphorylating both the phosphoserine/threonine and phosphotyrosine residues. They negatively regulate members of the mitogen-activated protein (MAP) kinase superfamily (MAPK/ERK, SAPK/JNK, p38), which are associated with cellular proliferation and differentiation. Different members of the family of dual specificity phosphatases show distinct substrate specificities for various MAP kinases, different tissue distribution and subcellular localization, and different modes of inducibility of their expression by extracellular stimuli. This gene product inactivates ERK1 and ERK2, is predominantly expressed in hematopoietic tissues, and is localized in the nucleus. |
| NA | ENSG00000084090 | STARD7 | StAR related lipid transfer domain containing 7 | 56910 | Although the function of this gene is not known, its existence is supported by mRNA and EST data. The predicted gene product contains a region similar to the STAR-related lipid transfer (START) domain, which is often present in proteins involved in the cell signaling mediated by lipid binding. Alternatively spliced transcript variants have been described, although some transcripts occur only in cancer cell lines. |
| NA | ENSG00000135956 | TMEM127 | transmembrane protein 127 | 55654 | This gene encodes a transmembrane protein with 3 predicted transmembrane domains. The protein is associated with a subpopulation of vesicular organelles corresponding to early endosomal structures, with the Golgi, and with lysosomes, and may participate in protein trafficking between these structures. Mutations in this gene and several other genes cause pheochromocytomas. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000144021 | CIAO1 | cytosolic iron-sulfur assembly component 1 | 9391 | NA |
| NA | ENSG00000144028 | SNRNP200 | small nuclear ribonucleoprotein U5 subunit 200 | 23020 | Pre-mRNA splicing is catalyzed by the spliceosome, a complex of specialized RNA and protein subunits that removes introns from a transcribed pre-mRNA segment. The spliceosome consists of small nuclear RNA proteins (snRNPs) U1, U2, U4, U5 and U6, together with approximately 80 conserved proteins. U5 snRNP contains nine specific proteins. This gene encodes one of the U5 snRNP-specific proteins. This protein belongs to the DEXH-box family of putative RNA helicases. It is a core component of U4/U6-U5 snRNPs and appears to catalyze an ATP-dependent unwinding of U4/U6 RNA duplices. Mutations in this gene cause autosomal-dominant retinitis pigmentosa. Alternatively spliced transcript variants encoding different isoforms have been found, but the full-length nature of these variants has not been determined. |
| NA | ENSG00000198885 | ITPRIPL1 | inositol 1,4,5-trisphosphate receptor interacting protein-like 1 | 150771 | NA |
| NA | ENSG00000121152 | NCAPH | non-SMC condensin I complex subunit H | 23397 | This gene encodes a member of the barr gene family and a regulatory subunit of the condensin complex. This complex is required for the conversion of interphase chromatin into condensed chromosomes. The protein encoded by this gene is associated with mitotic chromosomes, except during the early phase of chromosome condensation. During interphase, the protein has a distinct punctate nucleolar localization. Alternatively spliced transcript variants encoding different proteins have been described. |
| NA | ENSG00000114982 | KANSL3 | KAT8 regulatory NSL complex subunit 3 | 55683 | NA |
| NA | ENSG00000114988 | LMAN2L | lectin, mannose binding 2 like | 81562 | NA |
| NA | ENSG00000158158 | CNNM4 | cyclin and CBS domain divalent metal cation transport mediator 4 | 26504 | This gene encodes a member of the ancient conserved domain containing protein family. Members of this protein family contain a cyclin box motif and have structural similarity to the cyclins. The encoded protein may play a role in metal ion transport. Mutations in this gene are associated with Jalili syndrome which consists of cone-rod dystrophy and amelogenesis imperfecta. |
| NA | ENSG00000168763 | CNNM3 | cyclin and CBS domain divalent metal cation transport mediator 3 | 26505 | NA |
| NA | ENSG00000213337 | ANKRD39 | ankyrin repeat domain 39 | 51239 | NA |
| NA | ENSG00000168758 | SEMA4C | semaphorin 4C | 54910 | NA |
| NA | ENSG00000144199 | FAHD2B | fumarylacetoacetate hydrolase domain containing 2B | 151313 | NA |
| NA | ENSG00000135976 | ANKRD36 | ankyrin repeat domain 36 | 375248 | NA |
| NA | ENSG00000115073 | ACTR1B | ARP1 actin-related protein 1 homolog B, centractin beta (yeast) | 10120 | This gene encodes a 42.3 kD subunit of dynactin, a macromolecular complex consisting of 10 subunits ranging in size from 22 to 150 kD. Dynactin binds to both microtubules and cytoplasmic dynein and is involved in a diverse array of cellular functions, including ER-to-Golgi transport, the centripetal movement of lysosomes and endosomes, spindle formation, chromosome movement, nuclear positioning, and axonogenesis. This subunit, like ACTR1A, is an actin-related protein. These two proteins, which are of equal length and share 90% amino acid identity, are present in a constant ratio of approximately 1:15 in the dynactin complex. |
| NA | ENSG00000075568 | TMEM131 | transmembrane protein 131 | 23505 | NA |
| NA | ENSG00000040933 | INPP4A | inositol polyphosphate-4-phosphatase type I A | 3631 | This gene encodes an Mg++ independent enzyme that hydrolyzes the 4-position phosphate from the inositol ring of phosphatidylinositol 3,4-bisphosphate, inositol 1,3,4-trisphosphate, and inositol 3,4-bisphosphate. Multiple transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000115446 | UNC50 | unc-50 homolog (C. elegans) | 25972 | NA |
| NA | ENSG00000071073 | MGAT4A | mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme A | 11320 | This gene encodes a key glycosyltransferase that regulates the formation of tri- and multiantennary branching structures in the Golgi apparatus. The encoded protein, in addition to the related isoenzyme B, catalyzes the transfer of N-acetylglucosamine (GlcNAc) from UDP-GlcNAc in a beta-1,4 linkage to the Man-alpha-1,3-Man-beta-1,4-GlcNAc arm of R-Man-alpha-1,6(GlcNAc-beta-1,2-Man-alpha-1,3)Man-beta-1, 4-GlcNAc-beta-1,4-GlcNAc-beta-1-Asn. The encoded protein may play a role in regulating the availability of serum glycoproteins, oncogenesis, and differentiation. |
| NA | ENSG00000135951 | TSGA10 | testis specific 10 | 80705 | NA |
| NA | ENSG00000144182 | LIPT1 | lipoyltransferase 1 | 51601 | The process of transferring lipoic acid to proteins is a two-step process. The first step is the activation of lipoic acid by lipoate-activating enzyme to form lipoyl-AMP. For the second step, the protein encoded by this gene transfers the lipoyl moiety to apoproteins. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 13. Read-through transcription also exists between this gene and the neighboring downstream mitochondrial ribosomal protein L30 (MRPL30) gene. |
| NA | ENSG00000115514 | TXNDC9 | thioredoxin domain containing 9 | 10190 | The protein encoded by this gene is a member of the thioredoxin family. The exact function of this protein is not known but it is associated with cell differentiation. |
| NA | ENSG00000158417 | EIF5B | eukaryotic translation initiation factor 5B | 9669 | Accurate initiation of translation in eukaryotes is complex and requires many factors, some of which are composed of multiple subunits. The process is simpler in prokaryotes which have only three initiation factors (IF1, IF2, IF3). Two of these factors are conserved in eukaryotes: the homolog of IF1 is eIF1A and the homolog of IF2 is eIF5B. This gene encodes eIF5B. Factors eIF1A and eIF5B interact on the ribosome along with other initiation factors and GTP to position the initiation methionine tRNA on the start codon of the mRNA so that translation initiates accurately. |
| NA | ENSG00000135945 | REV1 | REV1, DNA directed polymerase | 51455 | This gene encodes a protein with similarity to the S. cerevisiae mutagenesis protein Rev1. The Rev1 proteins contain a BRCT domain, which is important in protein-protein interactions. A suggested role for the human Rev1-like protein is as a scaffold that recruits DNA polymerases involved in translesion synthesis (TLS) of damaged DNA. Two alternatively spliced transcript variants that encode different proteins have been found. |
| NA | ENSG00000144218 | AFF3 | AF4/FMR2 family member 3 | 3899 | This gene encodes a tissue-restricted nuclear transcriptional activator that is preferentially expressed in lymphoid tissue. Isolation of this protein initially defined a highly conserved LAF4/MLLT2 gene family of nuclear transcription factors that may function in lymphoid development and oncogenesis. In some ALL patients, this gene has been found fused to the gene for MLL. Multiple alternatively spliced transcript variants that encode different proteins have been found for this gene. |
| NA | ENSG00000115539 | PDCL3 | phosducin like 3 | 79031 | This gene encodes a member of the phosducin-like protein family and is a putative modulator of heterotrimeric G proteins. The protein shares extensive amino acid sequence homology with phosducin. Members of the phosducin-like protein family have been shown to bind to the beta-gamma subunits of G proteins. |
| NA | ENSG00000071082 | RPL31 | ribosomal protein L31 | 6160 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L31E family of ribosomal proteins. It is located in the cytoplasm. Higher levels of expression of this gene in familial adenomatous polyps compared to matched normal tissues have been observed. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000204634 | TBC1D8 | TBC1 domain family member 8 | 11138 | NA |
| NA | ENSG00000158435 | CNOT11 | CCR4-NOT transcription complex subunit 11 | 55571 | NA |
| NA | ENSG00000163162 | RNF149 | ring finger protein 149 | 284996 | NA |
| NA | ENSG00000135953 | MFSD9 | major facilitator superfamily domain containing 9 | 84804 | NA |
| NA | ENSG00000170417 | TMEM182 | transmembrane protein 182 | 130827 | NA |
| NA | ENSG00000135972 | MRPS9 | mitochondrial ribosomal protein S9 | 64965 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein. |
| NA | ENSG00000135966 | TGFBRAP1 | transforming growth factor beta receptor associated protein 1 | 9392 | NA |
| NA | ENSG00000135974 | C2orf49 | chromosome 2 open reading frame 49 | 79074 | NA |
| NA | ENSG00000115641 | FHL2 | four and a half LIM domains 2 | 2274 | This gene encodes a member of the four-and-a-half-LIM-only protein family. Family members contain two highly conserved, tandemly arranged, zinc finger domains with four highly conserved cysteines binding a zinc atom in each zinc finger. This protein is thought to have a role in the assembly of extracellular membranes. Also, this gene is down-regulated during transformation of normal myoblasts to rhabdomyosarcoma cells and the encoded protein may function as a link between presenilin-2 and an intracellular signaling pathway. Multiple alternatively spliced variants encoding different isoforms have been identified. |
| NA | ENSG00000119147 | C2orf40 | chromosome 2 open reading frame 40 | 84417 | NA |
| NA | ENSG00000115652 | UXS1 | UDP-glucuronate decarboxylase 1 | 80146 | This gene encodes an enzyme found in the perinuclear Golgi which catalyzes the synthesis of UDP-xylose used in glycosaminoglycan (GAG) synthesis on proteoglycans. The GAG chains are covalently attached to proteoglycans which participate in signaling pathways during development. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000153165 | RGPD3 | RANBP2-like and GRIP domain containing 3 | 653489 | This gene is located in a cluster of Ran-binding protein related genes on chromosome 2 which arose through duplication in primates. The encoded protein contains an N-terminal TPR (tetratricopeptide repeat) domain, two Ran-binding domains, and a C-terminal GRIP domain (golgin-97, RanBP2alpha, Imh1p and p230/golgin-245) domain. |
| NA | ENSG00000144057 | ST6GAL2 | ST6 beta-galactosamide alpha-2,6-sialyltranferase 2 | 84620 | This locus encodes a sialyltransferase. The encoded type II transmembrane protein catalyzes the transfer of sialic acid from CMP to an oligosaccharide substrate. Polymorphisms at this locus may be associated with variations in risperidone response in schizophrenic patients. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000198203 | SULT1C2 | sulfotransferase family 1C member 2 | 6819 | Sulfotransferase enzymes catalyze the sulfate conjugation of many hormones, neurotransmitters, drugs, and xenobiotic compounds. These cytosolic enzymes are different in their tissue distributions and substrate specificities. The gene structure (number and length of exons) is similar among family members. This gene encodes a protein that belongs to the SULT1 subfamily, responsible for transferring a sulfo moiety from PAPS to phenol-containing compounds. Two alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000198075 | SULT1C4 | sulfotransferase family 1C member 4 | 27233 | Sulfotransferase enzymes catalyze the sulfate conjugation of many hormones, neurotransmitters, drugs, and xenobiotic compounds. These cytosolic enzymes are different in their tissue distributions and substrate specificities. The gene structure (number and length of exons) is similar among family members. This gene encodes a protein that belongs to the SULT1 subfamily, responsible for transferring a sulfo moiety from PAPS to phenol-containing compounds. |
| NA | ENSG00000135968 | GCC2 | GRIP and coiled-coil domain containing 2 | 9648 | The protein encoded by this gene is a peripheral membrane protein localized to the trans-Golgi network. It is sensitive to brefeldin A. This encoded protein contains a GRIP domain which is thought to be used in targeting. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169756 | LIMS1 | LIM zinc finger domain containing 1 | 3987 | The protein encoded by this gene is an adaptor protein which contains five LIM domains, or double zinc fingers. The protein is likely involved in integrin signaling through its LIM domain-mediated interaction with integrin-linked kinase, found in focal adhesion plaques. It is also thought to act as a bridge linking integrin-linked kinase to NCK adaptor protein 2, which is involved in growth factor receptor kinase signaling pathways. Its localization to the periphery of spreading cells also suggests that this protein may play a role in integrin-mediated cell adhesion or spreading. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000153201 | RANBP2 | RAN binding protein 2 | 5903 | RAN is a small GTP-binding protein of the RAS superfamily that is associated with the nuclear membrane and is thought to control a variety of cellular functions through its interactions with other proteins. This gene encodes a very large RAN-binding protein that immunolocalizes to the nuclear pore complex. The protein is a giant scaffold and mosaic cyclophilin-related nucleoporin implicated in the Ran-GTPase cycle. The encoded protein directly interacts with the E2 enzyme UBC9 and strongly enhances SUMO1 transfer from UBC9 to the SUMO1 target SP100. These findings place sumoylation at the cytoplasmic filaments of the nuclear pore complex and suggest that, for some substrates, modification and nuclear import are linked events. This gene is partially duplicated in a gene cluster that lies in a hot spot for recombination on chromosome 2q. |
| NA | ENSG00000186522 | SEPT10 | septin 10 | 151011 | This gene encodes a member of the septin family of cytoskeletal proteins with GTPase activity. This protein localizes to the cytoplasm and nucleus and displays GTP-binding and GTPase activity. A pseudogene for this gene is located on chromosome 8. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000198142 | SOWAHC | sosondowah ankyrin repeat domain family member C | 65124 | NA |
| NA | ENSG00000015568 | RGPD5 | RANBP2-like and GRIP domain containing 5 | 84220 | RAN is a small GTP-binding protein of the RAS superfamily that is associated with the nuclear membrane and is thought to control a variety of cellular functions through its interactions with other proteins. This gene shares a high degree of sequence identity with RANBP2, a large RAN-binding protein localized at the cytoplasmic side of the nuclear pore complex. It is believed that this RANBP2 gene family member arose from a duplication event 3 Mb distal to RANBP2. Alternative splicing has been observed for this locus and two variants are described. Additional splicing is suggested but complete sequence for further transcripts has not been determined. |
| NA | ENSG00000015568 | RGPD6 | RANBP2-like and GRIP domain containing 6 | 729540 | NA |
| NA | ENSG00000144061 | NPHP1 | nephronophthisis 1 (juvenile) | 4867 | This gene encodes a protein with src homology domain 3 (SH3) patterns. This protein interacts with Crk-associated substrate, and it appears to function in the control of cell division, as well as in cell-cell and cell-matrix adhesion signaling, likely as part of a multifunctional complex localized in actin- and microtubule-based structures. Mutations in this gene cause familial juvenile nephronophthisis type 1, a kidney disorder involving both tubules and glomeruli. Defects in this gene are also associated with Senior-Loken syndrome type 1, also referred to as juvenile nephronophthisis with Leber amaurosis, which is characterized by kidney and eye disease, and with Joubert syndrome type 4, which is characterized by cerebellar ataxia, oculomotor apraxia, psychomotor delay and neonatal breathing abnormalities, sometimes including retinal dystrophy and renal disease. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169679 | BUB1 | BUB1 mitotic checkpoint serine/threonine kinase | 699 | This gene encodes a serine/threonine-protein kinase that play a central role in mitosis. The encoded protein functions in part by phosphorylating members of the mitotic checkpoint complex and activating the spindle checkpoint. This protein also plays a role in inhibiting the activation of the anaphase promoting complex/cyclosome. This protein may also function in the DNA damage response. Mutations in this gene have been associated with aneuploidy and several forms of cancer. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000153093 | ACOXL | acyl-CoA oxidase-like | 55289 | NA |
| NA | ENSG00000153094 | BCL2L11 | BCL2 like 11 | 10018 | The protein encoded by this gene belongs to the BCL-2 protein family. BCL-2 family members form hetero- or homodimers and act as anti- or pro-apoptotic regulators that are involved in a wide variety of cellular activities. The protein encoded by this gene contains a Bcl-2 homology domain 3 (BH3). It has been shown to interact with other members of the BCL-2 protein family and to act as an apoptotic activator. The expression of this gene can be induced by nerve growth factor (NGF), as well as by the forkhead transcription factor FKHR-L1, which suggests a role of this gene in neuronal and lymphocyte apoptosis. Transgenic studies of the mouse counterpart suggested that this gene functions as an essential initiator of apoptosis in thymocyte-negative selection. Several alternatively spliced transcript variants of this gene have been identified. |
| NA | ENSG00000153107 | ANAPC1 | anaphase promoting complex subunit 1 | 64682 | This gene encodes a subunit of the anaphase-promoting complex. This complex is an E3 ubiquitin ligase that regulates progression through the metaphase to anaphase portion of the cell cycle by ubiquitinating proteins which targets them for degradation. |
| NA | ENSG00000153208 | MERTK | MER proto-oncogene, tyrosine kinase | 10461 | This gene is a member of the MER/AXL/TYRO3 receptor kinase family and encodes a transmembrane protein with two fibronectin type-III domains, two Ig-like C2-type (immunoglobulin-like) domains, and one tyrosine kinase domain. Mutations in this gene have been associated with disruption of the retinal pigment epithelium (RPE) phagocytosis pathway and onset of autosomal recessive retinitis pigmentosa (RP). |
| NA | ENSG00000153214 | TMEM87B | transmembrane protein 87B | 84910 | NA |
| NA | ENSG00000144161 | ZC3H8 | zinc finger CCCH-type containing 8 | 84524 | NA |
| NA | ENSG00000188177 | ZC3H6 | zinc finger CCCH-type containing 6 | 376940 | NA |
| NA | ENSG00000169629 | RGPD8 | RANBP2-like and GRIP domain containing 8 | 727851 | NA |
| NA | ENSG00000114999 | TTL | tubulin tyrosine ligase | 150465 | TTL is a cytosolic enzyme involved in the posttranslational modification of alpha-tubulin (see MIM 602529). Alpha-tubulin within assembled microtubules is detyrosinated over time at the C terminus. After microtubule disassembly, TTL restores the tyrosine residues and consequently participates in a cycle of tubulin detyrosination and tyrosination (Erck et al., 2003 [PubMed 14571137]). |
| NA | ENSG00000125630 | POLR1B | polymerase (RNA) I subunit B | 84172 | Eukaryotic RNA polymerase I (pol I) is responsible for the transcription of ribosomal RNA (rRNA) genes and production of rRNA, the primary component of ribosomes. Pol I is a multisubunit enzyme composed of 6 to 14 polypeptides, depending on the species. Most of the mass of the pol I complex derives from the 2 largest subunits, Rpa1 and Rpa2 in yeast. POLR1B is homologous to Rpa2 (Seither and Grummt, 1996 [PubMed 8921381]). |
| NA | ENSG00000144136 | SLC20A1 | solute carrier family 20 member 1 | 6574 | The protein encoded by this gene is a sodium-phosphate symporter that absorbs phosphate from interstitial fluid for use in cellular functions such as metabolism, signal transduction, and nucleic acid and lipid synthesis. The encoded protein is also a retroviral receptor, causing human cells to be susceptible to infection by gibbon ape leukemia virus, simian sarcoma-associated virus, feline leukemia virus subgroup B, and 10A1 murine leukemia virus. |
| NA | ENSG00000169607 | CKAP2L | cytoskeleton associated protein 2 like | 150468 | The protein encoded by this gene is thought to be a mitotic spindle protein important to neural stem or progenitor cells. Mutations in this gene have been associated with spindle organization defects, including mitotic spindle defects, lagging chromosomes, and chromatin bridges. There is evidence that mutations in this gene are associated with Filippi syndrome, characterized by growth defects, microcephaly, intellectual disability, facial feature defects, and syndactyly. There is a pseudogene of this gene on chromosome 20. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136682 | CBWD2 | COBW domain containing 2 | 150472 | NA |
| NA | ENSG00000144134 | RABL2A | RAB, member of RAS oncogene family-like 2A | 11159 | This gene is a member of the RAB gene family which belongs to the RAS GTPase superfamily. The proteins in the family of RAS-related signaling molecules are small GTP-binding proteins that play important roles in the regulation of exocytotic and endocytotic pathways. This gene maps to the site of an ancestral telomere fusion event and may be a subtelomeric gene. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000115084 | SLC35F5 | solute carrier family 35 member F5 | 80255 | NA |
| NA | ENSG00000115091 | ACTR3 | ARP3 actin-related protein 3 homolog (yeast) | 10096 | The specific function of this gene has not yet been determined; however, the protein it encodes is known to be a major constituent of the ARP2/3 complex. This complex is located at the cell surface and is essential to cell shape and motility through lamellipodial actin assembly and protrusion. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000175497 | DPP10 | dipeptidyl peptidase like 10 | 57628 | This gene encodes a single-pass type II membrane protein that is a member of the S9B family in clan SC of the serine proteases. This protein has no detectable protease activity, most likely due to the absence of the conserved serine residue normally present in the catalytic domain of serine proteases. However, it does bind specific voltage-gated potassium channels and alters their expression and biophysical properties. Mutations in this gene have been associated with asthma. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000088205 | DDX18 | DEAD-box helicase 18 | 8886 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, and it is activated by Myc protein. |
| NA | ENSG00000125633 | CCDC93 | coiled-coil domain containing 93 | 54520 | NA |
| NA | ENSG00000125629 | INSIG2 | insulin induced gene 2 | 51141 | The protein encoded by this gene is highly similar to the protein product encoded by gene INSIG1. Both INSIG1 protein and this protein are endoplasmic reticulum proteins that block the processing of sterol regulatory element binding proteins (SREBPs) by binding to SREBP cleavage-activating protein (SCAP), and thus prevent SCAP from escorting SREBPs to the Golgi. |
| NA | ENSG00000155368 | DBI | diazepam binding inhibitor (GABA receptor modulator, acyl-CoA binding protein) | 1622 | This gene encodes diazepam binding inhibitor, a protein that is regulated by hormones and is involved in lipid metabolism and the displacement of beta-carbolines and benzodiazepines, which modulate signal transduction at type A gamma-aminobutyric acid receptors located in brain synapses. The protein is conserved from yeast to mammals, with the most highly conserved domain consisting of seven contiguous residues that constitute the hydrophobic binding site for medium- and long-chain acyl-Coenzyme A esters. Diazepam binding inhibitor is also known to mediate the feedback regulation of pancreatic secretion and the postprandial release of cholecystokinin, in addition to its role as a mediator in corticotropin-dependent adrenal steroidogenesis. Three pseudogenes located on chromosomes 6, 8 and 16 have been identified. Multiple transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000171227 | TMEM37 | transmembrane protein 37 | 140738 | NA |
| NA | ENSG00000144120 | TMEM177 | transmembrane protein 177 | 80775 | NA |
| NA | ENSG00000088179 | PTPN4 | protein tyrosine phosphatase, non-receptor type 4 | 5775 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This protein contains a C-terminal PTP domain and an N-terminal domain homologous to the band 4.1 superfamily of cytoskeletal-associated proteins. This PTP has been shown to interact with glutamate receptor delta 2 and epsilon subunits, and is thought to play a role in signalling downstream of the glutamate receptors through tyrosine dephosphorylation. |
| NA | ENSG00000115109 | EPB41L5 | erythrocyte membrane protein band 4.1 like 5 | 57669 | NA |
| NA | ENSG00000226479 | TMEM185B | transmembrane protein 185B | 79134 | NA |
| NA | ENSG00000144118 | RALB | v-ral simian leukemia viral oncogene homolog B | 5899 | This gene encodes a GTP-binding protein that belongs to the small GTPase superfamily and Ras family of proteins. GTP-binding proteins mediate the transmembrane signaling initiated by the occupancy of certain cell surface receptors. |
| NA | ENSG00000074047 | GLI2 | GLI family zinc finger 2 | 2736 | This gene encodes a protein which belongs to the C2H2-type zinc finger protein subclass of the Gli family. Members of this subclass are characterized as transcription factors which bind DNA through zinc finger motifs. These motifs contain conserved H-C links. Gli family zinc finger proteins are mediators of Sonic hedgehog (Shh) signaling and they are implicated as potent oncogenes in the embryonal carcinoma cell. The protein encoded by this gene localizes to the cytoplasm and activates patched Drosophila homolog (PTCH) gene expression. It is also thought to play a role during embryogenesis. The encoded protein is associated with several phenotypes- Greig cephalopolysyndactyly syndrome, Pallister-Hall syndrome, preaxial polydactyly type IV, postaxial polydactyly types A1 and B. |
| NA | ENSG00000074054 | CLASP1 | cytoplasmic linker associated protein 1 | 23332 | CLASPs, such as CLASP1, are nonmotor microtubule-associated proteins that interact with CLIPs (e.g., CLIP170; MIM 179838). CLASP1 is involved in the regulation of microtubule dynamics at the kinetochore and throughout the spindle (Maiato et al., 2003 [PubMed 12837247]). |
| NA | ENSG00000155438 | NIFK | nucleolar protein interacting with the FHA domain of MKI67 | 84365 | This gene encodes a protein that interacts with the forkhead-associated domain of the Ki-67 antigen. The encoded protein may bind RNA and may play a role in mitosis and cell cycle progression. Multiple pseudogenes exist on chromosomes 5, 10, 12, 15, and 19. |
| NA | ENSG00000211460 | TSN | translin | 7247 | This gene encodes a DNA-binding protein which specifically recognizes conserved target sequences at the breakpoint junction of chromosomal translocations. Translin polypeptides form a multimeric structure that is responsible for its DNA-binding activity. Recombination-associated motifs and translin-binding sites are present at recombination hotspots and may serve as indicators of breakpoints in genes which are fused by translocations. These binding activities may play a crucial role in chromosomal translocation in lymphoid neoplasms. This protein encoded by this gene, when complexed with translin-associated protein X, also forms a Mg ion-dependent endoribonuclease that promotes RNA-induced silencing complex (RISC) activation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136732 | GYPC | glycophorin C (Gerbich blood group) | 2995 | Glycophorin C (GYPC) is an integral membrane glycoprotein. It is a minor species carried by human erythrocytes, but plays an important role in regulating the mechanical stability of red cells. A number of glycophorin C mutations have been described. The Gerbich and Yus phenotypes are due to deletion of exon 3 and 2, respectively. The Webb and Duch antigens, also known as glycophorin D, result from single point mutations of the glycophorin C gene. The glycophorin C protein has very little homology with glycophorins A and B. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000136717 | BIN1 | bridging integrator 1 | 274 | This gene encodes several isoforms of a nucleocytoplasmic adaptor protein, one of which was initially identified as a MYC-interacting protein with features of a tumor suppressor. Isoforms that are expressed in the central nervous system may be involved in synaptic vesicle endocytosis and may interact with dynamin, synaptojanin, endophilin, and clathrin. Isoforms that are expressed in muscle and ubiquitously expressed isoforms localize to the cytoplasm and nucleus and activate a caspase-independent apoptotic process. Studies in mouse suggest that this gene plays an important role in cardiac muscle development. Alternate splicing of the gene results in several transcript variants encoding different isoforms. Aberrant splice variants expressed in tumor cell lines have also been described. |
| NA | ENSG00000186684 | CYP27C1 | cytochrome P450 family 27 subfamily C member 1 | 339761 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. |
| NA | ENSG00000163161 | ERCC3 | excision repair cross-complementation group 3 | 2071 | This gene encodes an ATP-dependent DNA helicase that functions in nucleotide excision repair. The encoded protein is a subunit of basal transcription factor 2 (TFIIH) and, therefore, also functions in class II transcription. Mutations in this gene are associated with Xeroderma pigmentosum B, Cockayne’s syndrome, and trichothiodystrophy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169967 | MAP3K2 | mitogen-activated protein kinase kinase kinase 2 | 10746 | The protein encoded by this gene is a member of serine/threonine protein kinase family. This kinase preferentially activates other kinases involved in the MAP kinase signaling pathway. This kinase has been shown to directly phosphorylate and activate Ikappa B kinases, and thus plays a role in NF-kappa B signaling pathway. This kinase has also been found to bind and activate protein kinase C-related kinase 2, which suggests its involvement in a regulated signaling process. |
| NA | ENSG00000136709 | WDR33 | WD repeat domain 33 | 55339 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This gene is highly expressed in testis and the protein is localized to the nucleus. This gene may play important roles in the mechanisms of cytodifferentiation and/or DNA recombination. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000173349 | SFT2D3 | SFT2 domain containing 3 | 84826 | NA |
| NA | ENSG00000144233 | AMMECR1L | AMMECR1 like | 83607 | NA |
| NA | ENSG00000136715 | SAP130 | Sin3A associated protein 130kDa | 79595 | SAP130 is a subunit of the histone deacetylase (see HDAC1; MIM 601241)-dependent SIN3A (MIM 607776) corepressor complex (Fleischer et al., 2003 [PubMed 12724404]). |
| NA | ENSG00000136731 | UGGT1 | UDP-glucose glycoprotein glucosyltransferase 1 | 56886 | UDP-glucose:glycoprotein glucosyltransferase (UGT) is a soluble protein of the endoplasmic reticulum (ER) that selectively reglucosylates unfolded glycoproteins, thus providing quality control for protein transport out of the ER. |
| NA | ENSG00000136720 | HS6ST1 | heparan sulfate 6-O-sulfotransferase 1 | 9394 | The protein encoded by this gene is a member of the heparan sulfate biosynthetic enzyme family. Heparan sulfate biosynthetic enzymes are key components in generating a myriad of distinct heparan sulfate fine structures that carry out multiple biological activities. This enzyme is a type II integral membrane protein and is responsible for 6-O-sulfation of heparan sulfate. This enzyme does not share significant sequence similarity with other known sulfotransferases. A pseudogene located on chromosome 1 has been found for this gene. |
| NA | ENSG00000222014 | WTH3DI | RAB6C-like | 150786 | NA |
| NA | ENSG00000222014 | RAB6C | RAB6C, member RAS oncogene family | 84084 | NA |
| NA | ENSG00000196604 | POTEF | POTE ankyrin domain family member F | 728378 | NA |
| NA | ENSG00000152076 | CCDC74B | coiled-coil domain containing 74B | 91409 | NA |
| NA | ENSG00000136699 | SMPD4 | sphingomyelin phosphodiesterase 4 | 55627 | Sphingomyelinases (EC 3.1.4.12), such as SMPD4, catalyze the hydrolysis of membrane sphingomyelin to form phosphorylcholine and ceramide (Krut et al., 2006 [PubMed 16517606]). |
| NA | ENSG00000152082 | MZT2B | mitotic spindle organizing protein 2B | 80097 | NA |
| NA | ENSG00000136710 | CCDC115 | coiled-coil domain containing 115 | 84317 | The protein encoded by this gene has been observed to localize to the endoplasmic reticulum (ER)-Golgi intermediate compartment (ERGIC) and coat protein complex I (COPI) vesicles in some human cells. The encoded protein shares some homology with the yeast V-ATPase assembly factor Vma22p, and the orthologous protein in mouse promotes cell proliferation and suppresses cell death. Defects in this gene are a cause of congenital disorder OF glycosylation, type IIo in humans. |
| NA | ENSG00000136718 | IMP4 | IMP4 homolog, U3 small nucleolar ribonucleoprotein | 92856 | The protein encoded by this gene, along with IMP3 and MPP10, is part of the 60-80S U3 small nucleolar ribonucleoprotein (U3 snoRNP) complex. This complex is necessary for the early cleavage steps of pre-18S ribosomal RNA processing. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000072135 | PTPN18 | protein tyrosine phosphatase, non-receptor type 18 | 26469 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, the mitotic cycle, and oncogenic transformation. This PTP contains a PEST motif, which often serves as a protein-protein interaction domain, and may be related to protein intracellular half-live. This protein can differentially dephosphorylate autophosphorylated tyrosine kinases that are overexpressed in tumor tissues, and it appears to regulate HER2, a member of the epidermal growth factor receptor family of receptor tyrosine kinases. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000196834 | POTEI | POTE ankyrin domain family member I | 653269 | NA |
| NA | ENSG00000222038 | POTEJ | POTE ankyrin domain family member J | 653781 | NA |
| NA | ENSG00000136002 | ARHGEF4 | Rho guanine nucleotide exchange factor 4 | 50649 | Rho GTPases play a fundamental role in numerous cellular processes that are initiated by extracellular stimuli that work through G protein coupled receptors. The protein encoded by this gene may form complex with G proteins and stimulate Rho-dependent signals. Multiple alternatively spliced transcript variants encoding different isoforms have been found, but the full-length nature of some variants has not been determined. |
| NA | ENSG00000152102 | FAM168B | family with sequence similarity 168 member B | 130074 | NA |
| NA | ENSG00000115762 | PLEKHB2 | pleckstrin homology domain containing B2 | 55041 | NA |
| NA | ENSG00000173272 | MZT2A | mitotic spindle organizing protein 2A | 653784 | NA |
| NA | ENSG00000163040 | CCDC74A | coiled-coil domain containing 74A | 90557 | NA |
| NA | ENSG00000163046 | ANKRD30BL | ankyrin repeat domain 30B-like | 554226 | NA |
| NA | ENSG00000150551 | LYPD1 | LY6/PLAUR domain containing 1 | 116372 | NA |
| NA | ENSG00000152127 | MGAT5 | mannosyl (alpha-1,6-)-glycoprotein beta-1,6-N-acetyl-glucosaminyltransferase | 4249 | The protein encoded by this gene belongs to the glycosyltransferase family. It catalyzes the addition of beta-1,6-N-acetylglucosamine to the alpha-linked mannose of biantennary N-linked oligosaccharides present on the newly synthesized glycoproteins. It is one of the most important enzymes involved in the regulation of the biosynthesis of glycoprotein oligosaccharides. Alterations of the oligosaccharides on cell surface glycoproteins cause significant changes in the adhesive or migratory behavior of a cell. Increase in the activity of this enzyme has been correlated with the progression of invasive malignancies. |
| NA | ENSG00000082258 | CCNT2 | cyclin T2 | 905 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance through the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. This cyclin and its kinase partner CDK9 were found to be subunits of the transcription elongation factor p-TEFb. The p-TEFb complex containing this cyclin was reported to interact with, and act as a negative regulator of human immunodeficiency virus type 1 (HIV-1) Tat protein. A pseudogene of this gene is found on chromosome 1. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000115839 | RAB3GAP1 | RAB3 GTPase activating protein catalytic subunit 1 | 22930 | This gene encodes the catalytic subunit of a Rab GTPase activating protein. The encoded protein forms a heterodimer with a non-catalytic subunit to specifically regulate the activity of members of the Rab3 subfamily of small G proteins. This protein mediates the hydrolysis of GTP bound Rab3 to the GDP bound form. Mutations in this gene are associated with Warburg micro syndrome. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000121988 | ZRANB3 | zinc finger RANBP2-type containing 3 | 84083 | NA |
| NA | ENSG00000076003 | MCM6 | minichromosome maintenance complex component 6 | 4175 | The protein encoded by this gene is one of the highly conserved mini-chromosome maintenance proteins (MCM) that are essential for the initiation of eukaryotic genome replication. The hexameric protein complex formed by the MCM proteins is a key component of the pre-replication complex (pre_RC) and may be involved in the formation of replication forks and in the recruitment of other DNA replication related proteins. The MCM complex consisting of this protein and MCM2, 4 and 7 proteins possesses DNA helicase activity, and may act as a DNA unwinding enzyme. The phosphorylation of the complex by CDC2 kinase reduces the helicase activity, suggesting a role in the regulation of DNA replication. Single nucleotide polymorphisms in the intron regions of this gene are associated with differential transcriptional activation of the promoter of the neighboring lactase gene and, thereby, influence lactose intolerance in early adulthood. |
| NA | ENSG00000115866 | DARS | aspartyl-tRNA synthetase | 1615 | This gene encodes a member of a multienzyme complex that functions in mediating the attachment of amino acids to their cognate tRNAs. The encoded protein ligates L-aspartate to tRNA(Asp). Mutations in this gene have been found in patients showing hypomyelination with brainstem and spinal cord involvement and leg spasticity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000150540 | HNMT | histamine N-methyltransferase | 3176 | In mammals, histamine is metabolized by two major pathways: N(tau)-methylation via histamine N-methyltransferase and oxidative deamination via diamine oxidase. This gene encodes the first enzyme which is found in the cytosol and uses S-adenosyl-L-methionine as the methyl donor. In the mammalian brain, the neurotransmitter activity of histamine is controlled by N(tau)-methylation as diamine oxidase is not found in the central nervous system. A common genetic polymorphism affects the activity levels of this gene product in red blood cells. Multiple alternatively spliced transcript variants that encode different proteins have been found for this gene. |
| NA | ENSG00000144228 | SPOPL | speckle type BTB/POZ protein like | 339745 | NA |
| NA | ENSG00000144227 | NXPH2 | neurexophilin 2 | 11249 | NA |
| NA | ENSG00000121964 | GTDC1 | glycosyltransferase like domain containing 1 | 79712 | NA |
| NA | ENSG00000169554 | ZEB2 | zinc finger E-box binding homeobox 2 | 9839 | The protein encoded by this gene is a member of the Zfh1 family of 2-handed zinc finger/homeodomain proteins. It is located in the nucleus and functions as a DNA-binding transcriptional repressor that interacts with activated SMADs. Mutations in this gene are associated with Hirschsprung disease/Mowat-Wilson syndrome. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000121989 | ACVR2A | activin A receptor type 2A | 92 | This gene encodes a receptor that mediates the functions of activins, which are members of the transforming growth factor-beta (TGF-beta) superfamily involved in diverse biological processes. The encoded protein is a transmembrane serine-threonine kinase receptor which mediates signaling by forming heterodimeric complexes with various combinations of type I and type II receptors and ligands in a cell-specific manner. The encoded type II receptor is primarily involved in ligand-binding and includes an extracellular ligand-binding domain, a transmembrane domain and a cytoplasmic serine-threonine kinase domain. This gene may be associated with susceptibility to preeclampsia, a pregnancy-related disease which can result in maternal and fetal morbidity and mortality. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000115947 | ORC4 | origin recognition complex subunit 4 | 5000 | The origin recognition complex (ORC) is a highly conserved six subunit protein complex essential for the initiation of the DNA replication in eukaryotic cells. Studies in yeast demonstrated that ORC binds specifically to origins of replication and serves as a platform for the assembly of additional initiation factors such as Cdc6 and Mcm proteins. This gene encodes a subunit of the ORC complex. Several alternatively spliced transcript variants, some of which encode the same protein, have been reported for this gene. |
| NA | ENSG00000204406 | MBD5 | methyl-CpG binding domain protein 5 | 55777 | This gene encodes a member of the methyl-CpG-binding domain (MBD) family. The MBD consists of about 70 residues and is the minimal region required for a methyl-CpG-binding protein binding specifically to methylated DNA. In addition to the MBD domain, this protein contains a PWWP domain (Pro-Trp-Trp-Pro motif), which consists of 100-150 amino acids and is found in numerous proteins that are involved in cell division, growth and differentiation. Mutations in this gene cause mental retardation autosomal dominant type 1. Haploinsufficiency of this gene is associated with a syndrome involving microcephaly, intellectual disabilities, severe speech impairment, and seizures. Alternatively spliced transcript variants have been found, but their full-length nature is not determined. |
| NA | ENSG00000135999 | EPC2 | enhancer of polycomb homolog 2 | 26122 | NA |
| NA | ENSG00000168280 | KIF5C | kinesin family member 5C | 3800 | The protein encoded by this gene is a kinesin heavy chain subunit involved in the transport of cargo within the central nervous system. The encoded protein, which acts as a tetramer by associating with another heavy chain and two light chains, interacts with protein kinase CK2. Mutations in this gene have been associated with complex cortical dysplasia with other brain malformations-2. Two transcript variants, one protein-coding and the other non-protein coding, have been found for this gene. |
| NA | ENSG00000150556 | LYPD6B | LY6/PLAUR domain containing 6B | 130576 | NA |
| NA | ENSG00000187123 | LYPD6 | LY6/PLAUR domain containing 6 | 130574 | Members of the LY6 protein family (see SLURP1; MIM 606119), such as LYPD6, have at least one 80-amino acid LU domain that contains 10 conserved cysteines with a defined disulfide-bonding pattern (Zhang et al., 2010 [PubMed 19653121]). |
| NA | ENSG00000115963 | RND3 | Rho family GTPase 3 | 390 | This gene encodes a protein which is a member of the small GTPase protein superfamily. The encoded protein binds only GTP but has no GTPase activity, and appears to act as a negative regulator of cytoskeletal organization leading to loss of adhesion. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000184898 | RBM43 | RNA binding motif protein 43 | 375287 | NA |
| NA | ENSG00000123609 | NMI | N-myc and STAT interactor | 9111 | NMYC interactor (NMI) encodes a protein that interacts with NMYC and CMYC (two members of the oncogene Myc family), and other transcription factors containing a Zip, HLH, or HLH-Zip motif. The NMI protein also interacts with all STATs except STAT2 and augments STAT-mediated transcription in response to cytokines IL2 and IFN-gamma. The NMI mRNA has low expression levels in all human fetal and adult tissues tested except brain and has high expression in cancer cell line-myeloid leukemias. |
| NA | ENSG00000080345 | RIF1 | replication timing regulatory factor 1 | 55183 | This gene encodes a protein that shares homology with the yeast teleomere binding protein, Rap1 interacting factor 1. This protein localizes to aberrant telomeres may be involved in DNA repair. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000183091 | NEB | nebulin | 4703 | This gene encodes nebulin, a giant protein component of the cytoskeletal matrix that coexists with the thick and thin filaments within the sarcomeres of skeletal muscle. In most vertebrates, nebulin accounts for 3 to 4% of the total myofibrillar protein. The encoded protein contains approximately 30-amino acid long modules that can be classified into 7 types and other repeated modules. Protein isoform sizes vary from 600 to 800 kD due to alternative splicing that is tissue-, species-,and developmental stage-specific. Of the 183 exons in the nebulin gene, at least 43 are alternatively spliced, although exons 143 and 144 are not found in the same transcript. Of the several thousand transcript variants predicted for nebulin, the RefSeq Project has decided to create three representative RefSeq records. Mutations in this gene are associated with recessive nemaline myopathy. |
| NA | ENSG00000162980 | ARL5A | ADP ribosylation factor like GTPase 5A | 26225 | The protein encoded by this gene belongs to the ARF family of GTP-binding proteins. With its distinctive nuclear/nucleolar localization and interaction with HP1alpha, the protein is developmentally regulated and may play a role(s) in nuclear dynamics and/or signaling cascades during embryonic development. Alternative splicing results in multiple transcript variants encoding different isoforms. This gene has multiple pseudogenes. |
| NA | ENSG00000182389 | CACNB4 | calcium voltage-gated channel auxiliary subunit beta 4 | 785 | This gene encodes a member of the beta subunit family of voltage-dependent calcium channel complex proteins. Calcium channels mediate the influx of calcium ions into the cell upon membrane polarization and consist of a complex of alpha-1, alpha-2/delta, beta, and gamma subunits in a 1:1:1:1 ratio. Various versions of each of these subunits exist, either expressed from similar genes or the result of alternative splicing. The protein encoded by this locus plays an important role in calcium channel function by modulating G protein inhibition, increasing peak calcium current, controlling the alpha-1 subunit membrane targeting and shifting the voltage dependence of activation and inactivation. Certain mutations in this gene have been associated with idiopathic generalized epilepsy (IGE) and juvenile myoclonic epilepsy (JME). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000115145 | STAM2 | signal transducing adaptor molecule 2 | 10254 | The protein encoded by this gene is closely related to STAM, an adaptor protein involved in the downstream signaling of cytokine receptors, both of which contain a SH3 domain and the immunoreceptor tyrosine-based activation motif (ITAM). Similar to STAM, this protein acts downstream of JAK kinases, and is phosphorylated in response to cytokine stimulation. This protein and STAM thus are thought to exhibit compensatory effects on the signaling pathway downstream of JAK kinases upon cytokine stimulation. |
| NA | ENSG00000157827 | FMNL2 | formin like 2 | 114793 | This gene encodes a formin-related protein. Formin-related proteins have been implicated in morphogenesis, cytokinesis, and cell polarity. Alternatively spliced transcript variants encoding different isoforms have been described but their full-length nature has yet to be determined. |
| NA | ENSG00000196504 | PRPF40A | pre-mRNA processing factor 40 homolog A | 55660 | NA |
| NA | ENSG00000177917 | ARL6IP6 | ADP ribosylation factor like GTPase 6 interacting protein 6 | 151188 | NA |
| NA | ENSG00000177519 | RPRM | reprimo, TP53 dependent G2 arrest mediator candidate | 56475 | NA |
| NA | ENSG00000144278 | GALNT13 | polypeptide N-acetylgalactosaminyltransferase 13 | 114805 | The GALNT13 protein is a member of the UDP-N-acetyl-alpha-D-galactosamine:polypeptide N-acetylgalactosaminyltransferase (GalNAcT; EC 2.4.1.41) family, which initiate O-linked glycosylation of mucins (see MUC3A, MIM 158371) by the initial transfer of N-acetylgalactosamine (GalNAc) with an alpha-linkage to a serine or threonine residue. |
| NA | ENSG00000115159 | GPD2 | glycerol-3-phosphate dehydrogenase 2 | 2820 | The protein encoded by this gene localizes to the inner mitochondrial membrane and catalyzes the conversion of glycerol-3-phosphate to dihydroxyacetone phosphate, using FAD as a cofactor. Along with GDP1, the encoded protein constitutes the glycerol phosphate shuttle, which reoxidizes NADH formed during glycolysis. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000115170 | ACVR1 | activin A receptor type 1 | 90 | Activins are dimeric growth and differentiation factors which belong to the transforming growth factor-beta (TGF-beta) superfamily of structurally related signaling proteins. Activins signal through a heteromeric complex of receptor serine kinases which include at least two type I ( I and IB) and two type II (II and IIB) receptors. These receptors are all transmembrane proteins, composed of a ligand-binding extracellular domain with cysteine-rich region, a transmembrane domain, and a cytoplasmic domain with predicted serine/threonine specificity. Type I receptors are essential for signaling; and type II receptors are required for binding ligands and for expression of type I receptors. Type I and II receptors form a stable complex after ligand binding, resulting in phosphorylation of type I receptors by type II receptors. This gene encodes activin A type I receptor which signals a particular transcriptional response in concert with activin type II receptors. Mutations in this gene are associated with fibrodysplasia ossificans progressive. |
| NA | ENSG00000153237 | CCDC148 | coiled-coil domain containing 148 | 130940 | NA |
| NA | ENSG00000144283 | PKP4 | plakophilin 4 | 8502 | Armadillo-like proteins are characterized by a series of armadillo repeats, first defined in the Drosophila ‘armadillo’ gene product, that are typically 42 to 45 amino acids in length. These proteins can be divided into subfamilies based on their number of repeats, their overall sequence similarity, and the dispersion of the repeats throughout their sequences. Members of the p120(ctn)/plakophilin subfamily of Armadillo-like proteins, including CTNND1, CTNND2, PKP1, PKP2, PKP4, and ARVCF. PKP4 may be a component of desmosomal plaque and other adhesion plaques and is thought to be involved in regulating junctional plaque organization and cadherin function. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000115183 | TANC1 | tetratricopeptide repeat, ankyrin repeat and coiled-coil containing 1 | 85461 | NA |
| NA | ENSG00000196151 | WDSUB1 | WD repeat, sterile alpha motif and U-box domain containing 1 | 151525 | NA |
| NA | ENSG00000153250 | RBMS1 | RNA binding motif, single stranded interacting protein 1 | 5937 | This gene encodes a member of a small family of proteins which bind single stranded DNA/RNA. These proteins are characterized by the presence of two sets of ribonucleoprotein consensus sequence (RNP-CS) that contain conserved motifs, RNP1 and RNP2, originally described in RNA binding proteins, and required for DNA binding. These proteins have been implicated in such diverse functions as DNA replication, gene transcription, cell cycle progression and apoptosis. Several transcript variants, resulting from alternative splicing and encoding different isoforms, have been described. A pseudogene for this locus is found on chromosome 12. |
| NA | ENSG00000136560 | TANK | TRAF family member associated NFKB activator | 10010 | The TRAF (tumor necrosis factor receptor-associated factor) family of proteins associate with and transduce signals from members of the tumor necrosis factor receptor superfamily. The protein encoded by this gene is found in the cytoplasm and can bind to TRAF1, TRAF2, or TRAF3, thereby inhibiting TRAF function by sequestering the TRAFs in a latent state in the cytoplasm. For example, the protein encoded by this gene can block TRAF2 binding to LMP1, the Epstein-Barr virus transforming protein, and inhibit LMP1-mediated NF-kappa-B activation. Three alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000115233 | PSMD14 | proteasome 26S subunit, non-ATPase 14 | 10213 | This gene encodes a component of the 26S proteasome. The 26S proteasome is a large multiprotein complex that catalyzes the degradation of ubiquitinated intracellular proteins. The encoded protein is a component of the 19S regulatory cap complex of the 26S proteasome and mediates substrate deubiquitination. A pseudogene of this gene is also located on the long arm of chromosome 2. |
| NA | ENSG00000115271 | GCA | grancalcin | 25801 | This gene product, grancalcin, is a calcium-binding protein abundant in neutrophils and macrophages. It belongs to the penta-EF-hand subfamily of proteins which includes sorcin, calpain, and ALG-2. Grancalcin localization is dependent upon calcium and magnesium. In the absence of divalent cation, grancalcin localizes to the cytosolic fraction; with magnesium alone, it partitions with the granule fraction; and in the presence of magnesium and calcium, it associates with both the granule and membrane fractions, suggesting a role for grancalcin in granule-membrane fusion and degranulation. |
| NA | ENSG00000182263 | FIGN | fidgetin | 55137 | NA |
| NA | ENSG00000115290 | GRB14 | growth factor receptor bound protein 14 | 2888 | The product of this gene belongs to a small family of adapter proteins that are known to interact with a number of receptor tyrosine kinases and signaling molecules. This gene encodes a growth factor receptor-binding protein that interacts with insulin receptors and insulin-like growth-factor receptors. This protein likely has an inhibitory effect on receptor tyrosine kinase signaling and, in particular, on insulin receptor signaling. This gene may play a role in signaling pathways that regulate growth and metabolism. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000082438 | COBLL1 | cordon-bleu WH2 repeat protein like 1 | 22837 | NA |
| NA | ENSG00000136531 | SCN2A | sodium voltage-gated channel alpha subunit 2 | 6326 | Voltage-gated sodium channels are transmembrane glycoprotein complexes composed of a large alpha subunit with 24 transmembrane domains and one or more regulatory beta subunits. They are responsible for the generation and propagation of action potentials in neurons and muscle. This gene encodes one member of the sodium channel alpha subunit gene family. It is heterogeneously expressed in the brain, and mutations in this gene have been linked to several seizure disorders. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000178662 | CSRNP3 | cysteine and serine rich nuclear protein 3 | 80034 | NA |
| NA | ENSG00000115339 | GALNT3 | polypeptide N-acetylgalactosaminyltransferase 3 | 2591 | This gene encodes UDP-GalNAc transferase 3, a member of the GalNAc-transferases family. This family transfers an N-acetyl galactosamine to the hydroxyl group of a serine or threonine residue in the first step of O-linked oligosaccharide biosynthesis. Individual GalNAc-transferases have distinct activities and initiation of O-glycosylation is regulated by a repertoire of GalNAc-transferases. The protein encoded by this gene is highly homologous to other family members, however the enzymes have different substrate specificities. |
| NA | ENSG00000123607 | TTC21B | tetratricopeptide repeat domain 21B | 79809 | This gene encodes a member of TTC21 family, containing several tetratricopeptide repeat (TPR) domains. This protein is localized to the cilium axoneme, and may play a role in retrograde intraflagellar transport in cilia. Mutations in this gene are associated with various ciliopathies, nephronophthisis 12, and asphyxiating thoracic dystrophy 4. |
| NA | ENSG00000169432 | SCN9A | sodium voltage-gated channel alpha subunit 9 | 6335 | This gene encodes a voltage-gated sodium channel which plays a significant role in nociception signaling. Mutations in this gene have been associated with primary erythermalgia, channelopathy-associated insensitivity to pain, and paroxysmal extreme pain disorder. |
| NA | ENSG00000172318 | B3GALT1 | Beta-1,3-galactosyltransferase 1 | 8708 | This gene is a member of the beta-1,3-galactosyltransferase (beta3GalT) gene family. This family encodes type II membrane-bound glycoproteins with diverse enzymatic functions using different donor substrates (UDP-galactose and UDP-N-acetylglucosamine) and different acceptor sugars (N-acetylglucosamine, galactose, N-acetylgalactosamine). The beta3GalT genes are distantly related to the Drosophila Brainiac gene and have the protein coding sequence contained in a single exon. The beta3GalT proteins also contain conserved sequences not found in the beta4GalT or alpha3GalT proteins. The carbohydrate chains synthesized by these enzymes are designated as type 1, whereas beta4GalT enzymes synthesize type 2 carbohydrate chains. The ratio of type 1:type 2 chains changes during embryogenesis. By sequence similarity, the beta3GalT genes fall into at least two groups: beta3GalT4 and 4 other beta3GalT genes (beta3GalT1-3, beta3GalT5). This gene is expressed exclusively in the brain. The encoded protein shows strict donor substrate specificity for UDP-galactose. |
| NA | ENSG00000198648 | STK39 | serine/threonine kinase 39 | 27347 | This gene encodes a serine/threonine kinase that is thought to function in the cellular stress response pathway. The kinase is activated in response to hypotonic stress, leading to phosphorylation of several cation-chloride-coupled cotransporters. The catalytically active kinase specifically activates the p38 MAP kinase pathway, and its interaction with p38 decreases upon cellular stress, suggesting that this kinase may serve as an intermediate in the response to cellular stress. |
| NA | ENSG00000172292 | CERS6 | ceramide synthase 6 | 253782 | NA |
| NA | ENSG00000138398 | PPIG | peptidylprolyl isomerase G | 9360 | NA |
| NA | ENSG00000154479 | CCDC173 | coiled-coil domain containing 173 | 129881 | NA |
| NA | ENSG00000144362 | PHOSPHO2 | phosphatase, orphan 2 | 493911 | NA |
| NA | ENSG00000138385 | SSB | Sjogren syndrome antigen B | 6741 | The protein encoded by this gene is involved in diverse aspects of RNA metabolism, including binding and protecting poly(U) termini of nascent RNA polymerase III transcripts from exonuclease digestion, processing 5’ and 3’ ends of pre-tRNA precursors, acting as an RNA chaperone, and binding viral RNAs associated with hepatitis C virus. Autoantibodies reacting with this protein are found in the sera of patients with Sjogren syndrome and systemic lupus erythematosus. Alternative promoter usage results in two different transcript variants which encode the same protein. |
| NA | ENSG00000144357 | UBR3 | ubiquitin protein ligase E3 component n-recognin 3 (putative) | 130507 | NA |
| NA | ENSG00000198586 | TLK1 | tousled like kinase 1 | 9874 | The protein encoded by this gene is a serine/threonine kinase that may be involved in the regulation of chromatin assembly. The encoded protein is only active when it is phosphorylated, and this phosphorylation is cell cycle-dependent, with the maximal activity of this protein coming during S phase. The catalytic activity of this protein is diminished by DNA damage and by blockage of DNA replication. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000123600 | METTL8 | methyltransferase like 8 | 79828 | NA |
| NA | ENSG00000115827 | DCAF17 | DDB1 and CUL4 associated factor 17 | 80067 | This gene encodes a nuclear transmembrane protein that associates with cullin 4A/damaged DNA binding protein 1 ubiquitin ligase complex. Mutations in this gene are associated with Woodhouse-Sakati syndrome. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000071967 | CYBRD1 | cytochrome b reductase 1 | 79901 | This gene is a member of the cytochrome b(561) family that encodes an iron-regulated protein. It highly expressed in the duodenal brush border membrane. It has ferric reductase activity and is believed to play a physiological role in dietary iron absorption. |
| NA | ENSG00000077380 | DYNC1I2 | dynein cytoplasmic 1 intermediate chain 2 | 1781 | This gene encodes a member of the dynein intermediate chain family. The encoded protein is a non-catalytic component of the cytoplasmic dynein 1 complex, which acts as a retrograde microtubule motor to transport organelles and vesicles. A pseudogene of this gene is located on chromosome 10. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000115840 | SLC25A12 | solute carrier family 25 member 12 | 8604 | This gene encodes a calcium-binding mitochondrial carrier protein. The encoded protein localizes to the mitochondria and is involved in the exchange of aspartate for glutamate across the inner mitochondrial membrane. Polymorphisms in this gene may be associated with autism, and mutations in this gene may also be a cause of global cerebral hypomyelination. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000091409 | ITGA6 | integrin subunit alpha 6 | 3655 | The gene encodes a member of the integrin alpha chain family of proteins. Integrins are heterodimeric integral membrane proteins composed of an alpha chain and a beta chain that function in cell surface adhesion and signaling. The encoded preproprotein is proteolytically processed to generate light and heavy chains that comprise the alpha 6 subunit. This subunit may associate with a beta 1 or beta 4 subunit to form an integrin that interacts with extracellular matrix proteins including members of the laminin family. The alpha 6 beta 4 integrin may promote tumorigenesis, while the alpha 6 beta 1 integrin may negatively regulate erbB2/HER2 signaling. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000152256 | PDK1 | pyruvate dehydrogenase kinase 1 | 5163 | Pyruvate dehydrogenase (PDH) is a mitochondrial multienzyme complex that catalyzes the oxidative decarboxylation of pyruvate and is one of the major enzymes responsible for the regulation of homeostasis of carbohydrate fuels in mammals. The enzymatic activity is regulated by a phosphorylation/dephosphorylation cycle. Phosphorylation of PDH by a specific pyruvate dehydrogenase kinase (PDK) results in inactivation. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000091436 | ZAK | sterile alpha motif and leucine zipper containing kinase AZK | 51776 | This gene is a member of the MAPKKK family of signal transduction molecules and encodes a protein with an N-terminal kinase catalytic domain, followed by a leucine zipper motif and a sterile-alpha motif (SAM). This magnesium-binding protein forms homodimers and is located in the cytoplasm. The protein mediates gamma radiation signaling leading to cell cycle arrest and activity of this protein plays a role in cell cycle checkpoint regulation in cells. The protein also has pro-apoptotic activity. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000144354 | CDCA7 | cell division cycle associated 7 | 83879 | This gene was identified as a c-Myc responsive gene, and behaves as a direct c-Myc target gene. Overexpression of this gene is found to enhance the transformation of lymphoblastoid cells, and it complements a transformation-defective Myc Box II mutant, suggesting its involvement in c-Myc-mediated cell transformation. Two alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000138430 | OLA1 | Obg-like ATPase 1 | 29789 | NA |
| NA | ENSG00000138433 | CIR1 | corepressor interacting with RBPJ, 1 | 9541 | NA |
| NA | ENSG00000144306 | SCRN3 | secernin 3 | 79634 | NA |
| NA | ENSG00000163328 | GPR155 | G protein-coupled receptor 155 | 151556 | NA |
| NA | ENSG00000128656 | CHN1 | chimerin 1 | 1123 | This gene encodes GTPase-activating protein for ras-related p21-rac and a phorbol ester receptor. It is predominantly expressed in neurons, and plays an important role in neuronal signal-transduction mechanisms. Mutations in this gene are associated with Duane’s retraction syndrome 2 (DURS2). Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000115966 | ATF2 | activating transcription factor 2 | 1386 | This gene encodes a transcription factor that is a member of the leucine zipper family of DNA binding proteins. The encoded protein has been identified as a moonlighting protein based on its ability to perform mechanistically distinct functions This protein binds to the cAMP-responsive element (CRE), an octameric palindrome. It forms a homodimer or a heterodimer with c-Jun and stimulates CRE-dependent transcription. This protein is also a histone acetyltransferase (HAT) that specifically acetylates histones H2B and H4 in vitro; thus it may represent a class of sequence-specific factors that activate transcription by direct effects on chromatin components. The encoded protein may also be involved in cell’s DNA damage response independent of its role in transcriptional regulation. Several alternatively spliced transcript variants have been found for this gene |
| NA | ENSG00000154518 | ATP5G3 | ATP synthase, H+ transporting, mitochondrial Fo complex subunit C3 (subunit 9) | 518 | This gene encodes a subunit of mitochondrial ATP synthase. Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. ATP synthase is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, comprising the proton channel. The catalytic portion of mitochondrial ATP synthase consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and a single representative of the other 3. The proton channel seems to have nine subunits (a, b, c, d, e, f, g, F6 and 8). This gene is one of three genes that encode subunit c of the proton channel. Each of the three genes have distinct mitochondrial import sequences but encode the identical mature protein. Alternatively spliced transcript variants encoding different proteins have been identified. |
| NA | ENSG00000144320 | KIAA1715 | KIAA1715 | 80856 | NA |
| NA | ENSG00000170144 | HNRNPA3 | heterogeneous nuclear ribonucleoprotein A3 | 220988 | NA |
| NA | ENSG00000116044 | NFE2L2 | nuclear factor, erythroid 2 like 2 | 4780 | This gene encodes a transcription factor which is a member of a small family of basic leucine zipper (bZIP) proteins. The encoded transcription factor regulates genes which contain antioxidant response elements (ARE) in their promoters; many of these genes encode proteins involved in response to injury and inflammation which includes the production of free radicals. Multiple transcript variants encoding different isoforms have been characterized for this gene. |
| NA | ENSG00000018510 | AGPS | alkylglycerone phosphate synthase | 8540 | This gene is a member of the FAD-binding oxidoreductase/transferase type 4 family. It encodes a protein that catalyzes the second step of ether lipid biosynthesis in which acyl-dihydroxyacetonephosphate (DHAP) is converted to alkyl-DHAP by the addition of a long chain alcohol and the removal of a long-chain acid anion. The protein is localized to the inner aspect of the peroxisomal membrane and requires FAD as a cofactor. Mutations in this gene have been associated with rhizomelic chondrodysplasia punctata, type 3 and Zellweger syndrome. |
| NA | ENSG00000196659 | TTC30B | tetratricopeptide repeat domain 30B | 150737 | NA |
| NA | ENSG00000197557 | TTC30A | tetratricopeptide repeat domain 30A | 92104 | NA |
| NA | ENSG00000155636 | RBM45 | RNA binding motif protein 45 | 129831 | This gene encodes a member of the RNA recognition motif (RRM)-type RNA-binding family of proteins. This protein exhibits preferential binding to poly(C) RNA. Initial cloning of this gene found that the rat ortholog was dynamically expressed in the developing rat brain. This protein has been localized to inclusion bodies in the brain and spinal cord of amyotrophic lateral sclerosis and Alzheimer’s patients. A pseudogene has been identified on chromosome 8. |
| NA | ENSG00000079156 | OSBPL6 | oxysterol binding protein like 6 | 114880 | This gene encodes a member of the oxysterol-binding protein (OSBP) family, a group of intracellular lipid receptors. Most members contain an N-terminal pleckstrin homology domain and a highly conserved C-terminal OSBP-like sterol-binding domain. Transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000180228 | PRKRA | protein activator of interferon induced protein kinase EIF2AK2 | 8575 | This gene encodes a protein kinase activated by double-stranded RNA which mediates the effects of interferon in response to viral infection. Mutations in this gene have been associated with dystonia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204311 | DFNB59 | deafness, autosomal recessive 59 | 494513 | The protein encoded by this gene is a member of the gasdermin family, a family which is found only in vertebrates. The encoded protein is required for the proper function of auditory pathway neurons. Defects in this gene are a cause of non-syndromic sensorineural deafness autosomal recessive type 59 (DFNB59). |
| NA | ENSG00000079150 | FKBP7 | FK506 binding protein 7 | 51661 | The protein encoded by this gene belongs to the FKBP-type peptidyl-prolyl cis/trans isomerase (PPIase) family. Members of this family exhibit PPIase activity and function as molecular chaperones. A similar protein in mouse is located in the endoplasmic reticulum and binds calcium. |
| NA | ENSG00000116095 | PLEKHA3 | pleckstrin homology domain containing A3 | 65977 | NA |
| NA | ENSG00000155657 | TTN | titin | 7273 | This gene encodes a large abundant protein of striated muscle. The product of this gene is divided into two regions, a N-terminal I-band and a C-terminal A-band. The I-band, which is the elastic part of the molecule, contains two regions of tandem immunoglobulin domains on either side of a PEVK region that is rich in proline, glutamate, valine and lysine. The A-band, which is thought to act as a protein-ruler, contains a mixture of immunoglobulin and fibronectin repeats, and possesses kinase activity. An N-terminal Z-disc region and a C-terminal M-line region bind to the Z-line and M-line of the sarcomere, respectively, so that a single titin molecule spans half the length of a sarcomere. Titin also contains binding sites for muscle associated proteins so it serves as an adhesion template for the assembly of contractile machinery in muscle cells. It has also been identified as a structural protein for chromosomes. Alternative splicing of this gene results in multiple transcript variants. Considerable variability exists in the I-band, the M-line and the Z-disc regions of titin. Variability in the I-band region contributes to the differences in elasticity of different titin isoforms and, therefore, to the differences in elasticity of different muscle types. Mutations in this gene are associated with familial hypertrophic cardiomyopathy 9, and autoantibodies to titin are produced in patients with the autoimmune disease scleroderma. |
| NA | ENSG00000163492 | CCDC141 | coiled-coil domain containing 141 | 285025 | NA |
| NA | ENSG00000187231 | SESTD1 | SEC14 and spectrin domain containing 1 | 91404 | NA |
| NA | ENSG00000163510 | CWC22 | CWC22 homolog, spliceosome-associated protein | 57703 | NA |
| NA | ENSG00000170035 | UBE2E3 | ubiquitin conjugating enzyme E2 E3 | 10477 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. The encoded protein shares 100% sequence identity with the mouse and rat counterparts, which indicates that this enzyme is highly conserved in eukaryotes. Multiple alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000138434 | SSFA2 | sperm specific antigen 2 | 6744 | NA |
| NA | ENSG00000077232 | DNAJC10 | DnaJ heat shock protein family (Hsp40) member C10 | 54431 | This gene encodes an endoplasmic reticulum co-chaperone which is part of the endoplasmic reticulum-associated degradation complex involved in recognizing and degrading misfolded proteins. The encoded protein reduces incorrect disulfide bonds in misfolded glycoproteins. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000061676 | NCKAP1 | NCK associated protein 1 | 10787 | NA |
| NA | ENSG00000163002 | NUP35 | nucleoporin 35kDa | 129401 | This gene encodes a member of the nucleoporin family. The encoded protein contains two membrane binding regions, is localized to the nuclear rim, and is part of the nuclear pore complex. All molecules entering or leaving the nucleus either diffuse through or are actively transported by the nuclear pore complex. Alternative splicing results in multiple transcript variants. Pseudogenes of this gene have been defined on chromosomes 7 and 10. |
| NA | ENSG00000065548 | ZC3H15 | zinc finger CCCH-type containing 15 | 55854 | NA |
| NA | ENSG00000138448 | ITGAV | integrin subunit alpha V | 3685 | The product of this gene belongs to the integrin alpha chain family. Integrins are heterodimeric integral membrane proteins composed of an alpha subunit and a beta subunit that function in cell surface adhesion and signaling. The encoded preproprotein is proteolytically processed to generate light and heavy chains that comprise the alpha V subunit. This subunit associates with beta 1, beta 3, beta 5, beta 6 and beta 8 subunits. The heterodimer consisting of alpha V and beta 3 subunits is also known as the vitronectin receptor. This integrin may regulate angiogenesis and cancer progression. Alternative splicing results in multiple transcript variants. Note that the integrin alpha 5 and integrin alpha V subunits are encoded by distinct genes. |
| NA | ENSG00000144369 | FAM171B | family with sequence similarity 171 member B | 165215 | NA |
| NA | ENSG00000003436 | TFPI | tissue factor pathway inhibitor | 7035 | This gene encodes a protease inhibitor that regulates the tissue factor (TF)-dependent pathway of blood coagulation. The coagulation process initiates with the formation of a factor VIIa-TF complex, which proteolytically activates additional proteases (factors IX and X) and ultimately leads to the formation of a fibrin clot. The product of this gene inhibits the activated factor X and VIIa-TF proteases in an autoregulatory loop. The encoded protein is glycosylated and predominantly found in the vascular endothelium and plasma in both free forms and complexed with plasma lipoproteins. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been confirmed. |
| NA | ENSG00000144366 | GULP1 | GULP, engulfment adaptor PTB domain containing 1 | 51454 | The protein encoded by this gene is an adapter protein necessary for the engulfment of apoptotic cells by phagocytes. Several transcript variants, some protein coding and some thought not to be protein coding, have been found for this gene. |
| NA | ENSG00000115368 | WDR75 | WD repeat domain 75 | 84128 | NA |
| NA | ENSG00000138381 | ASNSD1 | asparagine synthetase domain containing 1 | 54529 | NA |
| NA | ENSG00000151687 | ANKAR | ankyrin and armadillo repeat containing | 150709 | NA |
| NA | ENSG00000128694 | OSGEPL1 | O-sialoglycoprotein endopeptidase-like 1 | 64172 | NA |
| NA | ENSG00000128699 | ORMDL1 | ORMDL sphingolipid biosynthesis regulator 1 | 94101 | NA |
| NA | ENSG00000064933 | PMS1 | PMS1 homolog 1, mismatch repair system component | 5378 | This gene encodes a protein belonging to the DNA mismatch repair mutL/hexB family. This protein is thought to be involved in the repair of DNA mismatches, and it can form heterodimers with MLH1, a known DNA mismatch repair protein. Mutations in this gene cause hereditary nonpolyposis colorectal cancer type 3 (HNPCC3) either alone or in combination with mutations in other genes involved in the HNPCC phenotype, which is also known as Lynch syndrome. |
| NA | ENSG00000151690 | MFSD6 | major facilitator superfamily domain containing 6 | 54842 | NA |
| NA | ENSG00000189362 | NEMP2 | nuclear envelope integral membrane protein 2 | 100131211 | NA |
| NA | ENSG00000115419 | GLS | glutaminase | 2744 | This gene encodes the K-type mitochondrial glutaminase. The encoded protein is an phosphate-activated amidohydrolase that catalyzes the hydrolysis of glutamine to glutamate and ammonia. This protein is primarily expressed in the brain and kidney plays an essential role in generating energy for metabolism, synthesizing the brain neurotransmitter glutamate and maintaining acid-base balance in the kidney. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000128641 | MYO1B | myosin IB | 4430 | NA |
| NA | ENSG00000173559 | NABP1 | nucleic acid binding protein 1 | 64859 | Single-stranded DNA (ssDNA)-binding proteins, such as OBFC2A, are ubiquitous and essential for a variety of DNA metabolic processes, including replication, recombination, and detection and repair of damage (Richard et al., 2008 [PubMed 18449195]). |
| NA | ENSG00000144339 | TMEFF2 | transmembrane protein with EGF like and two follistatin like domains 2 | 23671 | This gene encodes a member of the tomoregulin family of transmembrane proteins. This protein has been shown to function as both an oncogene and a tumor suppressor depending on the cellular context and may regulate prostate cancer cell invasion. Multiple soluble forms of this protein have been identified that arise from both an alternative splice variant and ectodomain shedding. Additionally, this gene has been found to be hypermethylated in multiple cancer types. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196950 | SLC39A10 | solute carrier family 39 member 10 | 57181 | Zinc is an essential cofactor for hundreds of enzymes. It is involved in protein, nucleic acid, carbohydrate, and lipid metabolism, as well as in the control of gene transcription, growth, development, and differentiation. SLC39A10 belongs to a subfamily of proteins that show structural characteristics of zinc transporters (Taylor and Nicholson, 2003 [PubMed 12659941]). |
| NA | ENSG00000081320 | STK17B | serine/threonine kinase 17b | 9262 | NA |
| NA | ENSG00000138411 | HECW2 | HECT, C2 and WW domain containing E3 ubiquitin protein ligase 2 | 57520 | NA |
| NA | ENSG00000144395 | CCDC150 | coiled-coil domain containing 150 | 284992 | NA |
| NA | ENSG00000119041 | GTF3C3 | general transcription factor IIIC subunit 3 | 9330 | The protein encoded by this gene is part of the TFIIIC2 complex, which binds to the promoters of small nuclear and cytoplasmic RNA genes in order to recruit RNA polymerase III. The TFIIIC2 complex is composed of six subunits. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197121 | PGAP1 | post-GPI attachment to proteins 1 | 80055 | The protein encoded by this gene functions early in the glycosylphosphatidylinositol (GPI) biosynthetic pathway, catalyzing the inositol deacylation of GPI. The encoded protein is required for the production of GPI that can attach to proteins, and this may be an important factor in the transport of GPI-anchored proteins from the endoplasmic reticulum to the Golgi. Defects in this gene are a cause of mental retardation, autosomal recessive 42. |
| NA | ENSG00000115524 | SF3B1 | splicing factor 3b subunit 1 | 23451 | This gene encodes subunit 1 of the splicing factor 3b protein complex. Splicing factor 3b, together with splicing factor 3a and a 12S RNA unit, forms the U2 small nuclear ribonucleoproteins complex (U2 snRNP). The splicing factor 3b/3a complex binds pre-mRNA upstream of the intron’s branch site in a sequence independent manner and may anchor the U2 snRNP to the pre-mRNA. Splicing factor 3b is also a component of the minor U12-type spliceosome. The carboxy-terminal two-thirds of subunit 1 have 22 non-identical, tandem HEAT repeats that form rod-like, helical structures. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000115520 | COQ10B | coenzyme Q10B | 80219 | NA |
| NA | ENSG00000144381 | HSPD1 | heat shock protein family D (Hsp60) member 1 | 3329 | This gene encodes a member of the chaperonin family. The encoded mitochondrial protein may function as a signaling molecule in the innate immune system. This protein is essential for the folding and assembly of newly imported proteins in the mitochondria. This gene is adjacent to a related family member and the region between the 2 genes functions as a bidirectional promoter. Several pseudogenes have been associated with this gene. Two transcript variants encoding the same protein have been identified for this gene. Mutations associated with this gene cause autosomal recessive spastic paraplegia 13. |
| NA | ENSG00000115540 | MOB4 | MOB family member 4, phocein | 25843 | This gene was identified based on its similarity with the mouse counterpart. Studies of the mouse counterpart suggest that the expression of this gene may be regulated during oocyte maturation and preimplantation following zygotic gene activation. Alternatively spliced transcript variants encoding distinct isoforms have been observed. Naturally occurring read-through transcription occurs between this locus and the neighboring locus HSPE1. |
| NA | ENSG00000247626 | MARS2 | methionyl-tRNA synthetase 2, mitochondrial | 92935 | This gene produces a mitochondrial methionyl-tRNA synthetase protein that is encoded by the nuclear genome and imported to the mitochondrion. This protein likely functions as a monomer and is predicted to localize to the mitochondrial matrix. Mutations in this gene are associated with the autosomal recessive neurodegenerative disease spastic ataxia-3 (SPAX3). |
| NA | ENSG00000178074 | C2orf69 | chromosome 2 open reading frame 69 | 205327 | NA |
| NA | ENSG00000162971 | TYW5 | tRNA-yW synthesizing protein 5 | 129450 | NA |
| NA | ENSG00000162972 | C2orf47 | chromosome 2 open reading frame 47 | 79568 | NA |
| NA | ENSG00000155729 | KCTD18 | potassium channel tetramerization domain containing 18 | 130535 | NA |
| NA | ENSG00000163535 | SGO2 | shugoshin 2 | 151246 | NA |
| NA | ENSG00000138356 | AOX1 | aldehyde oxidase 1 | 316 | Aldehyde oxidase produces hydrogen peroxide and, under certain conditions, can catalyze the formation of superoxide. Aldehyde oxidase is a candidate gene for amyotrophic lateral sclerosis. |
| NA | ENSG00000082153 | BZW1 | basic leucine zipper and W2 domains 1 | 9689 | NA |
| NA | ENSG00000013441 | CLK1 | CDC like kinase 1 | 1195 | This gene encodes a member of the CDC2-like (or LAMMER) family of dual specificity protein kinases. In the nucleus, the encoded protein phosphorylates serine/arginine-rich proteins involved in pre-mRNA processing, releasing them into the nucleoplasm. The choice of splice sites during pre-mRNA processing may be regulated by the concentration of transacting factors, including serine/arginine rich proteins. Therefore, the encoded protein may play an indirect role in governing splice site selection. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000240344 | PPIL3 | peptidylprolyl isomerase like 3 | 53938 | This gene encodes a member of the cyclophilin family. Cyclophilins catalyze the cis-trans isomerization of peptidylprolyl imide bonds in oligopeptides. They have been proposed to act either as catalysts or as molecular chaperones in protein-folding events. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000115942 | ORC2 | origin recognition complex subunit 2 | 4999 | The origin recognition complex (ORC) is a highly conserved six subunits protein complex essential for the initiation of the DNA replication in eukaryotic cells. Studies in yeast demonstrated that ORC binds specifically to origins of replication and serves as a platform for the assembly of additional initiation factors such as Cdc6 and Mcm proteins. The protein encoded by this gene is a subunit of the ORC complex. This protein forms a core complex with ORC3, -4, and -5. It also interacts with CDC45 and MCM10, which are proteins known to be important for the initiation of DNA replication. This protein has been demonstrated to specifically associate with the origin of replication of Epstein-Barr virus in human cells, and is thought to be required for DNA replication from viral origin of replication. Alternatively spliced transcript variants have been found, one of which is a nonsense-mediated mRNA decay candidate. |
| NA | ENSG00000155744 | FAM126B | family with sequence similarity 126 member B | 285172 | NA |
| NA | ENSG00000119013 | NDUFB3 | NADH:ubiquinone oxidoreductase subunit B3 | 4709 | This gene encodes an accessory subunit of the mitochondrial membrane respiratory chain NADH dehydrogenase (Complex I) which is the first enzyme in the electron transport chain of mitochondria. This protein localizes to the inner membrane of the mitochondrion as a single-pass membrane protein. Mutations in this gene contribute to mitochondrial complex 1 deficiency. Alternative splicing results in multiple transcript variants encoding the same protein. Humans have multiple pseudogenes of this gene. |
| NA | ENSG00000003402 | CFLAR | CASP8 and FADD like apoptosis regulator | 8837 | The protein encoded by this gene is a regulator of apoptosis and is structurally similar to caspase-8. However, the encoded protein lacks caspase activity and appears to be itself cleaved into two peptides by caspase-8. Several transcript variants encoding different isoforms have been found for this gene, and partial evidence for several more variants exists. |
| NA | ENSG00000003400 | CASP10 | caspase 10 | 843 | This gene encodes a protein which is a member of the cysteine-aspartic acid protease (caspase) family. Sequential activation of caspases plays a central role in the execution-phase of cell apoptosis. Caspases exist as inactive proenzymes which undergo proteolytic processing at conserved aspartic residues to produce two subunits, large and small, that dimerize to form the active enzyme. This protein cleaves and activates caspases 3 and 7, and the protein itself is processed by caspase 8. Mutations in this gene are associated with type IIA autoimmune lymphoproliferative syndrome, non-Hodgkin lymphoma and gastric cancer. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000064012 | CASP8 | caspase 8 | 841 | This gene encodes a member of the cysteine-aspartic acid protease (caspase) family. Sequential activation of caspases plays a central role in the execution-phase of cell apoptosis. Caspases exist as inactive proenzymes composed of a prodomain, a large protease subunit, and a small protease subunit. Activation of caspases requires proteolytic processing at conserved internal aspartic residues to generate a heterodimeric enzyme consisting of the large and small subunits. This protein is involved in the programmed cell death induced by Fas and various apoptotic stimuli. The N-terminal FADD-like death effector domain of this protein suggests that it may interact with Fas-interacting protein FADD. This protein was detected in the insoluble fraction of the affected brain region from Huntington disease patients but not in those from normal controls, which implicated the role in neurodegenerative diseases. Many alternatively spliced transcript variants encoding different isoforms have been described, although not all variants have had their full-length sequences determined. |
| NA | ENSG00000115993 | TRAK2 | trafficking protein, kinesin binding 2 | 66008 | NA |
| NA | ENSG00000082146 | STRADB | STE20-related kinase adaptor beta | 55437 | This gene encodes a protein that belongs to the serine/threonine protein kinase STE20 subfamily. One of the active site residues in the protein kinase domain of this protein is altered, and it is thus a pseudokinase. This protein is a component of a complex involved in the activation of serine/threonine kinase 11, a master kinase that regulates cell polarity and energy-generating metabolism. This complex regulates the relocation of this kinase from the nucleus to the cytoplasm, and it is essential for G1 cell cycle arrest mediated by this kinase. The protein encoded by this gene can also interact with the X chromosome-linked inhibitor of apoptosis protein, and this interaction enhances the anti-apoptotic activity of this protein via the JNK1 signal transduction pathway. Two pseudogenes, located on chromosomes 1 and 7, have been found for this gene. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000155755 | TMEM237 | transmembrane protein 237 | 65062 | The protein encoded by this gene is a tetraspanin protein that is thought to be involved in WNT signaling. Defects in this gene are a cause of Joubert syndrome-14. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000003393 | ALS2 | ALS2, alsin Rho guanine nucleotide exchange factor | 57679 | The protein encoded by this gene contains an ATS1/RCC1-like domain, a RhoGEF domain, and a vacuolar protein sorting 9 (VPS9) domain, all of which are guanine-nucleotide exchange factors that activate members of the Ras superfamily of GTPases. The protein functions as a guanine nucleotide exchange factor for the small GTPase RAB5. The protein localizes with RAB5 on early endosomal compartments, and functions as a modulator for endosomal dynamics. Mutations in this gene result in several forms of juvenile lateral sclerosis and infantile-onset ascending spastic paralysis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000155760 | FZD7 | frizzled class receptor 7 | 8324 | Members of the ‘frizzled’ gene family encode 7-transmembrane domain proteins that are receptors for Wnt signaling proteins. The FZD7 protein contains an N-terminal signal sequence, 10 cysteine residues typical of the cysteine-rich extracellular domain of Fz family members, 7 putative transmembrane domains, and an intracellular C-terminal tail with a PDZ domain-binding motif. FZD7 gene expression may downregulate APC function and enhance beta-catenin-mediated signals in poorly differentiated human esophageal carcinomas. |
| NA | ENSG00000116030 | SUMO1 | small ubiquitin-like modifier 1 | 7341 | This gene encodes a protein that is a member of the SUMO (small ubiquitin-like modifier) protein family. It functions in a manner similar to ubiquitin in that it is bound to target proteins as part of a post-translational modification system. However, unlike ubiquitin which targets proteins for degradation, this protein is involved in a variety of cellular processes, such as nuclear transport, transcriptional regulation, apoptosis, and protein stability. It is not active until the last four amino acids of the carboxy-terminus have been cleaved off. Several pseudogenes have been reported for this gene. Alternate transcriptional splice variants encoding different isoforms have been characterized. |
| TRUE | ENSG00000267889 | NA | NA | NA | NA |
| NA | ENSG00000055044 | NOP58 | NOP58 ribonucleoprotein | 51602 | The protein encoded by this gene is a core component of box C/D small nucleolar ribonucleoproteins. Some box C/D small nucleolar RNAs (snoRNAs), such as U3, U8, and U14, are dependent upon the encoded protein for their synthesis. This protein is SUMOylated, which is necessary for high affinity binding to snoRNAs. |
| NA | ENSG00000204217 | BMPR2 | bone morphogenetic protein receptor type II | 659 | This gene encodes a member of the bone morphogenetic protein (BMP) receptor family of transmembrane serine/threonine kinases. The ligands of this receptor are BMPs, which are members of the TGF-beta superfamily. BMPs are involved in endochondral bone formation and embryogenesis. These proteins transduce their signals through the formation of heteromeric complexes of two different types of serine (threonine) kinase receptors: type I receptors of about 50-55 kD and type II receptors of about 70-80 kD. Type II receptors bind ligands in the absence of type I receptors, but they require their respective type I receptors for signaling, whereas type I receptors require their respective type II receptors for ligand binding. Mutations in this gene have been associated with primary pulmonary hypertension, both familial and fenfluramine-associated, and with pulmonary venoocclusive disease. |
| NA | ENSG00000138439 | FAM117B | family with sequence similarity 117 member B | 150864 | NA |
| NA | ENSG00000163596 | ICA1L | islet cell autoantigen 1 like | 130026 | NA |
| NA | ENSG00000138442 | WDR12 | WD repeat domain 12 | 55759 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This protein is highly similar to the mouse WD repeat domain 12 protein at the amino acid level. The protein encoded by this gene is a component of a nucleolar protein complex that affects maturation of the large ribosomal subunit. |
| NA | ENSG00000138380 | CARF | calcium responsive transcription factor | 79800 | NA |
| NA | ENSG00000144426 | NBEAL1 | neurobeachin like 1 | 65065 | NA |
| NA | ENSG00000119004 | CYP20A1 | cytochrome P450 family 20 subfamily A member 1 | 57404 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases that catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. This protein lacks one amino acid of the conserved heme binding site. It also lacks the conserved I-helix motif AGX(D,E)T, suggesting that its substrate may carry its own oxygen. |
| NA | ENSG00000138443 | ABI2 | abl-interactor 2 | 10152 | NA |
| NA | ENSG00000173166 | RAPH1 | Ras association (RalGDS/AF-6) and pleckstrin homology domains 1 | 65059 | NA |
| NA | ENSG00000116117 | PARD3B | par-3 family cell polarity regulator beta | 117583 | NA |
| NA | ENSG00000114933 | INO80D | INO80 complex subunit D | 54891 | NA |
| NA | ENSG00000023228 | NDUFS1 | NADH:ubiquinone oxidoreductase core subunit S1 | 4719 | The protein encoded by this gene belongs to the complex I 75 kDa subunit family. Mammalian complex I is composed of 45 different subunits. It locates at the mitochondrial inner membrane. This protein has NADH dehydrogenase activity and oxidoreductase activity. It transfers electrons from NADH to the respiratory chain. The immediate electron acceptor for the enzyme is believed to be ubiquinone. This protein is the largest subunit of complex I and it is a component of the iron-sulfur (IP) fragment of the enzyme. It may form part of the active site crevice where NADH is oxidized. Mutations in this gene are associated with complex I deficiency. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000114942 | EEF1B2 | eukaryotic translation elongation factor 1 beta 2 | 1933 | This gene encodes a translation elongation factor. The protein is a guanine nucleotide exchange factor involved in the transfer of aminoacylated tRNAs to the ribosome. Alternative splicing results in three transcript variants which differ only in the 5’ UTR. |
| NA | ENSG00000183671 | GPR1 | G protein-coupled receptor 1 | 2825 | NA |
| NA | ENSG00000114948 | ADAM23 | ADAM metallopeptidase domain 23 | 8745 | This gene encodes a member of the ADAM (a disintegrin and metalloprotease domain) family. Members of this family are membrane-anchored proteins structurally related to snake venom disintegrins and have been implicated in a variety of biological processes involving cell-cell and cell-matrix interactions, including fertilization, muscle development, and neurogenesis. It is reported that inactivation of this gene is associated with tumorigenesis in human cancers. |
| NA | ENSG00000138400 | MDH1B | malate dehydrogenase 1B | 130752 | NA |
| NA | ENSG00000118246 | FASTKD2 | FAST kinase domains 2 | 22868 | This gene encodes a protein that is localized in the mitochondrial inner compartment and that may play a role in mitochondrial apoptosis. Nonsense mutations have been reported to result in cytochrome c oxidase deficiency. |
| NA | ENSG00000118263 | KLF7 | Kruppel-like factor 7 (ubiquitous) | 8609 | The protein encoded by this gene is a member of the Kruppel-like transcriptional regulator family. Members in this family regulate cell proliferation, differentiation and survival and contain three C2H2 zinc fingers at the C-terminus that mediate binding to GC-rich sites. This protein may contribute to the progression of type 2 diabetes by inhibiting insulin expression and secretion in pancreatic beta-cells and by deregulating adipocytokine secretion in adipocytes. A pseudogene of this gene is located on the long arm of chromosome 3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000118260 | CREB1 | cAMP responsive element binding protein 1 | 1385 | This gene encodes a transcription factor that is a member of the leucine zipper family of DNA binding proteins. This protein binds as a homodimer to the cAMP-responsive element, an octameric palindrome. The protein is phosphorylated by several protein kinases, and induces transcription of genes in response to hormonal stimulation of the cAMP pathway. Alternate splicing of this gene results in several transcript variants encoding different isoforms. |
| NA | ENSG00000144401 | METTL21A | methyltransferase like 21A | 151194 | NA |
| NA | ENSG00000163249 | CCNYL1 | cyclin Y like 1 | 151195 | NA |
| NA | ENSG00000118231 | CRYGD | crystallin gamma D | 1421 | Crystallins are separated into two classes: taxon-specific, or enzyme, and ubiquitous. The latter class constitutes the major proteins of vertebrate eye lens and maintains the transparency and refractive index of the lens. Since lens central fiber cells lose their nuclei during development, these crystallins are made and then retained throughout life, making them extremely stable proteins. Mammalian lens crystallins are divided into alpha, beta, and gamma families; beta and gamma crystallins are also considered as a superfamily. Alpha and beta families are further divided into acidic and basic groups. Seven protein regions exist in crystallins: four homologous motifs, a connecting peptide, and N- and C-terminal extensions. Gamma-crystallins are a homogeneous group of highly symmetrical, monomeric proteins typically lacking connecting peptides and terminal extensions. They are differentially regulated after early development. Four gamma-crystallin genes (gamma-A through gamma-D) and three pseudogenes (gamma-E, gamma-F, gamma-G) are tandemly organized in a genomic segment as a gene cluster. Whether due to aging or mutations in specific genes, gamma-crystallins have been involved in cataract formation. |
| NA | ENSG00000188674 | C2orf80 | chromosome 2 open reading frame 80 | 389073 | NA |
| NA | ENSG00000138413 | IDH1 | isocitrate dehydrogenase 1 (NADP+) | 3417 | Isocitrate dehydrogenases catalyze the oxidative decarboxylation of isocitrate to 2-oxoglutarate. These enzymes belong to two distinct subclasses, one of which utilizes NAD(+) as the electron acceptor and the other NADP(+). Five isocitrate dehydrogenases have been reported: three NAD(+)-dependent isocitrate dehydrogenases, which localize to the mitochondrial matrix, and two NADP(+)-dependent isocitrate dehydrogenases, one of which is mitochondrial and the other predominantly cytosolic. Each NADP(+)-dependent isozyme is a homodimer. The protein encoded by this gene is the NADP(+)-dependent isocitrate dehydrogenase found in the cytoplasm and peroxisomes. It contains the PTS-1 peroxisomal targeting signal sequence. The presence of this enzyme in peroxisomes suggests roles in the regeneration of NADPH for intraperoxisomal reductions, such as the conversion of 2, 4-dienoyl-CoAs to 3-enoyl-CoAs, as well as in peroxisomal reactions that consume 2-oxoglutarate, namely the alpha-hydroxylation of phytanic acid. The cytoplasmic enzyme serves a significant role in cytoplasmic NADPH production. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000115020 | PIKFYVE | phosphoinositide kinase, FYVE-type zinc finger containing | 200576 | Phosphorylated derivatives of phosphatidylinositol (PtdIns) regulate cytoskeletal functions, membrane trafficking, and receptor signaling by recruiting protein complexes to cell- and endosomal-membranes. Humans have multiple PtdIns proteins that differ by the degree and position of phosphorylation of the inositol ring. This gene encodes an enzyme (PIKfyve; also known as phosphatidylinositol-3-phosphate 5-kinase type III or PIPKIII) that phosphorylates the D-5 position in PtdIns and phosphatidylinositol-3-phosphate (PtdIns3P) to make PtdIns5P and PtdIns(3,5)biphosphate. The D-5 position also can be phosphorylated by type I PtdIns4P-5-kinases (PIP5Ks) that are encoded by distinct genes and preferentially phosphorylate D-4 phosphorylated PtdIns. In contrast, PIKfyve preferentially phosphorylates D-3 phosphorylated PtdIns. In addition to being a lipid kinase, PIKfyve also has protein kinase activity. PIKfyve regulates endomembrane homeostasis and plays a role in the biogenesis of endosome carrier vesicles from early endosomes. Mutations in this gene cause corneal fleck dystrophy (CFD); an autosomal dominant disorder characterized by numerous small white flecks present in all layers of the corneal stroma. Histologically, these flecks appear to be keratocytes distended with lipid and mucopolysaccharide filled intracytoplasmic vacuoles. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000078018 | MAP2 | microtubule associated protein 2 | 4133 | This gene encodes a protein that belongs to the microtubule-associated protein family. The proteins of this family are thought to be involved in microtubule assembly, which is an essential step in neurogenesis. The products of similar genes in rat and mouse are neuron-specific cytoskeletal proteins that are enriched in dentrites, implicating a role in determining and stabilizing dentritic shape during neuron development. A number of alternatively spliced variants encoding distinct isoforms have been described. |
| NA | ENSG00000197713 | RPE | ribulose-5-phosphate-3-epimerase | 6120 | NA |
| NA | ENSG00000144445 | KANSL1L | KAT8 regulatory NSL complex subunit 1 like | 151050 | NA |
| NA | ENSG00000115365 | LANCL1 | LanC like 1 | 10314 | This gene encodes a loosely associated peripheral membrane protein related to the LanC family of bacterial membrane-associated proteins involved in the biosynthesis of antimicrobial peptides. This protein may play a role as a peptide-modifying enzyme component in eukaryotic cells. Previously considered a member of the G-protein-coupled receptor superfamily, this protein is now in the LanC family. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000021826 | CPS1 | carbamoyl-phosphate synthase 1 | 1373 | The mitochondrial enzyme encoded by this gene catalyzes synthesis of carbamoyl phosphate from ammonia and bicarbonate. This reaction is the first committed step of the urea cycle, which is important in the removal of excess urea from cells. The encoded protein may also represent a core mitochondrial nucleoid protein. Three transcript variants encoding different isoforms have been found for this gene. The shortest isoform may not be localized to the mitochondrion. Mutations in this gene have been associated with carbamoyl phosphate synthetase deficiency, susceptibility to persistent pulmonary hypertension, and susceptibility to venoocclusive disease after bone marrow transplantation. |
| NA | ENSG00000030419 | IKZF2 | IKAROS family zinc finger 2 | 22807 | This gene encodes a member of the Ikaros family of zinc-finger proteins. Three members of this protein family (Ikaros, Aiolos and Helios) are hematopoietic-specific transcription factors involved in the regulation of lymphocyte development. This protein forms homo- or hetero-dimers with other Ikaros family members, and is thought to function predominantly in early hematopoietic development. Multiple transcript variants encoding different isoforms have been found for this gene, but the biological validity of some variants has not been determined. |
| NA | ENSG00000144451 | SPAG16 | sperm associated antigen 16 | 79582 | Cilia and flagella are comprised of a microtubular backbone, the axoneme, which is organized by the basal body and surrounded by plasma membrane. SPAG16 encodes 2 major proteins that associate with the axoneme of sperm tail and the nucleus of postmeiotic germ cells, respectively (Zhang et al., 2007 [PubMed 17699735]). |
| NA | ENSG00000138363 | ATIC | 5-aminoimidazole-4-carboxamide ribonucleotide formyltransferase/IMP cyclohydrolase | 471 | This gene encodes a bifunctional protein that catalyzes the last two steps of the de novo purine biosynthetic pathway. The N-terminal domain has phosphoribosylaminoimidazolecarboxamide formyltransferase activity, and the C-terminal domain has IMP cyclohydrolase activity. A mutation in this gene results in AICA-ribosiduria. |
| NA | ENSG00000115414 | FN1 | fibronectin 1 | 2335 | This gene encodes fibronectin, a glycoprotein present in a soluble dimeric form in plasma, and in a dimeric or multimeric form at the cell surface and in extracellular matrix. The encoded preproprotein is proteolytically processed to generate the mature protein. Fibronectin is involved in cell adhesion and migration processes including embryogenesis, wound healing, blood coagulation, host defense, and metastasis. The gene has three regions subject to alternative splicing, with the potential to produce 20 different transcript variants, at least one of which encodes an isoform that undergoes proteolytic processing. The full-length nature of some variants has not been determined. |
| NA | ENSG00000118242 | MREG | melanoregulin | 55686 | NA |
| NA | ENSG00000115425 | PECR | peroxisomal trans-2-enoyl-CoA reductase | 55825 | NA |
| NA | ENSG00000163449 | TMEM169 | transmembrane protein 169 | 92691 | NA |
| NA | ENSG00000079246 | XRCC5 | X-ray repair complementing defective repair in Chinese hamster cells 5 | 7520 | The protein encoded by this gene is the 80-kilodalton subunit of the Ku heterodimer protein which is also known as ATP-dependant DNA helicase II or DNA repair protein XRCC5. Ku is the DNA-binding component of the DNA-dependent protein kinase, and it functions together with the DNA ligase IV-XRCC4 complex in the repair of DNA double-strand break by non-homologous end joining and the completion of V(D)J recombination events. This gene functionally complements Chinese hamster xrs-6, a mutant defective in DNA double-strand break repair and in ability to undergo V(D)J recombination. A rare microsatellite polymorphism in this gene is associated with cancer in patients of varying radiosensitivity. |
| NA | ENSG00000138375 | SMARCAL1 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a-like 1 | 50485 | The protein encoded by this gene is a member of the SWI/SNF family of proteins. Members of this family have helicase and ATPase activities and are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The encoded protein shows sequence similarity to the E. coli RNA polymerase-binding protein HepA. Mutations in this gene are a cause of Schimke immunoosseous dysplasia (SIOD), an autosomal recessive disorder with the diagnostic features of spondyloepiphyseal dysplasia, renal dysfunction, and T-cell immunodeficiency. |
| NA | ENSG00000197756 | RPL37A | ribosomal protein L37a | 6168 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L37AE family of ribosomal proteins. It is located in the cytoplasm. The protein contains a C4-type zinc finger-like domain. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000115457 | IGFBP2 | insulin like growth factor binding protein 2 | 3485 | The protein encoded by this gene is one of six similar proteins that bind insulin-like growth factors I and II (IGF-I and IGF-II). The encoded protein can be secreted into the bloodstream, where it binds IGF-I and IGF-II with high affinity, or it can remain intracellular, interacting with many different ligands. High expression levels of this protein promote the growth of several types of tumors and may be predictive of the chances of recovery of the patient. Several transcript variants, one encoding a secreted isoform and the others encoding nonsecreted isoforms, have been found for this gene. |
| NA | ENSG00000079308 | TNS1 | tensin 1 | 7145 | The protein encoded by this gene localizes to focal adhesions, regions of the plasma membrane where the cell attaches to the extracellular matrix. This protein crosslinks actin filaments and contains a Src homology 2 (SH2) domain, which is often found in molecules involved in signal transduction. This protein is a substrate of calpain II. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000163466 | ARPC2 | actin related protein 2/3 complex subunit 2 | 10109 | This gene encodes one of seven subunits of the human Arp2/3 protein complex. The Arp2/3 protein complex has been implicated in the control of actin polymerization in cells and has been conserved through evolution. The exact role of the protein encoded by this gene, the p34 subunit, has yet to be determined. Two alternatively spliced variants have been characterized to date. Additional alternatively spliced variants have been described but their full length nature has not been determined. |
| NA | ENSG00000127837 | AAMP | angio associated migratory cell protein | 14 | The gene is a member of the immunoglobulin superfamily. The encoded protein is associated with angiogenesis, with potential roles in endothelial tube formation and the migration of endothelial cells. It may also regulate smooth muscle cell migration via the RhoA pathway. The encoded protein can bind to heparin and may mediate heparin-sensitive cell adhesion. |
| NA | ENSG00000127838 | PNKD | paroxysmal nonkinesigenic dyskinesia | 25953 | This gene is thought to play a role in the regulation of myofibrillogenesis. Mutations in this gene have been associated with the movement disorder paroxysmal non-kinesigenic dyskinesia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000135926 | TMBIM1 | transmembrane BAX inhibitor motif containing 1 | 64114 | NA |
| NA | ENSG00000144579 | CTDSP1 | CTD small phosphatase 1 | 58190 | This gene encodes a member of the small C-terminal domain phosphatase (SCP) family of nuclear phosphatases. These proteins play a role in transcriptional regulation through specific dephosphorylation of phosphoserine 5 within tandem heptapeptide repeats of the C-terminal domain of RNA polymerase II. The encoded protein plays a role in neuronal gene silencing in non-neuronal cells, and may also inhibit osteoblast differentiation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000127831 | VIL1 | villin 1 | 7429 | This gene encodes a member of a family of calcium-regulated actin-binding proteins. This protein represents a dominant part of the brush border cytoskeleton which functions in the capping, severing, and bundling of actin filaments. Two mRNAs of 2.7 kb and 3.5 kb have been observed; they result from utilization of alternate poly-adenylation signals present in the terminal exon. |
| NA | ENSG00000144580 | RQCD1 | RCD1 required for cell differentiation1 homolog (S. pombe) | 9125 | This gene encodes a member of the highly conserved RCD1 protein family. The encoded protein is a transcriptional cofactor and a core protein of the CCR4-NOT complex. It may be involved in signal transduction as well as retinoic acid-regulated cell differentiation and development. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000115568 | ZNF142 | zinc finger protein 142 | 7701 | The protein encoded by this gene belongs to the Kruppel family of C2H2-type zinc finger proteins. It contains 31 C2H2-type zinc fingers and may be involved in transcriptional regulation. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000074582 | BCS1L | BCS1 homolog, ubiquinol-cytochrome c reductase complex chaperone | 617 | This gene encodes a homolog of the S. cerevisiae bcs1 protein which is involved in the assembly of complex III of the mitochondrial respiratory chain. The encoded protein does not contain a mitochondrial targeting sequence but experimental studies confirm that it is imported into mitochondria. Mutations in this gene are associated with mitochondrial complex III deficiency and the GRACILE syndrome. Several alternatively spliced transcripts encoding two different isoforms have been described. |
| NA | ENSG00000163481 | RNF25 | ring finger protein 25 | 64320 | The protein encoded by this gene contains a RING finger motif. The mouse counterpart of this protein has been shown to interact with Rela, the p65 subunit of NF-kappaB (NFKB), and modulate NFKB-mediated transcription activity. The mouse protein also binds ubiquitin-conjugating enzymes (E2s) and is a substrate for E2-dependent ubiquitination. |
| NA | ENSG00000163482 | STK36 | serine/threonine kinase 36 | 27148 | This gene encodes a member of the serine/threonine kinase family of enzymes. This family member is similar to a Drosophila protein that plays a key role in the Hedgehog signaling pathway. This human protein is a positive regulator of the GLI zinc-finger transcription factors. Knockout studies of the homologous mouse gene suggest that defects in this human gene may lead to congenital hydrocephalus, possibly due to a functional defect in motile cilia. Because Hedgehog signaling is frequently activated in certain kinds of gastrointestinal cancers, it has been suggested that this gene is a target for the treatment of these cancers. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000135912 | TTLL4 | tubulin tyrosine ligase like 4 | 9654 | NA |
| NA | ENSG00000187736 | NHEJ1 | non-homologous end joining factor 1 | 79840 | Double-strand breaks in DNA result from genotoxic stresses and are among the most damaging of DNA lesions. This gene encodes a DNA repair factor essential for the nonhomologous end-joining pathway, which preferentially mediates repair of double-stranded breaks. Mutations in this gene cause different kinds of severe combined immunodeficiency disorders. |
| NA | ENSG00000115649 | CNPPD1 | cyclin Pas1/PHO80 domain containing 1 | 27013 | NA |
| NA | ENSG00000158552 | ZFAND2B | zinc finger AN1-type containing 2B | 130617 | This gene encodes a protein containing AN1-type zinc-fingers and ubiquitin-interacting motifs. The encoded protein likely associates with the proteosome to stimulate the degradation of toxic or misfolded proteins. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000115657 | ABCB6 | ATP binding cassette subfamily B member 6 (Langereis blood group) | 10058 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MDR/TAP subfamily. Members of the MDR/TAP subfamily are involved in multidrug resistance as well as antigen presentation. This half-transporter likely plays a role in mitochondrial function. Localized to 2q26, this gene is considered a candidate gene for lethal neonatal metabolic syndrome, a disorder of mitochondrial function. |
| NA | ENSG00000198925 | ATG9A | autophagy related 9A | 79065 | NA |
| NA | ENSG00000163521 | GLB1L | galactosidase beta 1 like | 79411 | NA |
| NA | ENSG00000115661 | STK16 | serine/threonine kinase 16 | 8576 | NA |
| NA | ENSG00000135924 | DNAJB2 | DnaJ heat shock protein family (Hsp40) member B2 | 3300 | This gene is almost exclusively expressed in the brain, mainly in the neuronal layers. It encodes a protein that shows sequence similarity to bacterial DnaJ protein and the yeast homologs. In bacteria, this protein is implicated in protein folding and protein complex dissociation. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000123992 | DNPEP | aspartyl aminopeptidase | 23549 | The protein encoded by this gene is an aminopeptidase which prefers acidic amino acids, and specifically favors aspartic acid over glutamic acid. It is thought to be a cytosolic protein involved in general metabolism of intracellular proteins. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000072195 | LOC100996693 | CAVP-target protein-like | 100996693 | NA |
| NA | ENSG00000072195 | SPEG | SPEG complex locus | 10290 | This gene encodes a protein with similarity to members of the myosin light chain kinase family. This protein family is required for myocyte cytoskeletal development. Studies in mouse have determined that a lack of this protein affected myocardial development. Multiple alternatively spliced transcript variants have been reported for this gene, but the full-length nature of only two variants that encode different protein isoforms has been defined. |
| NA | ENSG00000144591 | GMPPA | GDP-mannose pyrophosphorylase A | 29926 | This gene is thought to encode a GDP-mannose pyrophosphorylase. This enzyme catalyzes the reaction which converts mannose-1-phosphate and GTP to GDP-mannose which is involved in the production of N-linked oligosaccharides. |
| NA | ENSG00000123989 | CHPF | chondroitin polymerizing factor | 79586 | NA |
| NA | ENSG00000188760 | TMEM198 | transmembrane protein 198 | 130612 | NA |
| NA | ENSG00000124006 | OBSL1 | obscurin-like 1 | 23363 | Cytoskeletal adaptor proteins function in linking the internal cytoskeleton of cells to the cell membrane. This gene encodes a cytoskeletal adaptor protein, which is a member of the Unc-89/obscurin family. The protein contains multiple N- and C-terminal immunoglobulin (Ig)-like domains and a central fibronectin type 3 domain. Mutations in this gene cause 3M syndrome type 2. Alternatively spliced transcript variants encoding different isoforms have been found in this gene. |
| NA | ENSG00000144589 | STK11IP | serine/threonine kinase 11 interacting protein | 114790 | NA |
| NA | ENSG00000114923 | SLC4A3 | solute carrier family 4 member 3 | 6508 | NA |
| NA | ENSG00000116106 | EPHA4 | EPH receptor A4 | 2043 | This gene belongs to the ephrin receptor subfamily of the protein-tyrosine kinase family. EPH and EPH-related receptors have been implicated in mediating developmental events, particularly in the nervous system. Receptors in the EPH subfamily typically have a single kinase domain and an extracellular region containing a Cys-rich domain and 2 fibronectin type III repeats. The ephrin receptors are divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000116120 | FARSB | phenylalanyl-tRNA synthetase beta subunit | 10056 | This gene encodes a highly conserved enzyme that belongs to the aminoacyl-tRNA synthetase class IIc subfamily. This enzyme comprises the regulatory beta subunits that form a tetramer with two catalytic alpha subunits. In the presence of ATP, this tetramer is responsible for attaching L-phenylalanine to the terminal adenosine of the appropriate tRNA. A pseudogene located on chromosome 10 has been identified. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000123983 | ACSL3 | acyl-CoA synthetase long-chain family member 3 | 2181 | The protein encoded by this gene is an isozyme of the long-chain fatty-acid-coenzyme A ligase family. Although differing in substrate specificity, subcellular localization, and tissue distribution, all isozymes of this family convert free long-chain fatty acids into fatty acyl-CoA esters, and thereby play a key role in lipid biosynthesis and fatty acid degradation. This isozyme is highly expressed in brain, and preferentially utilizes myristate, arachidonate, and eicosapentaenoate as substrates. The amino acid sequence of this isozyme is 92% identical to that of rat homolog. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000152056 | AP1S3 | adaptor related protein complex 1 sigma 3 subunit | 130340 | NA |
| NA | ENSG00000085449 | WDFY1 | WD repeat and FYVE domain containing 1 | 57590 | The protein encoded by this gene is a phosphatidylinositol 3-phosphate binding protein, which contains a FYVE zinc finger domain and multiple WD-40 repeat domains. When exogenously expressed, it localizes to early endosomes. Mutagenesis analysis demonstrates that this endosomal localization is mediated by the FYVE domain. |
| NA | ENSG00000135900 | MRPL44 | mitochondrial ribosomal protein L44 | 65080 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000135919 | SERPINE2 | serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2 | 5270 | This gene encodes a member of the serpin family of proteins, a group of proteins that inhibit serine proteases. Thrombin, urokinase, plasmin and trypsin are among the proteases that this family member can inhibit. This gene is a susceptibility gene for chronic obstructive pulmonary disease and for emphysema. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000036257 | CUL3 | cullin 3 | 8452 | This gene encodes a member of the cullin protein family. The encoded protein plays a critical role in the polyubiquitination and subsequent degradation of specific protein substrates as the core component and scaffold protein of an E3 ubiquitin ligase complex. Complexes including the encoded protein may also play a role in late endosome maturation. Mutations in this gene are a cause of type 2E pseudohypoaldosteronism. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000169047 | IRS1 | insulin receptor substrate 1 | 3667 | This gene encodes a protein which is phosphorylated by insulin receptor tyrosine kinase. Mutations in this gene are associated with type II diabetes and susceptibility to insulin resistance. |
| NA | ENSG00000144468 | RHBDD1 | rhomboid domain containing 1 | 84236 | NA |
| NA | ENSG00000168958 | MFF | mitochondrial fission factor | 56947 | This is a nuclear gene encoding a protein that functions in mitochondrial and peroxisomal fission. The encoded protein recruits dynamin-1-like protein (DNM1L) to mitochondria. There are multiple pseudogenes for this gene on chromosomes 1, 5, and X. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000173744 | AGFG1 | ArfGAP with FG repeats 1 | 3267 | The protein encoded by this gene is related to nucleoporins, a class of proteins that mediate nucleocytoplasmic transport. The encoded protein binds the activation domain of the human immunodeficiency virus Rev protein when Rev is assembled onto its RNA target, and is required for the nuclear export of Rev-directed RNAs. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000135917 | SLC19A3 | solute carrier family 19 member 3 | 80704 | This gene encodes a ubiquitously expressed transmembrane thiamine transporter that lacks folate transport activity. Mutations in this gene cause biotin-responsive basal ganglia disease (BBGD); a recessive disorder manifested in childhood that progresses to chronic encephalopathy, dystonia, quadriparesis, and death if untreated. Patients with BBGD have bilateral necrosis in the head of the caudate nucleus and in the putamen. Administration of high doses of biotin in the early progression of the disorder eliminates pathological symptoms while delayed treatment results in residual paraparesis, mild mental retardation, or dystonia. Administration of thiamine is ineffective in the treatment of this disorder. Experiments have failed to show that this protein can transport biotin. Mutations in this gene also cause a Wernicke’s-like encephalopathy. |
| NA | ENSG00000187957 | DNER | delta/notch like EGF repeat containing | 92737 | NA |
| NA | ENSG00000153827 | TRIP12 | thyroid hormone receptor interactor 12 | 9320 | NA |
| NA | ENSG00000135899 | SP110 | SP110 nuclear body protein | 3431 | The nuclear body is a multiprotein complex that may have a role in the regulation of gene transcription. This gene is a member of the SP100/SP140 family of nuclear body proteins and encodes a leukocyte-specific nuclear body component. The protein can function as an activator of gene transcription and may serve as a nuclear hormone receptor coactivator. In addition, it has been suggested that the protein may play a role in ribosome biogenesis and in the induction of myeloid cell differentiation. Alternative splicing has been observed for this gene and three transcript variants, encoding distinct isoforms, have been identified. |
| NA | ENSG00000067066 | SP100 | SP100 nuclear antigen | 6672 | This gene encodes a subnuclear organelle and major component of the PML (promyelocytic leukemia)-SP100 nuclear bodies. PML and SP100 are covalently modified by the SUMO-1 modifier, which is considered crucial to nuclear body interactions. The encoded protein binds heterochromatin proteins and is thought to play a role in tumorigenesis, immunity, and gene regulation. Alternatively spliced variants have been identified for this gene; one of which encodes a high-mobility group protein. |
| NA | ENSG00000135932 | CAB39 | calcium binding protein 39 | 51719 | NA |
| NA | ENSG00000135916 | ITM2C | integral membrane protein 2C | 81618 | NA |
| NA | ENSG00000173692 | PSMD1 | proteasome 26S subunit, non-ATPase 1 | 5707 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes the largest non-ATPase subunit of the 19S regulator lid, which is responsible for substrate recognition and binding. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000135931 | ARMC9 | armadillo repeat containing 9 | 80210 | NA |
| NA | ENSG00000156966 | B3GNT7 | UDP-GlcNAc:betaGal beta-1,3-N-acetylglucosaminyltransferase 7 | 93010 | NA |
| NA | ENSG00000115053 | NCL | nucleolin | 4691 | Nucleolin (NCL), a eukaryotic nucleolar phosphoprotein, is involved in the synthesis and maturation of ribosomes. It is located mainly in dense fibrillar regions of the nucleolus. Human NCL gene consists of 14 exons with 13 introns and spans approximately 11kb. The intron 11 of the NCL gene encodes a small nucleolar RNA, termed U20. |
| NA | ENSG00000187514 | LOC728026 | prothymosin alpha-like | 728026 | NA |
| NA | ENSG00000187514 | PTMA | prothymosin, alpha | 5757 | NA |
| NA | ENSG00000156973 | PDE6D | phosphodiesterase 6D | 5147 | This gene encodes the delta subunit of rod-specific photoreceptor phosphodiesterase (PDE), a key enzyme in the phototransduction cascade. A similar protein in cow functions in solubilizing membrane-bound PDE. In addition to its role in the PDE complex, the encoded protein is thought to bind to prenyl groups of proteins to target them to subcellular organelles called cilia. Mutations in this gene are associated with Joubert syndrome-22. Alternative splicing results in multiple splice variants. |
| NA | ENSG00000144524 | COPS7B | COP9 signalosome subunit 7B | 64708 | NA |
| NA | ENSG00000163273 | NPPC | natriuretic peptide C | 4880 | This gene encodes a preproprotein that is proteolytically processed to generate multiple protein products. These products include the cardiac natriuretic peptides CNP-53, CNP-29 and CNP-22, which belong to the natriuretic family of peptides. The encoded peptides exhibit vasorelaxation activity in laboratory animals and elevated levels of CNP-22 have been observed in the plasma of chronic heart failure patients. |
| NA | ENSG00000144535 | DIS3L2 | DIS3 like 3’-5’ exoribonuclease 2 | 129563 | The protein encoded by this gene is similar in sequence to 3’/5’ exonucleolytic subunits of the RNA exosome. The exosome is a large multimeric ribonucleotide complex responsible for degrading various RNA substrates. Several transcript variants, some protein-coding and some not, have been found for this gene. |
| NA | ENSG00000171551 | ECEL1 | endothelin converting enzyme-like 1 | 9427 | This gene encodes a member of the M13 family of endopeptidases. Members of this family are zinc-containing type II integral-membrane proteins that are important regulators of neuropeptide and peptide hormone activity. Mutations in this gene are associated with autosomal recessive distal arthrogryposis, type 5D. This gene has multiple pseudogenes on chromosome 2. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000221944 | TIGD1 | tigger transposable element derived 1 | 200765 | The protein encoded by this gene belongs to the tigger subfamily of the pogo superfamily of DNA-mediated transposons in humans. These proteins are related to DNA transposons found in fungi and nematodes, and more distantly to the Tc1 and mariner transposases. They are also very similar to the major mammalian centromere protein B. The exact function of this gene is not known. |
| NA | ENSG00000135930 | EIF4E2 | eukaryotic translation initiation factor 4E family member 2 | 9470 | NA |
| NA | ENSG00000115468 | EFHD1 | EF-hand domain family member D1 | 80303 | EFHD1 is an EF-hand domain-containing protein that displays increased expression during neuronal differentiation (Tominaga and Tomooka, 2002 [PubMed 12270117]). |
| NA | ENSG00000204120 | GIGYF2 | GRB10 interacting GYF protein 2 | 26058 | This gene contains CAG trinucleotide repeats and encodes a protein containing several stretches of polyglutamine residues. The encoded protein may be involved in the regulation of tyrosine kinase receptor signaling. This gene is located in a chromosomal region that was genetically linked to Parkinson disease type 11, and mutations in this gene were thought to be causative for this disease. However, more recent studies in different populations have been unable to replicate this association. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168918 | INPP5D | inositol polyphosphate-5-phosphatase D | 3635 | This gene is a member of the inositol polyphosphate-5-phosphatase (INPP5) family and encodes a protein with an N-terminal SH2 domain, an inositol phosphatase domain, and two C-terminal protein interaction domains. Expression of this protein is restricted to hematopoietic cells where its movement from the cytosol to the plasma membrane is mediated by tyrosine phosphorylation. At the plasma membrane, the protein hydrolyzes the 5’ phosphate from phosphatidylinositol (3,4,5)-trisphosphate and inositol-1,3,4,5-tetrakisphosphate, thereby affecting multiple signaling pathways. The protein is also partly localized to the nucleus, where it may be involved in nuclear inositol phosphate signaling processes. Overall, the protein functions as a negative regulator of myeloid cell proliferation and survival. Mutations in this gene are associated with defects and cancers of the immune system. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000085978 | ATG16L1 | autophagy related 16 like 1 | 55054 | The protein encoded by this gene is part of a large protein complex that is necessary for autophagy, the major process by which intracellular components are targeted to lysosomes for degradation. Defects in this gene are a cause of susceptibility to inflammatory bowel disease type 10 (IBD10). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000077044 | DGKD | diacylglycerol kinase delta | 8527 | This gene encodes a cytoplasmic enzyme that phosphorylates diacylglycerol to produce phosphatidic acid. Diacylglycerol and phosphatidic acid are two lipids that act as second messengers in signaling cascades. Their cellular concentrations are regulated by the encoded protein, and so it is thought to play an important role in cellular signal transduction. Alternative splicing results in two transcript variants encoding different isoforms. |
| NA | ENSG00000085982 | USP40 | ubiquitin specific peptidase 40 | 55230 | Modification of cellular proteins by ubiquitin is an essential regulatory mechanism controlled by the coordinated action of multiple ubiquitin-conjugating and deubiquitinating enzymes. USP40 belongs to a large family of cysteine proteases that function as deubiquitinating enzymes (Quesada et al., 2004 [PubMed 14715245]). |
| NA | ENSG00000123485 | HJURP | Holliday junction recognition protein | 55355 | NA |
| NA | ENSG00000130147 | SH3BP4 | SH3-domain binding protein 4 | 23677 | This gene encodes a protein with 3 Asn-Pro-Phe (NPF) motifs, an SH3 domain, a PXXP motif, a bipartite nuclear targeting signal, and a tyrosine phosphorylation site. This protein is involved in cargo-specific control of clathrin-mediated endocytosis, specifically controlling the internalization of a specific protein receptor. |
| NA | ENSG00000157985 | AGAP1 | ArfGAP with GTPase domain, ankyrin repeat and PH domain 1 | 116987 | This gene encodes a member of an ADP-ribosylation factor GTPase-activating protein family involved in membrane trafficking and cytoskeleton dynamics. This gene functions as a direct regulator of the adaptor-related protein complex 3 on endosomes. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132321 | IQCA1 | IQ motif containing with AAA domain 1 | 79781 | The protein encoded by this gene is a member of the ATPases Associated with diverse cellular Activities (AAA) superfamily. Members of this superfamily, found in all organisms, participate in a large number of cellular processes and contain the ATPase module consisting of an alpha-beta-alpha core domain and the Walker A and B motifs of the P-loop NTPases. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000198612 | COPS8 | COP9 signalosome subunit 8 | 10920 | The protein encoded by this gene is one of the eight subunits of COP9 signalosome, a highly conserved protein complex that functions as an important regulator in multiple signaling pathways. The structure and function of COP9 signalosome is similar to that of the 19S regulatory particle of 26S proteasome. COP9 signalosome has been shown to interact with SCF-type E3 ubiquitin ligases and act as a positive regulator of E3 ubiquitin ligases. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000163359 | COL6A3 | collagen type VI alpha 3 | 1293 | This gene encodes the alpha-3 chain, one of the three alpha chains of type VI collagen, a beaded filament collagen found in most connective tissues. The alpha-3 chain of type VI collagen is much larger than the alpha-1 and -2 chains. This difference in size is largely due to an increase in the number of subdomains, similar to von Willebrand Factor type A domains, that are found in the amino terminal globular domain of all the alpha chains. These domains have been shown to bind extracellular matrix proteins, an interaction that explains the importance of this collagen in organizing matrix components. Mutations in the type VI collagen genes are associated with Bethlem myopathy, a rare autosomal dominant proximal myopathy with early childhood onset. Mutations in this gene are also a cause of Ullrich congenital muscular dystrophy, also referred to as Ullrich scleroatonic muscular dystrophy, an autosomal recessive congenital myopathy that is more severe than Bethlem myopathy. Multiple transcript variants have been identified, but the full-length nature of only some of these variants has been described. |
| NA | ENSG00000115648 | MLPH | melanophilin | 79083 | This gene encodes a member of the exophilin subfamily of Rab effector proteins. The protein forms a ternary complex with the small Ras-related GTPase Rab27A in its GTP-bound form and the motor protein myosin Va. A similar protein complex in mouse functions to tether pigment-producing organelles called melanosomes to the actin cytoskeleton in melanocytes, and is required for visible pigmentation in the hair and skin. A mutation in this gene results in Griscelli syndrome type 3, which is characterized by a silver-gray hair color and abnormal pigment distribution in the hair shaft. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000124839 | RAB17 | RAB17, member RAS oncogene family | 64284 | The Rab subfamily of small GTPases plays an important role in the regulation of membrane trafficking. RAB17 is an epithelial cell-specific GTPase (Lutcke et al., 1993 [PubMed 8486736]). |
| NA | ENSG00000234949 | AC104667.3 | NA | ENSG00000234949 | NA |
| NA | ENSG00000124831 | LRRFIP1 | leucine rich repeat (in FLII) interacting protein 1 | 9208 | NA |
| NA | ENSG00000184182 | UBE2F | ubiquitin conjugating enzyme E2 F (putative) | 140739 | NA |
| NA | ENSG00000132330 | SCLY | selenocysteine lyase | 51540 | Selenocysteine lyase (SCLY; EC 4.4.1.16) catalyzes the pyridoxal 5-prime phosphate-dependent conversion of L-selenocysteine to L-alanine and elemental selenium (Mihara et al., 2000 [PubMed 10692412]). |
| NA | ENSG00000132323 | ILKAP | ILK associated serine/threonine phosphatase | 80895 | The protein encoded by this gene is a protein serine/threonine phosphatase of the PP2C family. This protein can interact with integrin-linked kinase (ILK/ILK1), a regulator of integrin mediated signaling, and regulate the kinase activity of ILK. Through the interaction with ILK, this protein may selectively affect the signaling process of ILK-mediated glycogen synthase kinase 3 beta (GSK3beta), and thus participate in Wnt signaling pathway. |
| NA | ENSG00000144485 | HES6 | hes family bHLH transcription factor 6 | 55502 | This gene encodes a member of a subfamily of basic helix-loop-helix transcription repressors that have homology to the Drosophila enhancer of split genes. Members of this gene family regulate cell differentiation in numerous cell types. The protein encoded by this gene functions as a cofactor, interacting with other transcription factors through a tetrapeptide domain in its C-terminus. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000132326 | PER2 | period circadian clock 2 | 8864 | This gene is a member of the Period family of genes and is expressed in a circadian pattern in the suprachiasmatic nucleus, the primary circadian pacemaker in the mammalian brain. Genes in this family encode components of the circadian rhythms of locomotor activity, metabolism, and behavior. This gene is upregulated by CLOCK/ARNTL heterodimers but then represses this upregulation in a feedback loop using PER/CRY heterodimers to interact with CLOCK/ARNTL. Polymorphisms in this gene may increase the risk of getting certain cancers and have been linked to sleep disorders. |
| NA | ENSG00000204104 | TRAF3IP1 | TRAF3 interacting protein 1 | 26146 | NA |
| NA | ENSG00000068024 | HDAC4 | histone deacetylase 4 | 9759 | Histones play a critical role in transcriptional regulation, cell cycle progression, and developmental events. Histone acetylation/deacetylation alters chromosome structure and affects transcription factor access to DNA. The protein encoded by this gene belongs to class II of the histone deacetylase/acuc/apha family. It possesses histone deacetylase activity and represses transcription when tethered to a promoter. This protein does not bind DNA directly, but through transcription factors MEF2C and MEF2D. It seems to interact in a multiprotein complex with RbAp48 and HDAC3. |
| NA | ENSG00000130414 | NDUFA10 | NADH:ubiquinone oxidoreductase subunit A10 | 4705 | The protein encoded by this gene belongs to the complex I 42kDA subunit family. Mammalian complex I is the first enzyme complex in the electron transport chain of mitochondria. It is composed of 45 different subunits. This protein is a component of the hydrophobic protein fraction and has NADH dehydrogenase activity and oxidoreductase activity. It transfers electrons from NADH to the respiratory chain. |
| NA | ENSG00000172428 | MYEOV2 | myeloma overexpressed 2 | 150678 | NA |
| NA | ENSG00000063660 | GPC1 | glypican 1 | 2817 | Cell surface heparan sulfate proteoglycans are composed of a membrane-associated protein core substituted with a variable number of heparan sulfate chains. Members of the glypican-related integral membrane proteoglycan family (GRIPS) contain a core protein anchored to the cytoplasmic membrane via a glycosyl phosphatidylinositol linkage. These proteins may play a role in the control of cell division and growth regulation. |
| NA | ENSG00000188542 | DUSP28 | dual specificity phosphatase 28 | 285193 | NA |
| NA | ENSG00000142327 | RNPEPL1 | arginyl aminopeptidase (aminopeptidase B)-like 1 | ENSG00000142327 | NA |
| NA | ENSG00000142330 | CAPN10 | calpain 10 | 11132 | Calpains represent a ubiquitous, well-conserved family of calcium-dependent cysteine proteases. The calpain proteins are heterodimers consisting of an invariant small subunit and variable large subunits. The large catalytic subunit has four domains: domain I, the N-terminal regulatory domain that is processed upon calpain activation; domain II, the protease domain; domain III, a linker domain of unknown function; and domain IV, the calmodulin-like calcium-binding domain. This gene encodes a large subunit. It is an atypical calpain in that it lacks the calmodulin-like calcium-binding domain and instead has a divergent C-terminal domain. It is similar in organization to calpains 5 and 6. This gene is associated with type 2 or non-insulin-dependent diabetes mellitus (NIDDM), and is located within the NIDDM1 region. Multiple alternative transcript variants have been described for this gene. |
| NA | ENSG00000130294 | KIF1A | kinesin family member 1A | 547 | The protein encoded by this gene is a member of the kinesin family and functions as an anterograde motor protein that transports membranous organelles along axonal microtubules. Mutations at this locus have been associated with spastic paraplegia-30 and hereditary sensory neuropathy IIC. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000122085 | MTERF4 | mitochondrial transcription termination factor 4 | 130916 | NA |
| NA | ENSG00000115687 | PASK | PAS domain containing serine/threonine kinase | 23178 | This gene encodes a member of the serine/threonine kinase family that contains two PAS domains. Expression of this gene is regulated by glucose, and the encoded protein plays a role in the regulation of insulin gene expression. Downregulation of this gene may play a role in type 2 diabetes. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000146205 | ANO7 | anoctamin 7 | 50636 | This prostate-specific gene encodes a cytoplasmic protein, as well as a polytopic membrane protein which may serve as a target in prostate cancer diagnosis and immunotherapy. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000115677 | HDLBP | high density lipoprotein binding protein | 3069 | The protein encoded by this gene binds high density lipoprotein (HDL) and may function to regulate excess cholesterol levels in cells. The encoded protein also binds RNA and can induce heterochromatin formation. |
| NA | ENSG00000168385 | SEPT2 | septin 2 | 4735 | NA |
| NA | ENSG00000006607 | FARP2 | FERM, ARH/RhoGEF and pleckstrin domain protein 2 | 9855 | NA |
| NA | ENSG00000115694 | STK25 | serine/threonine kinase 25 | 10494 | This gene encodes a member of the germinal centre kinase III (GCK III) subfamily of the sterile 20 superfamily of kinases. The encoded enzyme plays a role in serine-threonine liver kinase B1 (LKB1) signaling pathway to regulate neuronal polarization and morphology of the Golgi apparatus. The protein is translocated from the Golgi apparatus to the nucleus in response to chemical anoxia and plays a role in regulation of cell death. A pseudogene associated with this gene is located on chromosome 18. Multiple alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000176720 | BOK | BCL2-related ovarian killer | 666 | The protein encoded by this gene belongs to the BCL2 family, members of which form homo- or heterodimers, and act as anti- or proapoptotic regulators that are involved in a wide variety of cellular processes. Studies in rat show that this protein has restricted expression in reproductive tissues, interacts strongly with some antiapoptotic BCL2 proteins, not at all with proapoptotic BCL2 proteins, and induces apoptosis in transfected cells. Thus, this protein represents a proapoptotic member of the BCL2 family. |
| NA | ENSG00000176946 | THAP4 | THAP domain containing 4 | 51078 | NA |
| NA | ENSG00000168397 | ATG4B | autophagy related 4B cysteine peptidase | 23192 | Autophagy is the process by which endogenous proteins and damaged organelles are destroyed intracellularly. Autophagy is postulated to be essential for cell homeostasis and cell remodeling during differentiation, metamorphosis, non-apoptotic cell death, and aging. Reduced levels of autophagy have been described in some malignant tumors, and a role for autophagy in controlling the unregulated cell growth linked to cancer has been proposed. This gene encodes a member of the autophagin protein family. The encoded protein is also designated as a member of the C-54 family of cysteine proteases. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000168395 | ING5 | inhibitor of growth family member 5 | 84289 | The protein encoded by this gene is similar to ING1, a tumor suppressor protein that can interact with TP53, inhibit cell growth, and induce apoptosis. This protein contains a PHD-finger, which is a common motif in proteins involved in chromatin remodeling. This protein can bind TP53 and EP300/p300, a component of the histone acetyl transferase complex, suggesting its involvement in TP53-dependent regulatory pathway. |
| NA | ENSG00000180902 | D2HGDH | D-2-hydroxyglutarate dehydrogenase | 728294 | This gene encodes D-2hydroxyglutarate dehydrogenase, a mitochondrial enzyme belonging to the FAD-binding oxidoreductase/transferase type 4 family. This enzyme, which is most active in liver and kidney but also active in heart and brain, converts D-2-hydroxyglutarate to 2-ketoglutarate. Mutations in this gene are present in D-2-hydroxyglutaric aciduria, a rare recessive neurometabolic disorder causing developmental delay, epilepsy, hypotonia, and dysmorphic features. |
| NA | ENSG00000196476 | C20orf96 | chromosome 20 open reading frame 96 | 140680 | NA |
| TRUE | ENSG00000177764 | NA | NA | NA | NA |
| NA | ENSG00000177732 | SOX12 | SRY-box 12 | 6666 | Members of the SOX family of transcription factors are characterized by the presence of a DNA-binding high mobility group (HMG) domain, homologous to the HMG box of sex-determining region Y (SRY). Forming a subgroup of the HMG domain superfamily, SOX proteins have been implicated in cell fate decisions in a diverse range of developmental processes. SOX transcription factors have diverse tissue-specific expression patterns during early development and have been proposed to act as target-specific transcription factors and/or as chromatin structure regulatory elements. The protein encoded by this gene was identified as a SOX family member based on conserved domains, and its expression in various tissues suggests a role in both differentiation and maintenance of several cell types. |
| NA | ENSG00000125841 | NRSN2 | neurensin 2 | 80023 | NA |
| NA | ENSG00000101255 | TRIB3 | tribbles pseudokinase 3 | 57761 | The protein encoded by this gene is a putative protein kinase that is induced by the transcription factor NF-kappaB. The encoded protein is a negative regulator of NF-kappaB and can also sensitize cells to TNF- and TRAIL-induced apoptosis. In addition, this protein can negatively regulate the cell survival serine-threonine kinase AKT1. Differential promoter usage and alternate splicing result in multiple transcript variants. |
| NA | ENSG00000125826 | RBCK1 | RANBP2-type and C3HC4-type zinc finger containing 1 | 10616 | The protein encoded by this gene is similar to mouse UIP28/UbcM4 interacting protein. Alternative splicing has been observed at this locus, resulting in distinct isoforms. |
| NA | ENSG00000125875 | TBC1D20 | TBC1 domain family member 20 | 128637 | This gene encodes a protein that belongs to a family of GTPase activator proteins of Rab-like small GTPases. The encoded protein and its cognate GTPase, Rab1, bind the nonstructural protein 5A (NS5A) of the hepatitis C virus (HCV) to mediate viral replication. Depletion of this protein inhibits replication of the virus and HCV infection. Mutations in this gene are associated with Warburg micro syndrome 4. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000101266 | CSNK2A1 | casein kinase 2 alpha 1 | 1457 | Casein kinase II is a serine/threonine protein kinase that phosphorylates acidic proteins such as casein. It is involved in various cellular processes, including cell cycle control, apoptosis, and circadian rhythm. The kinase exists as a tetramer and is composed of an alpha, an alpha-prime, and two beta subunits. The alpha subunits contain the catalytic activity while the beta subunits undergo autophosphorylation. The protein encoded by this gene represents the alpha subunit. While this gene is found on chromosome 20, a related transcribed pseudogene is found on chromosome 11. Three transcript variants encoding two different proteins have been found for this gene. |
| NA | ENSG00000125878 | TCF15 | transcription factor 15 (basic helix-loop-helix) | 6939 | The protein encoded by this gene is found in the nucleus and may be involved in the early transcriptional regulation of patterning of the mesoderm. The encoded basic helix-loop-helix protein requires dimerization with another basic helix-loop-helix protein for efficient DNA binding. |
| NA | ENSG00000101276 | SLC52A3 | solute carrier family 52 member 3 | 113278 | This gene encodes a riboflavin transporter protein that is strongly expressed in the intestine and likely plays a role in intestinal absorption of riboflavin. The protein is predicted to have eleven transmembrane domains and a cell surface localization signal in the C-terminus. Mutations at this locus have been associated with Brown-Vialetto-Van Laere syndrome and Fazio-Londe disease. |
| NA | ENSG00000125898 | FAM110A | family with sequence similarity 110 member A | 83541 | NA |
| NA | ENSG00000101282 | RSPO4 | R-spondin 4 | 343637 | This gene encodes a member of the R-spondin family of proteins that share a common domain organization consisting of a signal peptide, cysteine-rich/furin-like domain, thrombospondin domain and a C-terminal basic region. The encoded protein may be involved in activation of Wnt/beta-catenin signaling pathways. Mutations in this gene are associated with anonychia congenital. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000125818 | PSMF1 | proteasome inhibitor subunit 1 | 9491 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a protein that inhibits the activation of the proteasome by the 11S and 19S regulators. Alternative transcript variants have been identified for this gene. |
| NA | ENSG00000101298 | SNPH | syntaphilin | 9751 | Syntaxin-1, synaptobrevin/VAMP, and SNAP25 interact to form the SNARE complex, which is required for synaptic vesicle docking and fusion. The protein encoded by this gene is membrane-associated and inhibits SNARE complex formation by binding free syntaxin-1. Expression of this gene appears to be brain-specific. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000125775 | SDCBP2 | syndecan binding protein 2 | 27111 | The protein encoded by this gene contains two class II PDZ domains. PDZ domains facilitate protein-protein interactions by binding to the cytoplasmic C-terminus of transmembrane proteins, and PDZ-containing proteins mediate cell signaling and the organization of protein complexes. The encoded protein binds to phosphatidylinositol 4, 5-bisphosphate (PIP2) and plays a role in nuclear PIP2 organization and cell division. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. Read-through transcription also exists between this gene and the upstream FKBP1A (FK506 binding protein 1A, 12kDa) gene, as represented in GeneID:100528031. |
| NA | ENSG00000088832 | FKBP1A | FK506 binding protein 1A | 2280 | The protein encoded by this gene is a member of the immunophilin protein family, which play a role in immunoregulation and basic cellular processes involving protein folding and trafficking. The protein is a cis-trans prolyl isomerase that binds the immunosuppressants FK506 and rapamycin. It interacts with several intracellular signal transduction proteins including type I TGF-beta receptor. It also interacts with multiple intracellular calcium release channels, and coordinates multi-protein complex formation of the tetrameric skeletal muscle ryanodine receptor. In mouse, deletion of this homologous gene causes congenital heart disorder known as noncompaction of left ventricular myocardium. Multiple alternatively spliced variants, encoding the same protein, have been identified. The human genome contains five pseudogenes related to this gene, at least one of which is transcribed. |
| NA | ENSG00000088833 | NSFL1C | NSFL1 (p97) cofactor (p47) | 55968 | N-ethylmaleimide-sensitive factor (NSF) and valosin-containing protein (p97) are two ATPases known to be involved in transport vesicle/target membrane fusion and fusions between membrane compartments. A trimer of the protein encoded by this gene binds a hexamer of cytosolic p97 and is required for p97-mediated regrowth of Golgi cisternae from mitotic Golgi fragments. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 8. |
| NA | ENSG00000125834 | STK35 | serine/threonine kinase 35 | 140901 | The protein encoded by this gene is a kinase that is predominantly found in the nucleus. However, it can interact with PDLIM1/CLP-36 in the cytoplasm and localize to actin stress fibers. The encoded protein may be a regulator of actin stress fibers in nonmuscle cells. |
| NA | ENSG00000125835 | SNRPB | small nuclear ribonucleoprotein polypeptides B and B1 | 6628 | The protein encoded by this gene is one of several nuclear proteins that are found in common among U1, U2, U4/U6, and U5 small ribonucleoprotein particles (snRNPs). These snRNPs are involved in pre-mRNA splicing, and the encoded protein may also play a role in pre-mRNA splicing or snRNP structure. Autoantibodies from patients with systemic lupus erythematosus frequently recognize epitopes on the encoded protein. Two transcript variants encoding different isoforms (B and B’) have been found for this gene. |
| NA | ENSG00000088876 | ZNF343 | zinc finger protein 343 | 79175 | NA |
| NA | ENSG00000101361 | NOP56 | NOP56 ribonucleoprotein | 10528 | Nop56p is a yeast nucleolar protein that is part of a complex with the nucleolar proteins Nop58p and fibrillarin. Nop56p is required for assembly of the 60S ribosomal subunit and is involved in pre-rRNA processing. The protein encoded by this gene is similar in sequence to Nop56p and is also found in the nucleolus. Multiple transcript variants encoding several different isoforms have been found for this gene, but the full-length nature of most of them has not been determined. |
| NA | ENSG00000101365 | IDH3B | isocitrate dehydrogenase 3 (NAD+) beta | 3420 | Isocitrate dehydrogenases catalyze the oxidative decarboxylation of isocitrate to 2-oxoglutarate. These enzymes belong to two distinct subclasses, one of which utilizes NAD(+) as the electron acceptor and the other NADP(+). Five isocitrate dehydrogenases have been reported: three NAD(+)-dependent isocitrate dehydrogenases, which localize to the mitochondrial matrix, and two NADP(+)-dependent isocitrate dehydrogenases, one of which is mitochondrial and the other predominantly cytosolic. NAD(+)-dependent isocitrate dehydrogenases catalyze the allosterically regulated rate-limiting step of the tricarboxylic acid cycle. Each isozyme is a heterotetramer that is composed of two alpha subunits, one beta subunit, and one gamma subunit. The protein encoded by this gene is the beta subunit of one isozyme of NAD(+)-dependent isocitrate dehydrogenase. Three alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000088882 | CPXM1 | carboxypeptidase X (M14 family), member 1 | 56265 | This gene likely encodes a member of the carboxypeptidase family of proteins. Cloning of a comparable locus in mouse indicates that the encoded protein contains a discoidin domain and a carboxypeptidase domain, but the protein appears to lack residues necessary for carboxypeptidase activity. |
| NA | ENSG00000132635 | PCED1A | PC-esterase domain containing 1A | 64773 | The protein encoded by this gene is a member of the GDSL/SGNH superfamily. Members of this family are hydrolytic enzymes with esterase and lipase activity and broad substrate specificity. This protein belongs to the Pmr5-Cas1p-esterase subfamily in that it contains the catalytic triad comprised of serine, aspartate and histidine and lacks two conserved regions (glycine after strand S2 and GxND motif). A pseudogene of this gene has been identified on the long arm of chromosome 2. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000215305 | VPS16 | VPS16, CORVET/HOPS core subunit | 64601 | Vesicle mediated protein sorting plays an important role in segregation of intracellular molecules into distinct organelles. Genetic studies in yeast have identified more than 40 vacuolar protein sorting (VPS) genes involved in vesicle transport to vacuoles. This gene encodes the human homolog of yeast class C Vps16 protein. The mammalian class C Vps proteins are predominantly associated with late endosomes/lysosomes, and like their yeast counterparts, may mediate vesicle trafficking steps in the endosome/lysosome pathway. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132670 | PTPRA | protein tyrosine phosphatase, receptor type A | 5786 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP contains an extracellular domain, a single transmembrane segment and two tandem intracytoplasmic catalytic domains, and thus represents a receptor-type PTP. This PTP has been shown to dephosphorylate and activate Src family tyrosine kinases, and is implicated in the regulation of integrin signaling, cell adhesion and proliferation. Three alternatively spliced variants of this gene, which encode two distinct isoforms, have been reported. |
| NA | ENSG00000125901 | MRPS26 | mitochondrial ribosomal protein S26 | 64949 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein. This gene lies adjacent to and downstream of the gonadotropin-releasing hormone precursor gene. |
| NA | ENSG00000185019 | UBOX5 | U-box domain containing 5 | 22888 | This gene encodes a U-box domain containing protein. The encoded protein interacts with E2 enzymes and may play a role in the ubiquitination pathway. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000215251 | FASTKD5 | FAST kinase domains 5 | 60493 | NA |
| NA | ENSG00000088899 | LZTS3 | leucine zipper, putative tumor suppressor family member 3 | 9762 | NA |
| NA | ENSG00000198171 | DDRGK1 | DDRGK domain containing 1 | 65992 | The protein encoded by this gene interacts with components of the ubiquitin fold modifier 1 conjugation pathway and helps prevent apoptosis in ER-stressed secretory tissues. In addition, the encoded protein regulates nuclear factor-κB activity. |
| NA | ENSG00000125877 | ITPA | inosine triphosphatase | 3704 | This gene encodes an inosine triphosphate pyrophosphohydrolase. The encoded protein hydrolyzes inosine triphosphate and deoxyinosine triphosphate to the monophosphate nucleotide and diphosphate. This protein, which is a member of the HAM1 NTPase protein family, is found in the cytoplasm and acts as a homodimer. Defects in the encoded protein can result in inosine triphosphate pyrophosphorylase deficiency which causes an accumulation of ITP in red blood cells. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000088836 | SLC4A11 | solute carrier family 4 member 11 | 83959 | This gene encodes a voltage-regulated, electrogenic sodium-coupled borate cotransporter that is essential for borate homeostasis, cell growth and cell proliferation. Mutations in this gene have been associated with a number of endothelial corneal dystrophies including recessive corneal endothelial dystrophy 2, corneal dystrophy and perceptive deafness, and Fuchs endothelial corneal dystrophy. Multiple transcript variants encoding different isoforms have been described. |
| NA | ENSG00000088854 | C20orf194 | chromosome 20 open reading frame 194 | 25943 | This gene encodes an uncharacterized protein with a C-terminal coiled-coil region. The gene is located on chromosome 20p13 in a 1.8 Mb region linked to a spinocerebellar ataxia phenotype, but this gene does not appear to be a disease candidate. |
| NA | ENSG00000088812 | ATRN | attractin | 8455 | Multiple transcript variants encoding different isoforms exist for this gene. One of the isoforms is a membrane-bound protein with sequence similarity to the mouse mahogany protein, a receptor involved in controlling obesity. The other two isoforms are secreted proteins involved in the initial immune cell clustering during inflammatory responses that may regulate the chemotactic activity of chemokines. |
| NA | ENSG00000149451 | ADAM33 | ADAM metallopeptidase domain 33 | 80332 | This gene encodes a member of the ADAM (a disintegrin and metalloprotease domain) family. Members of this family are membrane-anchored proteins structurally related to snake venom disintegrins, and have been implicated in a variety of biological processes involving cell-cell and cell-matrix interactions, including fertilization, muscle development, and neurogenesis. This protein is a type I transmembrane protein implicated in asthma and bronchial hyperresponsiveness. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000132622 | HSPA12B | heat shock protein family A (Hsp70) member 12B | 116835 | The protein encoded by this gene contains an atypical heat shock protein 70 (Hsp70) ATPase domain and is therefore a distant member of the mammalian Hsp70 family. This gene may be involved in susceptibility to atherosclerosis. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000101220 | C20orf27 | chromosome 20 open reading frame 27 | 54976 | NA |
| NA | ENSG00000125817 | CENPB | centromere protein B | 1059 | This gene product is a highly conserved protein that facilitates centromere formation. It is a DNA-binding protein that is derived from transposases of the pogo DNA transposon family. It contains a helix-loop-helix DNA binding motif at the N-terminus, and a dimerization domain at the C-terminus. The DNA binding domain recognizes and binds a 17-bp sequence (CENP-B box) in the centromeric alpha satellite DNA. This protein is proposed to play an important role in the assembly of specific centromere structures in interphase nuclei and on mitotic chromosomes. It is also considered a major centromere autoantigen recognized by sera from patients with anti-centromere antibodies. |
| NA | ENSG00000101224 | CDC25B | cell division cycle 25B | 994 | CDC25B is a member of the CDC25 family of phosphatases. CDC25B activates the cyclin dependent kinase CDC2 by removing two phosphate groups and it is required for entry into mitosis. CDC25B shuttles between the nucleus and the cytoplasm due to nuclear localization and nuclear export signals. The protein is nuclear in the M and G1 phases of the cell cycle and moves to the cytoplasm during S and G2. CDC25B has oncogenic properties, although its role in tumor formation has not been determined. Multiple transcript variants for this gene exist. |
| NA | ENSG00000125843 | AP5S1 | adaptor related protein complex 5 sigma 1 subunit | 55317 | NA |
| NA | ENSG00000088888 | MAVS | mitochondrial antiviral signaling protein | 57506 | This gene encodes an intermediary protein necessary in the virus-triggered beta interferon signaling pathways. It is required for activation of transcription factors which regulate expression of beta interferon and contributes to antiviral immunity. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125779 | PANK2 | pantothenate kinase 2 | 80025 | This gene encodes a protein belonging to the pantothenate kinase family and is the only member of that family to be expressed in mitochondria. Pantothenate kinase is a key regulatory enzyme in the biosynthesis of coenzyme A (CoA) in bacteria and mammalian cells. It catalyzes the first committed step in the universal biosynthetic pathway leading to CoA and is itself subject to regulation through feedback inhibition by acyl CoA species. Mutations in this gene are associated with HARP syndrome and pantothenate kinase-associated neurodegeneration (PKAN), formerly Hallervorden-Spatz syndrome. Alternative splicing, involving the use of alternate first exons, results in multiple transcripts encoding different isoforms. |
| NA | ENSG00000101236 | RNF24 | ring finger protein 24 | 11237 | The protein encoded by this gene contains similarity to the Drosophila goliath protein and thus may function as a transcription factor. Multiple alternatively spliced transcript variants that encode different isoforms have been found for this gene. |
| NA | ENSG00000088826 | SMOX | spermine oxidase | 54498 | Polyamines are ubiquitous polycationic alkylamines which include spermine, spermidine, putrescine, and agmatine. These molecules participate in a broad range of cellular functions which include cell cycle modulation, scavenging reactive oxygen species, and the control of gene expression. These molecules also play important roles in neurotransmission through their regulation of cell-surface receptor activity, involvement in intracellular signalling pathways, and their putative roles as neurotransmitters. This gene encodes an FAD-containing enzyme that catalyzes the oxidation of spermine to spermadine and secondarily produces hydrogen peroxide. Multiple transcript variants encoding different isoenzymes have been identified for this gene, some of which have failed to demonstrate significant oxidase activity on natural polyamine substrates. The characterized isoenzymes have distinctive biochemical characteristics and substrate specificities, suggesting the existence of additional levels of complexity in polyamine catabolism. |
| NA | ENSG00000171867 | PRNP | prion protein | 5621 | The protein encoded by this gene is a membrane glycosylphosphatidylinositol-anchored glycoprotein that tends to aggregate into rod-like structures. The encoded protein contains a highly unstable region of five tandem octapeptide repeats. This gene is found on chromosome 20, approximately 20 kbp upstream of a gene which encodes a biochemically and structurally similar protein to the one encoded by this gene. Mutations in the repeat region as well as elsewhere in this gene have been associated with Creutzfeldt-Jakob disease, fatal familial insomnia, Gerstmann-Straussler disease, Huntington disease-like 1, and kuru. An overlapping open reading frame has been found for this gene that encodes a smaller, structurally unrelated protein, AltPrp. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000101265 | RASSF2 | Ras association domain family member 2 | 9770 | This gene encodes a protein that contains a Ras association domain. Similar to its cattle and sheep counterparts, this gene is located near the prion gene. Two alternatively spliced transcripts encoding the same isoform have been reported. |
| NA | ENSG00000089057 | SLC23A2 | solute carrier family 23 member 2 | 9962 | The absorption of vitamin C into the body and its distribution to organs requires two sodium-dependent vitamin C transporters. This gene encodes one of the two required transporters and the encoded protein accounts for tissue-specific uptake of vitamin C. Previously, this gene had an official symbol of SLC23A1. |
| NA | ENSG00000089063 | TMEM230 | transmembrane protein 230 | 29058 | NA |
| NA | ENSG00000132646 | PCNA | proliferating cell nuclear antigen | 5111 | The protein encoded by this gene is found in the nucleus and is a cofactor of DNA polymerase delta. The encoded protein acts as a homotrimer and helps increase the processivity of leading strand synthesis during DNA replication. In response to DNA damage, this protein is ubiquitinated and is involved in the RAD6-dependent DNA repair pathway. Two transcript variants encoding the same protein have been found for this gene. Pseudogenes of this gene have been described on chromosome 4 and on the X chromosome. |
| NA | ENSG00000101290 | CDS2 | CDP-diacylglycerol synthase 2 | 8760 | Breakdown products of phosphoinositides are ubiquitous second messengers that function downstream of many G protein-coupled receptors and tyrosine kinases regulating cell growth, calcium metabolism, and protein kinase C activity. This gene encodes an enzyme which regulates the amount of phosphatidylinositol available for signaling by catalyzing the conversion of phosphatidic acid to CDP-diacylglycerol. This enzyme is an integral membrane protein localized to two subcellular domains, the matrix side of the inner mitochondrial membrane where it is thought to be involved in the synthesis of phosphatidylglycerol and cardiolipin and the cytoplasmic side of the endoplasmic reticulum where it functions in phosphatidylinositol biosynthesis. Two genes encoding this enzyme have been identified in humans, one mapping to human chromosome 4q21 and a second to 20p13. |
| NA | ENSG00000125772 | GPCPD1 | glycerophosphocholine phosphodiesterase 1 | 56261 | NA |
| NA | ENSG00000171984 | C20orf196 | chromosome 20 open reading frame 196 | 149840 | NA |
| NA | ENSG00000089199 | CHGB | chromogranin B | 1114 | This gene encodes a tyrosine-sulfated secretory protein abundant in peptidergic endocrine cells and neurons. This protein may serve as a precursor for regulatory peptides. |
| NA | ENSG00000089195 | TRMT6 | tRNA methyltransferase 6 | 51605 | This gene encodes a member of the tRNA methyltransferase 6 protein family. A similar protein in yeast is part of a two component methyltransferase, which is involved in the posttranslational modification that produces the modified nucleoside 1-methyladenosine in tRNAs. Modified 1-methyladenosine influences initiator methionine stability and may be involved in the replication of human immunodeficiency virus type 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000088766 | CRLS1 | cardiolipin synthase 1 | 54675 | NA |
| NA | ENSG00000101311 | FERMT1 | fermitin family member 1 | 55612 | This gene encodes a member of the fermitin family, and contains a FERM domain and a pleckstrin homology domain. The encoded protein is involved in integrin signaling and linkage of the actin cytoskeleton to the extracellular matrix. Mutations in this gene have been linked to Kindler syndrome. |
| NA | ENSG00000125845 | BMP2 | bone morphogenetic protein 2 | 650 | This gene encodes a member of the transforming growth factor-beta (TGFB) superfamily. The encoded preproprotein is proteolytically processed to generate each subunit of the disulfide-linked homodimer, which induces bone and cartilage formation. |
| NA | ENSG00000125827 | TMX4 | thioredoxin related transmembrane protein 4 | 56255 | NA |
| NA | ENSG00000182621 | PLCB1 | phospholipase C beta 1 | 23236 | The protein encoded by this gene catalyzes the formation of inositol 1,4,5-trisphosphate and diacylglycerol from phosphatidylinositol 4,5-bisphosphate. This reaction uses calcium as a cofactor and plays an important role in the intracellular transduction of many extracellular signals. This gene is activated by two G-protein alpha subunits, alpha-q and alpha-11. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101333 | PLCB4 | phospholipase C beta 4 | 5332 | The protein encoded by this gene catalyzes the formation of inositol 1,4,5-trisphosphate and diacylglycerol from phosphatidylinositol 4,5-bisphosphate. This reaction uses calcium as a cofactor and plays an important role in the intracellular transduction of many extracellular signals in the retina. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101349 | PAK7 | p21 protein (Cdc42/Rac)-activated kinase 7 | 57144 | The protein encoded by this gene is a member of the PAK family of Ser/Thr protein kinases. PAK family members are known to be effectors of Rac/Cdc42 GTPases, which have been implicated in the regulation of cytoskeletal dynamics, proliferation, and cell survival signaling. This kinase contains a CDC42/Rac1 interactive binding (CRIB) motif, and has been shown to bind CDC42 in the presence of GTP. This kinase is predominantly expressed in brain. It is capable of promoting neurite outgrowth, and thus may play a role in neurite development. This kinase is associated with microtubule networks and induces microtubule stabilization. The subcellular localization of this kinase is tightly regulated during cell cycle progression. Alternatively spliced transcript variants encoding the same protein have been described. |
| NA | ENSG00000132623 | ANKEF1 | ankyrin repeat and EF-hand domain containing 1 | 63926 | NA |
| NA | ENSG00000125863 | MKKS | McKusick-Kaufman syndrome | 8195 | This gene encodes a protein which shares sequence similarity with other members of the type II chaperonin family. The encoded protein is a centrosome-shuttling protein and plays an important role in cytokinesis. This protein also interacts with other type II chaperonin members to form a complex known as the BBSome, which involves ciliary membrane biogenesis. This protein is encoded by a downstream open reading frame (dORF). Several upstream open reading frames (uORFs) have been identified, which repress the translation of the dORF, and two of which can encode small mitochondrial membrane proteins. Mutations in this gene have been observed in patients with Bardet-Biedl syndrome type 6, also known as McKusick-Kaufman syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000149346 | SLX4IP | SLX4 interacting protein | 128710 | NA |
| NA | ENSG00000101384 | JAG1 | jagged 1 | 182 | The jagged 1 protein encoded by JAG1 is the human homolog of the Drosophilia jagged protein. Human jagged 1 is the ligand for the receptor notch 1, the latter a human homolog of the Drosophilia jagged receptor notch. Mutations that alter the jagged 1 protein cause Alagille syndrome. Jagged 1 signalling through notch 1 has also been shown to play a role in hematopoiesis. |
| NA | ENSG00000132640 | BTBD3 | BTB domain containing 3 | 22903 | NA |
| NA | ENSG00000089123 | TASP1 | taspase 1 | 55617 | This gene encodes an endopeptidase that cleaves specific substrates following aspartate residues. The encoded protein undergoes posttranslational autoproteolytic processing to generate alpha and beta subunits, which reassemble into the active alpha2-beta2 heterotetramer. It is required to cleave MLL, a protein required for the maintenance of HOX gene expression, and TFIIA, a basal transcription factor. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000101247 | NDUFAF5 | NADH:ubiquinone oxidoreductase complex assembly factor 5 | 79133 | The NADH-ubiquinone oxidoreductase complex (complex I) of the mitochondrial respiratory chain catalyzes the transfer of electrons from NADH to ubiquinone, and consists of at least 43 subunits. The complex is located in the inner mitochondrial membrane. This gene encodes a mitochondrial protein that is associated with the matrix face of the mitochondrial inner membrane and is required for complex I assembly. A mutation in this gene results in mitochondrial complex I deficiency. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000172264 | MACROD2 | MACRO domain containing 2 | 140733 | NA |
| NA | ENSG00000125848 | FLRT3 | fibronectin leucine rich transmembrane protein 3 | 23767 | This gene encodes a member of the fibronectin leucine rich transmembrane protein (FLRT) family. FLRTs may function in cell adhesion and/or receptor signalling. Their protein structures resemble small leucine-rich proteoglycans found in the extracellular matrix. This gene is expressed in many tissues. Two alternatively spliced transcript variants encoding the same protein have been described for this gene. |
| NA | ENSG00000089177 | KIF16B | kinesin family member 16B | 55614 | The protein encoded by this gene is a kinesin-like protein that may be involved in intracellular trafficking. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125870 | SNRPB2 | small nuclear ribonucleoprotein polypeptide B | 6629 | The protein encoded by this gene associates with stem loop IV of U2 small nuclear ribonucleoprotein (U2 snRNP) in the presence of snRNP-A’. The encoded protein may play a role in pre-mRNA splicing. Autoantibodies from patients with systemic lupus erythematosus frequently recognize epitopes on the encoded protein. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000125868 | DSTN | destrin (actin depolymerizing factor) | 11034 | The product of this gene belongs to the actin-binding proteins ADF family. This family of proteins is responsible for enhancing the turnover rate of actin in vivo. This gene encodes the actin depolymerizing protein that severs actin filaments (F-actin) and binds to actin monomers (G-actin). Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000125844 | RRBP1 | ribosome binding protein 1 | 6238 | This gene encodes a ribosome-binding protein of the endoplasmic reticulum (ER) membrane. Studies suggest that this gene plays a role in ER proliferation, secretory pathways and secretory cell differentiation, and mediation of ER-microtubule interactions. Alternative splicing has been observed and protein isoforms are characterized by regions of N-terminal decapeptide and C-terminal heptad repeats. Splicing of the tandem repeats results in variations in ribosome-binding affinity and secretory function. The full-length nature of variants which differ in repeat length has not been determined. Pseudogenes of this gene have been identified on chromosomes 3 and 7, and RRBP1 has been excluded as a candidate gene in the cause of Alagille syndrome, the result of a mutation in a nearby gene on chromosome 20p12. |
| NA | ENSG00000089006 | SNX5 | sorting nexin 5 | 27131 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein functions in endosomal sorting, the phosphoinositide-signaling pathway, and macropinocytosis. This gene may play a role in the tumorigenesis of papillary thyroid carcinoma. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000125850 | OVOL2 | ovo like zinc finger 2 | 58495 | NA |
| NA | ENSG00000125871 | MGME1 | mitochondrial genome maintenance exonuclease 1 | 92667 | The protein encoded by this gene is a nuclear-encoded mitochondrial protein necessary for the maintenance of mitochondrial genome synthesis. The encoded protein is a RecB-type exonuclease and primarily cleaves single-stranded DNA. Defects in this gene have been associated with mitochondrial DNA depletion syndrome-11. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000232838 | PET117 | PET117 homolog | 100303755 | NA |
| NA | ENSG00000149474 | CSRP2BP | CSRP2 binding protein | 57325 | CSRP2 is a protein containing two LIM domains, which are double zinc finger motifs found in proteins of diverse function. CSRP2 and some related proteins are thought to act as protein adapters, bridging two or more proteins to form a larger protein complex. The protein encoded by this gene binds to one of the LIM domains of CSRP2 and contains an acetyltransferase domain. Although the encoded protein has been detected in the cytoplasm, it is predominantly a nuclear protein. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000125846 | ZNF133 | zinc finger protein 133 | 7692 | NA |
| NA | ENSG00000089091 | DZANK1 | double zinc ribbon and ankyrin repeat domains 1 | 55184 | This gene contains two ankyrin repeat-encoding regions. Ankyrin repeats are tandemly repeated modules of about 33 amino acids described as L-shaped structures consisting of a beta-hairpin and two alpha-helices. Ankyrin repeats occur in a large number of functionally diverse proteins, mainly from eukaryotes, and are known to function as protein-protein interaction domains. Alternative splicing has been observed for this gene but the full-length nature of additional variants has not been determined. |
| NA | ENSG00000132664 | POLR3F | polymerase (RNA) III subunit F | 10621 | The protein encoded by this gene is one of more than a dozen subunits forming eukaryotic RNA polymerase III (RNA Pol III), which transcribes 5S ribosomal RNA and tRNA genes. This protein has been shown to bind both TFIIIB90 and TBP, two subunits of RNA polymerase III transcription initiation factor IIIB (TFIIIB). Unlike most of the other RNA Pol III subunits, the encoded protein is unique to this polymerase. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000089050 | RBBP9 | retinoblastoma binding protein 9 | 10741 | The protein encoded by this gene is a retinoblastoma binding protein that may play a role in the regulation of cell proliferation and differentiation. Two alternatively spliced transcript variants of this gene with identical predicted protein products have been reported, one of which is a nonsense-mediated decay candidate. |
| NA | ENSG00000101310 | SEC23B | Sec23 homolog B, COPII coat complex component | 10483 | The protein encoded by this gene is a member of the SEC23 subfamily of the SEC23/SEC24 family, which is involved in vesicle trafficking. The encoded protein has similarity to yeast Sec23p component of COPII. COPII is the coat protein complex responsible for vesicle budding from the ER. The function of this gene product has been implicated in cargo selection and concentration. Multiple alternatively spliced transcript variants have been identified in this gene. |
| NA | ENSG00000125821 | DTD1 | D-tyrosyl-tRNA deacylase 1 | 92675 | The protein encoded by this gene is similar in sequence to histidyl-tRNA synthetase, which hydrolyzes D-tyrosyl-tRNA(Tyr) into D-tyrosine and free tRNA(Tyr). The encoded protein binds the DNA unwinding element and plays a role in the initiation of DNA replication. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000185052 | SLC24A3 | solute carrier family 24 member 3 | 57419 | Plasma membrane sodium/calcium exchangers are an important component of intracellular calcium homeostasis and electrical conduction. Potassium-dependent sodium/calcium exchangers such as SLC24A3 are believed to transport 1 intracellular calcium and 1 potassium ion in exchange for 4 extracellular sodium ions (Kraev et al., 2001 [PubMed 11294880]). |
| NA | ENSG00000173418 | NAA20 | N(alpha)-acetyltransferase 20, NatB catalytic subunit | 51126 | NAT5 is a component of N-acetyltransferase complex B (NatB). Human NatB performs cotranslational N(alpha)-terminal acetylation of methionine residues when they are followed by asparagine (Starheim et al., 2008 [PubMed 18570629]). |
| NA | ENSG00000101343 | CRNKL1 | crooked neck pre-mRNA splicing factor 1 | 51340 | The crooked neck (crn) gene of Drosophila is essential for embryogenesis and is thought to be involved in cell cycle progression and pre-mRNA splicing. A protein encoded by this human locus has been found to localize to pre-mRNA splicing complexes in the nucleus and is necessary for pre-mRNA splicing. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000188559 | RALGAPA2 | Ral GTPase activating protein catalytic alpha subunit 2 | 57186 | NA |
| NA | ENSG00000088930 | XRN2 | 5’-3’ exoribonuclease 2 | 22803 | This gene encodes a 5’-3’ exonuclease that promotes transcription termination at cotranscriptional cleavage sites. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000132661 | NXT1 | nuclear transport factor 2-like export factor 1 | 29107 | The protein encoded by this gene is located in the nuclear envelope. It has protein similarity to nuclear transport factor 2. This protein functions as a nuclear export factor in both RAN (Ras-related nuclear protein)- and CRM1 (required for chromosome region maintenance)-dependent pathways. It is found to stimulate the export of U1 snRNA in RAN- and CRM1-dependent pathways and the export of tRNA and mRNA in a CRM1-independent pathway. The encoded protein heterodimerizes with Tap protein and may regulate the ability of Tap protein to mediate nuclear mRNA export. The use of alternate polyadenylation sites has been found for this gene. |
| NA | ENSG00000125812 | GZF1 | GDNF inducible zinc finger protein 1 | 64412 | NA |
| NA | ENSG00000125814 | NAPB | NSF attachment protein beta | 63908 | NA |
| NA | ENSG00000101439 | CST3 | cystatin C | 1471 | The cystatin superfamily encompasses proteins that contain multiple cystatin-like sequences. Some of the members are active cysteine protease inhibitors, while others have lost or perhaps never acquired this inhibitory activity. There are three inhibitory families in the superfamily, including the type 1 cystatins (stefins), type 2 cystatins and the kininogens. The type 2 cystatin proteins are a class of cysteine proteinase inhibitors found in a variety of human fluids and secretions, where they appear to provide protective functions. The cystatin locus on chromosome 20 contains the majority of the type 2 cystatin genes and pseudogenes. This gene is located in the cystatin locus and encodes the most abundant extracellular inhibitor of cysteine proteases, which is found in high concentrations in biological fluids and is expressed in virtually all organs of the body. A mutation in this gene has been associated with amyloid angiopathy. Expression of this protein in vascular wall smooth muscle cells is severely reduced in both atherosclerotic and aneurysmal aortic lesions, establishing its role in vascular disease. In addition, this protein has been shown to have an antimicrobial function, inhibiting the replication of herpes simplex virus. Alternative splicing results in multiple transcript variants encoding a single protein. |
| NA | ENSG00000101463 | SYNDIG1 | synapse differentiation inducing 1 | 79953 | This gene encodes a protein that belongs to the interferon-induced transmembrane family of proteins. A similar protein in rat is thought to regulate the development of excitatory synapses. |
| NA | ENSG00000101474 | APMAP | adipocyte plasma membrane associated protein | 57136 | NA |
| NA | ENSG00000197586 | ENTPD6 | ectonucleoside triphosphate diphosphohydrolase 6 (putative) | 955 | ENTPD6 is similar to E-type nucleotidases (NTPases). NTPases, such as CD39, mediate catabolism of extracellular nucleotides. ENTPD6 contains 4 apyrase-conserved regions which are characteristic of NTPases. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000100994 | PYGB | phosphorylase, glycogen; brain | 5834 | The protein encoded by this gene is a glycogen phosphorylase found predominantly in the brain. The encoded protein forms homodimers which can associate into homotetramers, the enzymatically active form of glycogen phosphorylase. The activity of this enzyme is positively regulated by AMP and negatively regulated by ATP, ADP, and glucose-6-phosphate. This enzyme catalyzes the rate-determining step in glycogen degradation. |
| NA | ENSG00000100997 | ABHD12 | abhydrolase domain containing 12 | 26090 | This gene encodes an enzyme that catalyzes the hydrolysis of 2-arachidonoyl glycerol (2-AG), the main endocannabinoid lipid transmitter that acts on cannabinoid receptors, CB1 and CB2. The endocannabinoid system is involved in a wide range of physiological processes, including neurotransmission, mood, appetite, pain appreciation, addiction behavior, and inflammation. Mutations in this gene are associated with the neurodegenerative disease, PHARC (polyneuropathy, hearing loss, ataxia, retinitis pigmentosa, and cataract), resulting from an inborn error of endocannabinoid metabolism. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000101003 | GINS1 | GINS complex subunit 1 | 9837 | The yeast heterotetrameric GINS complex is made up of Sld5 (GINS4; MIM 610611), Psf1, Psf2 (GINS2; MIM 610609), and Psf3 (GINS3; MIM 610610). The formation of the GINS complex is essential for the initiation of DNA replication in yeast and Xenopus egg extracts (Ueno et al., 2005 [PubMed 16287864]). |
| NA | ENSG00000101004 | NINL | ninein like | 22981 | NA |
| NA | ENSG00000170191 | NANP | N-acetylneuraminic acid phosphatase | 140838 | NA |
| NA | ENSG00000130684 | ZNF337 | zinc finger protein 337 | 26152 | This gene encodes a zinc finger domain containing protein. The function of this protein has yet to be determined. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000125968 | ID1 | inhibitor of DNA binding 1, HLH protein | 3397 | The protein encoded by this gene is a helix-loop-helix (HLH) protein that can form heterodimers with members of the basic HLH family of transcription factors. The encoded protein has no DNA binding activity and therefore can inhibit the DNA binding and transcriptional activation ability of basic HLH proteins with which it interacts. This protein may play a role in cell growth, senescence, and differentiation. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000171552 | BCL2L1 | BCL2 like 1 | 598 | The protein encoded by this gene belongs to the BCL-2 protein family. BCL-2 family members form hetero- or homodimers and act as anti- or pro-apoptotic regulators that are involved in a wide variety of cellular activities. The proteins encoded by this gene are located at the outer mitochondrial membrane, and have been shown to regulate outer mitochondrial membrane channel (VDAC) opening. VDAC regulates mitochondrial membrane potential, and thus controls the production of reactive oxygen species and release of cytochrome C by mitochondria, both of which are the potent inducers of cell apoptosis. Alternative splicing results in multiple transcript variants encoding two different isoforms. The longer isoform acts as an apoptotic inhibitor and the shorter isoform acts as an apoptotic activator. |
| NA | ENSG00000088325 | TPX2 | TPX2, microtubule-associated | 22974 | NA |
| NA | ENSG00000088356 | PDRG1 | p53 and DNA damage regulated 1 | 81572 | NA |
| NA | ENSG00000260903 | XKR7 | XK related 7 | 343702 | NA |
| NA | ENSG00000101331 | CCM2L | CCM2 like scaffolding protein | 140706 | NA |
| NA | ENSG00000101337 | TM9SF4 | transmembrane 9 superfamily member 4 | 9777 | NA |
| NA | ENSG00000126003 | PLAGL2 | PLAG1 like zinc finger 2 | 5326 | Pleiomorphic adenoma gene-like 2 is a zinc-finger protein that recognizes DNA and/or RNA. |
| NA | ENSG00000101346 | POFUT1 | protein O-fucosyltransferase 1 | 23509 | This gene encodes a member of the glycosyltransferase O-Fuc family. This enzyme adds O-fucose through an O-glycosidic linkage to conserved serine or threonine residues in the epidermal growth factor-like repeats of a number of cell surface and secreted proteins. O-fucose glycans are involved in ligand-induced receptor signaling. Alternative splicing of this gene results in two transcript variants encoding different isoforms. |
| NA | ENSG00000101350 | KIF3B | kinesin family member 3B | 9371 | The protein encoded by this gene acts as a heterodimer with kinesin family member 3A to aid in chromosome movement during mitosis and meiosis. The encoded protein is a plus end-directed microtubule motor and can interact with the SMC3 subunit of the cohesin complex. In addition, the encoded protein may be involved in the intracellular movement of membranous organelles. This protein and kinesin family member 3A form the kinesin II subfamily of the kinesin superfamily. |
| NA | ENSG00000171456 | ASXL1 | additional sex combs like 1, transcriptional regulator | 171023 | This gene is similar to the Drosophila additional sex combs gene, which encodes a chromatin-binding protein required for normal determination of segment identity in the developing embryo. The protein is a member of the Polycomb group of proteins, which are necessary for the maintenance of stable repression of homeotic and other loci. The protein is thought to disrupt chromatin in localized areas, enhancing transcription of certain genes while repressing the transcription of other genes. The protein encoded by this gene functions as a ligand-dependent co-activator for retinoic acid receptor in cooperation with nuclear receptor coactivator 1. Mutations in this gene are associated with myelodysplastic syndromes and chronic myelomonocytic leukemia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197183 | NOL4L | nucleolar protein 4-like | 140688 | NA |
| NA | ENSG00000149600 | COMMD7 | COMM domain containing 7 | 149951 | NA |
| NA | ENSG00000088305 | DNMT3B | DNA (cytosine-5-)-methyltransferase 3 beta | 1789 | CpG methylation is an epigenetic modification that is important for embryonic development, imprinting, and X-chromosome inactivation. Studies in mice have demonstrated that DNA methylation is required for mammalian development. This gene encodes a DNA methyltransferase which is thought to function in de novo methylation, rather than maintenance methylation. The protein localizes primarily to the nucleus and its expression is developmentally regulated. Mutations in this gene cause the immunodeficiency-centromeric instability-facial anomalies (ICF) syndrome. Eight alternatively spliced transcript variants have been described. The full length sequences of variants 4 and 5 have not been determined. |
| NA | ENSG00000101367 | MAPRE1 | microtubule associated protein RP/EB family member 1 | 22919 | The protein encoded by this gene was first identified by its binding to the APC protein which is often mutated in familial and sporadic forms of colorectal cancer. This protein localizes to microtubules, especially the growing ends, in interphase cells. During mitosis, the protein is associated with the centrosomes and spindle microtubules. The protein also associates with components of the dynactin complex and the intermediate chain of cytoplasmic dynein. Because of these associations, it is thought that this protein is involved in the regulation of microtubule structures and chromosome stability. This gene is a member of the RP/EB family. |
| NA | ENSG00000101391 | CDK5RAP1 | CDK5 regulatory subunit associated protein 1 | 51654 | This gene encodes a regulator of cyclin-dependent kinase 5 activity. This protein has also been reported to modify RNA by adding a methylthio-group and may thus have a dual function as an RNA methylthiotransferase and as an inhibitor of cyclin-dependent kinase 5 activity. Alternative splicing results in multiple transcript variants that encode different isoforms. |
| NA | ENSG00000101400 | SNTA1 | syntrophin alpha 1 | 6640 | Syntrophins are cytoplasmic peripheral membrane scaffold proteins that are components of the dystrophin-associated protein complex. This gene is a member of the syntrophin gene family and encodes the most common syntrophin isoform found in cardiac tissues. The N-terminal PDZ domain of this syntrophin protein interacts with the C-terminus of the pore-forming alpha subunit (SCN5A) of the cardiac sodium channel Nav1.5. This protein also associates cardiac sodium channels with the nitric oxide synthase-PMCA4b (plasma membrane Ca-ATPase subtype 4b) complex in cardiomyocytes. This gene is a susceptibility locus for Long-QT syndrome (LQT) - an inherited disorder associated with sudden cardiac death from arrhythmia - and sudden infant death syndrome (SIDS). This protein also associates with dystrophin and dystrophin-related proteins at the neuromuscular junction and alters intracellular calcium ion levels in muscle tissue. |
| NA | ENSG00000078699 | CBFA2T2 | CBFA2/RUNX1 translocation partner 2 | 9139 | In acute myeloid leukemia, especially in the M2 subtype, the t(8;21)(q22;q22) translocation is one of the most frequent karyotypic abnormalities. The translocation produces a chimeric gene made up of the 5’-region of the RUNX1 (AML1) gene fused to the 3’-region of the CBFA2T1 (MTG8) gene. The chimeric protein is thought to associate with the nuclear corepressor/histone deacetylase complex to block hematopoietic differentiation. The protein encoded by this gene binds to the AML1-MTG8 complex and may be important in promoting leukemogenesis. Several transcript variants are thought to exist for this gene, but the full-length natures of only three have been described. |
| NA | ENSG00000125967 | NECAB3 | N-terminal EF-hand calcium binding protein 3 | 63941 | The protein encoded by this gene interacts with the amino-terminal domain of the neuron-specific X11-like protein (X11L), inhibits the association of X11L with amyloid precursor protein through a non-competitive mechanism, and abolishes the suppression of beta-amyloid production by X11L. This protein, together with X11L, may play an important role in the regulatory system of amyloid precursor protein metabolism and beta-amyloid generation. The protein is phosphorylated by NIMA-related expressed kinase 2, and localizes to the Golgi apparatus. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101412 | E2F1 | E2F transcription factor 1 | 1869 | The protein encoded by this gene is a member of the E2F family of transcription factors. The E2F family plays a crucial role in the control of cell cycle and action of tumor suppressor proteins and is also a target of the transforming proteins of small DNA tumor viruses. The E2F proteins contain several evolutionally conserved domains found in most members of the family. These domains include a DNA binding domain, a dimerization domain which determines interaction with the differentiation regulated transcription factor proteins (DP), a transactivation domain enriched in acidic amino acids, and a tumor suppressor protein association domain which is embedded within the transactivation domain. This protein and another 2 members, E2F2 and E2F3, have an additional cyclin binding domain. This protein binds preferentially to retinoblastoma protein pRB in a cell-cycle dependent manner. It can mediate both cell proliferation and p53-dependent/independent apoptosis. |
| NA | ENSG00000101417 | PXMP4 | peroxisomal membrane protein 4 | 11264 | NA |
| NA | ENSG00000131061 | ZNF341 | zinc finger protein 341 | 84905 | NA |
| NA | ENSG00000101421 | CHMP4B | charged multivesicular body protein 4B | 128866 | This gene encodes a member of the chromatin-modifying protein/charged multivesicular body protein (CHMP) protein family. The protein is part of the endosomal sorting complex required for transport (ESCRT) complex III (ESCRT-III), which functions in the sorting of endocytosed cell-surface receptors into multivesicular endosomes. The ESCRT machinery also functions in the final abscisson stage of cytokinesis and in the budding of enveloped viruses such as HIV-1. The three proteins of the CHMP4 subfamily interact with programmed cell death 6 interacting protein (PDCD6IP, also known as ALIX), which also functions in the ESCRT pathway. The CHMP4 proteins assemble into membrane-attached 5-nm filaments that form circular scaffolds and promote or stabilize outward budding. These polymers are proposed to help generate the luminal vesicles of multivesicular bodies. Mutations in this gene result in autosomal dominant posterior polar cataracts. |
| NA | ENSG00000125970 | RALY | RALY heterogeneous nuclear ribonucleoprotein | 22913 | This gene encodes a member of the heterogeneous nuclear ribonucleoprotein (hnRNP) gene family. This protein may play a role in pre-mRNA splicing and in embryonic development. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000125977 | EIF2S2 | eukaryotic translation initiation factor 2 subunit beta | 8894 | Eukaryotic translation initiation factor 2 (EIF-2) functions in the early steps of protein synthesis by forming a ternary complex with GTP and initiator tRNA and binding to a 40S ribosomal subunit. EIF-2 is composed of three subunits, alpha, beta, and gamma, with the protein encoded by this gene representing the beta subunit. The beta subunit catalyzes the exchange of GDP for GTP, which recycles the EIF-2 complex for another round of initiation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101444 | AHCY | adenosylhomocysteinase | 191 | S-adenosylhomocysteine hydrolase belongs to the adenosylhomocysteinase family. It catalyzes the reversible hydrolysis of S-adenosylhomocysteine (AdoHcy) to adenosine (Ado) and L-homocysteine (Hcy). Thus, it regulates the intracellular S-adenosylhomocysteine (SAH) concentration thought to be important for transmethylation reactions. Deficiency in this protein is one of the different causes of hypermethioninemia. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000078747 | ITCH | itchy E3 ubiquitin protein ligase | 83737 | This gene encodes a member of the Nedd4 family of HECT domain E3 ubiquitin ligases. HECT domain E3 ubiquitin ligases transfer ubiquitin from E2 ubiquitin-conjugating enzymes to protein substrates, thus targeting specific proteins for lysosomal degradation. The encoded protein plays a role in multiple cellular processes including erythroid and lymphoid cell differentiation and the regulation of immune responses. Mutations in this gene are a cause of syndromic multisystem autoimmune disease. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000125971 | DYNLRB1 | dynein light chain roadblock-type 1 | 83658 | This gene is a member of the roadblock dynein light chain family. The encoded cytoplasmic protein is capable of binding intermediate chain proteins, interacts with transforming growth factor-beta, and has been implicated in the regulation of actin modulating proteins. Upregulation of this gene has been associated with hepatocellular carcinomas, suggesting that this gene may be involved in tumor progression. Alternative splicing results in multiple transcript variants. Pseudogenes of this gene have been defined on chromosomes 12 and 18. |
| NA | ENSG00000101464 | PIGU | phosphatidylinositol glycan anchor biosynthesis class U | 128869 | The protein encoded by this gene shares similarity with Saccharomyces cerevisiae Cdc91, a predicted integral membrane protein that may function in cell division control. The protein encoded by this gene is the fifth subunit of GPI transamidase that attaches GPI-anchors to proteins. |
| NA | ENSG00000198646 | NCOA6 | nuclear receptor coactivator 6 | 23054 | The protein encoded by this gene is a transcriptional coactivator that can interact with nuclear hormone receptors to enhance their transcriptional activator functions. This protein has been shown to be involved in the hormone-dependent coactivation of several receptors, including prostanoid, retinoid, vitamin D3, thyroid hormone, and steroid receptors. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000078804 | TP53INP2 | tumor protein p53 inducible nuclear protein 2 | 58476 | NA |
| NA | ENSG00000131067 | GGT7 | gamma-glutamyltransferase 7 | 2686 | This gene is a member of a gene family that encodes enzymes involved in both the metabolism of glutathione and in the transpeptidation of amino acids. Changes in the activity of gamma-glutamyltransferase may signal preneoplastic or toxic conditions in the liver or kidney. The protein encoded by this gene consists of a heavy and a light chain, and it can interact with CT120, a plasma membrane-associated protein that is possibly involved in lung carcinogenesis. |
| NA | ENSG00000131069 | ACSS2 | acyl-CoA synthetase short-chain family member 2 | 55902 | This gene encodes a cytosolic enzyme that catalyzes the activation of acetate for use in lipid synthesis and energy generation. The protein acts as a monomer and produces acetyl-CoA from acetate in a reaction that requires ATP. Expression of this gene is regulated by sterol regulatory element-binding proteins, transcription factors that activate genes required for the synthesis of cholesterol and unsaturated fatty acids. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100983 | GSS | glutathione synthetase | 2937 | Glutathione is important for a variety of biological functions, including protection of cells from oxidative damage by free radicals, detoxification of xenobiotics, and membrane transport. The protein encoded by this gene functions as a homodimer to catalyze the second step of glutathione biosynthesis, which is the ATP-dependent conversion of gamma-L-glutamyl-L-cysteine to glutathione. Defects in this gene are a cause of glutathione synthetase deficiency. |
| NA | ENSG00000088298 | EDEM2 | ER degradation enhancer, mannosidase alpha-like 2 | 55741 | In the endoplasmic reticulum (ER), misfolded proteins are retrotranslocated to the cytosol and degraded by the proteasome in a process known as ER-associated degradation (ERAD). EDEM2 belongs to a family of proteins involved in ERAD of glycoproteins (Mast et al., 2005 [PubMed 15537790]). |
| NA | ENSG00000101000 | PROCR | protein C receptor | 10544 | The protein encoded by this gene is a receptor for activated protein C, a serine protease activated by and involved in the blood coagulation pathway. The encoded protein is an N-glycosylated type I membrane protein that enhances the activation of protein C. Mutations in this gene have been associated with venous thromboembolism and myocardial infarction, as well as with late fetal loss during pregnancy. The encoded protein may also play a role in malarial infection and has been associated with cancer. |
| NA | ENSG00000125966 | MMP24 | matrix metallopeptidase 24 | 10893 | This gene encodes a member of the peptidase M10 family of matrix metalloproteinases (MMPs). Proteins in this family are involved in the breakdown of extracellular matrix in normal physiological processes, such as embryonic development, reproduction, and tissue remodeling, as well as in disease processes, such as arthritis and metastasis. The encoded preproprotein is proteolytically processed to generate the mature protease. Unlike most MMPs, which are secreted, this protease is a member of the membrane-type MMP (MT-MMP) subfamily, contains a transmembrane domain and is expressed at the cell surface. Substrates of this protease include the proteins cadherin 2 and matrix metallopeptidase 2 (also known as 72 kDa type IV collagenase). |
| NA | ENSG00000242372 | EIF6 | eukaryotic translation initiation factor 6 | 3692 | Hemidesmosomes are structures which link the basal lamina to the intermediate filament cytoskeleton. An important functional component of hemidesmosomes is the integrin beta-4 subunit (ITGB4), a protein containing two fibronectin type III domains. The protein encoded by this gene binds to the fibronectin type III domains of ITGB4 and may help link ITGB4 to the intermediate filament cytoskeleton. The encoded protein, which is insoluble and found both in the nucleus and in the cytoplasm, can function as a translation initiation factor and prevent the association of the 40S and 60S ribosomal subunits. Multiple non-protein coding transcript variants and variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000101019 | UQCC1 | ubiquinol-cytochrome c reductase complex assembly factor 1 | 55245 | This gene encodes a transmembrane protein that is structurally similar to the mouse basic fibroblast growth factor repressed ZIC-binding protein. In mouse this protein may be involved in fibroblast growth factor regulated growth control. In humans, polymorphisms in this gene are associated with variation in human height and osteoarthritis. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000126001 | CEP250 | centrosomal protein 250kDa | 11190 | This gene encodes a core centrosomal protein required for centriole-centriole cohesion during interphase of the cell cycle. The encoded protein dissociates from the centrosomes when parental centrioles separate at the beginning of mitosis. The protein associates with and is phosphorylated by NIMA-related kinase 2, which is also associated with the centrosome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000125991 | ERGIC3 | ERGIC and golgi 3 | 51614 | NA |
| NA | ENSG00000061656 | SPAG4 | sperm associated antigen 4 | 6676 | The mammalian sperm flagellum contains two cytoskeletal structures associated with the axoneme: the outer dense fibers surrounding the axoneme in the midpiece and principal piece and the fibrous sheath surrounding the outer dense fibers in the principal piece of the tail. Defects in these structures are associated with abnormal tail morphology, reduced sperm motility, and infertility. In the rat, the protein encoded by this gene associates with an outer dense fiber protein via a leucine zipper motif and localizes to the microtubules of the manchette and axoneme during sperm tail development. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000214078 | CPNE1 | copine 1 | 8904 | Calcium-dependent membrane-binding proteins may regulate molecular events at the interface of the cell membrane and cytoplasm. This gene encodes a calcium-dependent protein that also contains two N-terminal type II C2 domains and an integrin A domain-like sequence in the C-terminus. However, the encoded protein does not contain a predicted signal sequence or transmembrane domains. This protein has a broad tissue distribution and it may function in membrane trafficking. This gene and the gene for RNA binding motif protein 12 overlap at map location 20q11.21. Alternate splicing results in multiple transcript variants encoding different proteins. |
| NA | ENSG00000244462 | RBM12 | RNA binding motif protein 12 | 10137 | This gene encodes a protein that contains several RNA-binding motifs, potential transmembrane domains, and proline-rich regions. This gene and the gene for copine I overlap at map location 20q11.21. Alternative splicing in the 5’ UTR results in four transcript variants. All variants encode the same protein. |
| NA | ENSG00000244005 | NFS1 | NFS1 cysteine desulfurase | 9054 | Iron-sulfur clusters are required for the function of many cellular enzymes. The proteins encoded by this gene supply inorganic sulfur to these clusters by removing the sulfur from cysteine, creating alanine in the process. This gene uses alternate in-frame translation initiation sites to generate mitochondrial forms and cytoplasmic/nuclear forms. Selection of the alternative initiation sites is determined by the cytosolic pH. The encoded proteins belong to the class-V family of pyridoxal phosphate-dependent aminotransferases. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000125995 | ROMO1 | reactive oxygen species modulator 1 | 140823 | The protein encoded by this gene is a mitochondrial membrane protein that is responsible for increasing the level of reactive oxygen species (ROS) in cells. The protein also has antimicrobial activity against a variety of bacteria by inducing bacterial membrane breakage. |
| NA | ENSG00000131051 | RBM39 | RNA binding motif protein 39 | 9584 | This gene encodes a member of the U2AF65 family of proteins. The encoded protein is found in the nucleus, where it co-localizes with core spliceosomal proteins. It has been shown to play a role in both steroid hormone receptor-mediated transcription and alternative splicing, and it is also a transcriptional coregulator of the viral oncoprotein v-Rel. Multiple transcript variants have been observed for this gene. A related pseudogene has been identified on chromosome X. |
| NA | ENSG00000025293 | PHF20 | PHD finger protein 20 | 51230 | NA |
| NA | ENSG00000088367 | EPB41L1 | erythrocyte membrane protein band 4.1-like 1 | 2036 | Erythrocyte membrane protein band 4.1 (EPB41) is a multifunctional protein that mediates interactions between the erythrocyte cytoskeleton and the overlying plasma membrane. The encoded protein binds and stabilizes D2 and D3 dopamine receptors at the neuronal plasma membrane. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000131043 | AAR2 | AAR2 splicing factor homolog | 25980 | This gene encodes the homolog of the yeast A1-alpha2 repressin protein that is involved in mRNA splicing. Alternately spliced transcript variants have been found for this gene. |
| NA | ENSG00000080845 | DLGAP4 | discs large homolog associated protein 4 | 22839 | The product of this gene is a membrane-associated guanylate kinase found at the postsynaptic density in neuronal cells. It is a signaling molecule that can interact with potassium channels and receptors, as well as other signaling molecules. The protein encoded by this gene can interact with PSD-95 through its guanylate kinase domain and may be involved in clustering PSD-95 in the postsynaptic density region. The encoded protein is one of at least four similar proteins that have been found. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101335 | MYL9 | myosin light chain 9 | 10398 | Myosin, a structural component of muscle, consists of two heavy chains and four light chains. The protein encoded by this gene is a myosin light chain that may regulate muscle contraction by modulating the ATPase activity of myosin heads. The encoded protein binds calcium and is activated by myosin light chain kinase. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000118707 | TGIF2 | TGFB induced factor homeobox 2 | 60436 | The protein encoded by this gene is a DNA-binding homeobox protein and a transcriptional repressor, which appears to repress transcription by recruiting histone deacetylases to TGF beta-responsive genes. This gene is amplified and over-expressed in some ovarian cancers. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 1. Read-through transcription also exists between this gene and the neighboring downstream C20orf24 (chromosome 20 open reading frame 24) gene. |
| NA | ENSG00000101084 | C20orf24 | chromosome 20 open reading frame 24 | 55969 | NA |
| NA | ENSG00000101079 | NDRG3 | NDRG family member 3 | 57446 | NA |
| NA | ENSG00000149636 | DSN1 | DSN1 homolog, MIS12 kinetochore complex component | 79980 | This gene encodes a kinetochore protein that functions as part of the minichromosome instability-12 centromere complex. The encoded protein is required for proper kinetochore assembly and progression through the cell cycle. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000149639 | SOGA1 | suppressor of glucose, autophagy associated 1 | 140710 | NA |
| NA | ENSG00000101347 | SAMHD1 | SAM domain and HD domain 1 | 25939 | This gene may play a role in regulation of the innate immune response. The encoded protein is upregulated in response to viral infection and may be involved in mediation of tumor necrosis factor-alpha proinflammatory responses. Mutations in this gene have been associated with Aicardi-Goutieres syndrome. |
| NA | ENSG00000080839 | RBL1 | retinoblastoma-like 1 | 5933 | The protein encoded by this gene is similar in sequence and possibly function to the product of the retinoblastoma 1 (RB1) gene. The RB1 gene product is a tumor suppressor protein that appears to be involved in cell cycle regulation, as it is phosphorylated in the S to M phase transition and is dephosphorylated in the G1 phase of the cell cycle. Both the RB1 protein and the product of this gene can form a complex with adenovirus E1A protein and SV40 large T-antigen, with the SV40 large T-antigen binding only to the unphosphorylated form of each protein. In addition, both proteins can inhibit the transcription of cell cycle genes containing E2F binding sites in their promoters. Due to the sequence and biochemical similarities with the RB1 protein, it is thought that the protein encoded by this gene may also be a tumor suppressor. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101353 | MROH8 | maestro heat like repeat family member 8 | 140699 | The protein encoded by this gene belongs to the maestro heat-like repeat family. The exact function of this gene is not known, however, in a genome-wide association study using hippocampal atrophy as a quantitative trait, this gene has been associated with Alzheimer’s disease (PMID:19668339). Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101363 | MANBAL | mannosidase beta like | 63905 | NA |
| NA | ENSG00000197122 | SRC | SRC proto-oncogene, non-receptor tyrosine kinase | 6714 | This gene is highly similar to the v-src gene of Rous sarcoma virus. This proto-oncogene may play a role in the regulation of embryonic development and cell growth. The protein encoded by this gene is a tyrosine-protein kinase whose activity can be inhibited by phosphorylation by c-SRC kinase. Mutations in this gene could be involved in the malignant progression of colon cancer. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000166619 | BLCAP | bladder cancer associated protein | 10904 | This gene encodes a protein that reduces cell growth by stimulating apoptosis. Alternative splicing and the use of alternative promoters result in multiple transcript variants encoding the same protein. This gene is imprinted in brain where different transcript variants are expressed from each parental allele. Transcript variants initiating from the upstream promoter are expressed preferentially from the maternal allele, while transcript variants initiating downstream of the interspersed NNAT gene (GeneID:4826) are expressed from the paternal allele. Transcripts at this locus may also undergo A to I editing, resulting in amino acid changes at three positions in the N-terminus of the protein. |
| NA | ENSG00000132792 | CTNNBL1 | catenin beta like 1 | 56259 | The protein encoded by this gene is a component of the pre-mRNA-processing factor 19-cell division cycle 5-like (PRP19-CDC5L) protein complex, which activates pre-mRNA splicing and is an integral part of the spliceosome. The encoded protein is also a nuclear localization sequence binding protein, and binds to activation-induced deaminase and is important for antibody diversification. This gene may also be associated with the development of obesity. Alternative splicing results in multiple transcript variants. A pseudogene of this gene has been defined on the X chromosome. |
| NA | ENSG00000101407 | TTI1 | TELO2 interacting protein 1 | 9675 | NA |
| NA | ENSG00000101413 | RPRD1B | regulation of nuclear pre-mRNA domain containing 1B | 58490 | NA |
| NA | ENSG00000170471 | RALGAPB | Ral GTPase activating protein non-catalytic beta subunit | 57148 | NA |
| NA | ENSG00000101442 | ACTR5 | ARP5 actin-related protein 5 homolog (yeast) | 79913 | NA |
| NA | ENSG00000101445 | PPP1R16B | protein phosphatase 1 regulatory subunit 16B | 26051 | The protein encoded by this gene is membrane-associated and contains five ankyrin repeats, a protein phosphatase-1-interacting domain, and a carboxy-terminal CAAX box domain. Synthesis of the encoded protein is inhibited by transforming growth factor beta-1. The protein may bind to the membrane through its CAAX box domain and may act as a signaling molecule through interaction with protein phosphatase-1. Alternative splicing results in multiple transcript variants encoding different isoforms that may undergo similar processing to generate mature protein. |
| NA | ENSG00000101447 | FAM83D | family with sequence similarity 83 member D | 81610 | NA |
| NA | ENSG00000101452 | DHX35 | DEAH-box helicase 35 | 60625 | DEAD box proteins characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of the DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. The function of this gene product which is a member of this family, has not been determined. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000204103 | MAFB | v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog B | 9935 | The protein encoded by this gene is a basic leucine zipper (bZIP) transcription factor that plays an important role in the regulation of lineage-specific hematopoiesis. The encoded nuclear protein represses ETS1-mediated transcription of erythroid-specific genes in myeloid cells. This gene contains no introns. |
| NA | ENSG00000198900 | TOP1 | topoisomerase (DNA) I | 7150 | This gene encodes a DNA topoisomerase, an enzyme that controls and alters the topologic states of DNA during transcription. This enzyme catalyzes the transient breaking and rejoining of a single strand of DNA which allows the strands to pass through one another, thus altering the topology of DNA. This gene is localized to chromosome 20 and has pseudogenes which reside on chromosomes 1 and 22. |
| NA | ENSG00000124181 | PLCG1 | phospholipase C gamma 1 | 5335 | The protein encoded by this gene catalyzes the formation of inositol 1,4,5-trisphosphate and diacylglycerol from phosphatidylinositol 4,5-bisphosphate. This reaction uses calcium as a cofactor and plays an important role in the intracellular transduction of receptor-mediated tyrosine kinase activators. For example, when activated by SRC, the encoded protein causes the Ras guanine nucleotide exchange factor RasGRP1 to translocate to the Golgi, where it activates Ras. Also, this protein has been shown to be a major substrate for heparin-binding growth factor 1 (acidic fibroblast growth factor)-activated tyrosine kinase. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000174306 | ZHX3 | zinc fingers and homeoboxes 3 | 23051 | This gene encodes a member of the zinc fingers and homeoboxes (ZHX) gene family. The encoded protein contains two C2H2-type zinc fingers and five homeodomains and forms a dimer with itself or with zinc fingers and homeoboxes family member 1. In the nucleus, the dimerized protein interacts with the A subunit of the ubiquitous transcription factor nuclear factor-Y and may function as a transcriptional repressor. |
| NA | ENSG00000183798 | EMILIN3 | elastin microfibril interfacer 3 | 90187 | NA |
| NA | ENSG00000124177 | CHD6 | chromodomain helicase DNA binding protein 6 | 84181 | This gene encodes a member of the SNF2/RAD54 helicase protein family. The encoded protein contains two chromodomains, a helicase domain, and an ATPase domain. Several multi-subunit protein complexes remodel chromatin to allow patterns of cell type-specific gene expression, and the encoded protein is thought to be a core member of one or more of these chromatin remodeling complexes. The encoded protein may function as a transcriptional repressor and is involved in the cellular repression of influenza virus replication. |
| NA | ENSG00000196090 | PTPRT | protein tyrosine phosphatase, receptor type T | 11122 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP possesses an extracellular region, a single transmembrane region, and two tandem intracellular catalytic domains, and thus represents a receptor-type PTP. The extracellular region contains a meprin-A5 antigen-PTP (MAM) domain, Ig-like and fibronectin type III-like repeats. The protein domain structure and the expression pattern of the mouse counterpart of this PTP suggest its roles in both signal transduction and cellular adhesion in the central nervous system. Two alternatively spliced transcript variants of this gene, which encode distinct proteins, have been reported. |
| NA | ENSG00000124193 | SRSF6 | serine/arginine-rich splicing factor 6 | 6431 | The protein encoded by this gene is involved in mRNA splicing and may play a role in the determination of alternative splicing. The encoded nuclear protein belongs to the splicing factor SR family and has been shown to bind with and modulate another member of the family, SFRS12. Alternative splicing results in multiple transcript variants. In addition, two pseudogenes, one on chromosome 17 and the other on the X chromosome, have been found for this gene. |
| NA | ENSG00000185513 | L3MBTL1 | l(3)mbt-like 1 (Drosophila) | 26013 | This gene represents a polycomb group gene. The encoded protein functions to regulate gene activity, likely via chromatin modification. The encoded protein may also be necessary for mitosis. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000101052 | IFT52 | intraflagellar transport 52 | 51098 | NA |
| NA | ENSG00000101057 | MYBL2 | MYB proto-oncogene like 2 | 4605 | The protein encoded by this gene, a member of the MYB family of transcription factor genes, is a nuclear protein involved in cell cycle progression. The encoded protein is phosphorylated by cyclin A/cyclin-dependent kinase 2 during the S-phase of the cell cycle and possesses both activator and repressor activities. It has been shown to activate the cell division cycle 2, cyclin D1, and insulin-like growth factor-binding protein 5 genes. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132823 | OSER1 | oxidative stress responsive serine-rich 1 | 51526 | NA |
| NA | ENSG00000124194 | GDAP1L1 | ganglioside induced differentiation associated protein 1-like 1 | 78997 | The ganglioside GD3 synthase causes cell differentiation with neurite sprouting when transfected into the mouse neuroblastoma cell line Neuro2a. After differentiation, the expression of several genes is upregulated, including one that encodes a protein termed ganglioside-induced differentiation-associated protein 1 (Gdap1). A similar gene was found in humans, and mutations in the human gene are associated with Charcot-Marie-Tooth type 4A disease. The protein encoded by this gene is similar in sequence to the human GDAP1 protein. Several transcript variants encoding different isoforms, as well as a noncoding transcript variant, have been found for this gene. |
| NA | ENSG00000197296 | FITM2 | fat storage inducing transmembrane protein 2 | 128486 | FIT2 belongs to an evolutionarily conserved family of proteins involved in fat storage (Kadereit et al., 2008 [PubMed 18160536]). |
| NA | ENSG00000124120 | TTPAL | tocopherol (alpha) transfer protein-like | 79183 | NA |
| NA | ENSG00000132824 | SERINC3 | serine incorporator 3 | 10955 | NA |
| NA | ENSG00000168734 | PKIG | protein kinase (cAMP-dependent, catalytic) inhibitor gamma | 11142 | This gene encodes a member of the protein kinase inhibitor family. Studies of a similar protein in mice suggest that this protein acts as a potent competitive cAMP-dependent protein kinase inhibitor, and is a predominant form of inhibitor in various tissues. The encoded protein may be involved in osteogenesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196839 | ADA | adenosine deaminase | 100 | This gene encodes an enzyme that catalyzes the hydrolysis of adenosine to inosine. Various mutations have been described for this gene and have been linked to human diseases. Deficiency in this enzyme causes a form of severe combined immunodeficiency disease (SCID), in which there is dysfunction of both B and T lymphocytes with impaired cellular immunity and decreased production of immunoglobulins, whereas elevated levels of this enzyme have been associated with congenital hemolytic anemia. |
| NA | ENSG00000101098 | RIMS4 | regulating synaptic membrane exocytosis 4 | 140730 | NA |
| NA | ENSG00000166913 | YWHAB | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein beta | 7529 | This gene encodes a protein belonging to the 14-3-3 family of proteins, members of which mediate signal transduction by binding to phosphoserine-containing proteins. This highly conserved protein family is found in both plants and mammals. The encoded protein has been shown to interact with RAF1 and CDC25 phosphatases, suggesting that it may play a role in linking mitogenic signaling and the cell cycle machinery. Two transcript variants, which encode the same protein, have been identified for this gene. |
| NA | ENSG00000101104 | PABPC1L | poly(A) binding protein, cytoplasmic 1-like | 80336 | NA |
| NA | ENSG00000025772 | TOMM34 | translocase of outer mitochondrial membrane 34 | 10953 | The protein encoded by this gene is involved in the import of precursor proteins into mitochondria. The encoded protein has a chaperone-like activity, binding the mature portion of unfolded proteins and aiding their import into mitochondria. This protein, which is found in the cytoplasm and sometimes associated with the outer mitochondrial membrane, has a weak ATPase activity and contains 6 TPR repeats. |
| NA | ENSG00000101109 | STK4 | serine/threonine kinase 4 | 6789 | The protein encoded by this gene is a cytoplasmic kinase that is structurally similar to the yeast Ste20p kinase, which acts upstream of the stress-induced mitogen-activated protein kinase cascade. The encoded protein can phosphorylate myelin basic protein and undergoes autophosphorylation. A caspase-cleaved fragment of the encoded protein has been shown to be capable of phosphorylating histone H2B. The particular phosphorylation catalyzed by this protein has been correlated with apoptosis, and it’s possible that this protein induces the chromatin condensation observed in this process. |
| NA | ENSG00000124233 | SEMG1 | semenogelin I | 6406 | The protein encoded by this gene is the predominant protein in semen. The encoded secreted protein is involved in the formation of a gel matrix that encases ejaculated spermatozoa. This preproprotein is proteolytically processed by the prostate-specific antigen (PSA) protease to generate multiple peptide products that exhibit distinct functions. One of these peptides, SgI-29, is an antimicrobial peptide with antibacterial activity. This proteolysis process also breaks down the gel matrix and allows the spermatozoa to move more freely. This gene and another similar semenogelin gene are present in a gene cluster on chromosome 20. |
| NA | ENSG00000124159 | MATN4 | matrilin 4 | 8785 | This gene encodes a member of von Willebrand factor A domain-containing protein family. The proteins of this family are thought to be involved in the formation of filamentous networks in the extracellular matrices of various tissues. This family member is thought to be play a role in reorganizing and regenerating the corneal matrix in granular and lattice type I dystrophies. It may also be involved in wound healing in the dentin-pulp complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204070 | SYS1 | Sys1 golgi trafficking protein | 90196 | SYS1 forms a complex with ADP-ribosylation factor-related protein ARFRP1 (MIM 604699) and targets ARFRP1 to the Golgi apparatus (Behnia et al., 2004 [PubMed 15077113]). |
| NA | ENSG00000244274 | DBNDD2 | dysbindin (dystrobrevin binding protein 1) domain containing 2 | 55861 | NA |
| NA | ENSG00000124155 | PIGT | phosphatidylinositol glycan anchor biosynthesis class T | 51604 | This gene encodes a protein that is involved in glycosylphosphatidylinositol (GPI)-anchor biosynthesis. The GPI-anchor is a glycolipid found on many blood cells and serves to anchor proteins to the cell surface. This protein is an essential component of the multisubunit enzyme, GPI transamidase. GPI transamidase mediates GPI anchoring in the endoplasmic reticulum, by catalyzing the transfer of fully assembled GPI units to proteins. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000101443 | WFDC2 | WAP four-disulfide core domain 2 | 10406 | This gene encodes a protein that is a member of the WFDC domain family. The WFDC domain, or WAP Signature motif, contains eight cysteines forming four disulfide bonds at the core of the protein, and functions as a protease inhibitor in many family members. This gene is expressed in pulmonary epithelial cells, and was also found to be expressed in some ovarian cancers. The encoded protein is a small secretory protein, which may be involved in sperm maturation. |
| NA | ENSG00000101457 | DNTTIP1 | deoxynucleotidyltransferase, terminal, interacting protein 1 | 116092 | DNTTIP1 binds DNA and enhances the activity of terminal deoxynucleotidyltransferase (TDT, or DNTT; MIM 187410), a DNA polymerase that catalyzes the polymerization of DNA in the absence of a DNA template (Yamashita et al., 2001 [PubMed 11473582]). |
| NA | ENSG00000175063 | UBE2C | ubiquitin conjugating enzyme E2 C | 11065 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, ubiquitin-conjugating enzymes, and ubiquitin-protein ligases. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. The encoded protein is required for the destruction of mitotic cyclins and for cell cycle progression, and may be involved in cancer progression. Multiple transcript variants encoding different isoforms have been found for this gene. Pseudogenes of this gene have been defined on chromosomes 4, 14, 15, 18, and 19. |
| NA | ENSG00000101470 | TNNC2 | troponin C2, fast skeletal type | 7125 | Troponin (Tn), a key protein complex in the regulation of striated muscle contraction, is composed of 3 subunits. The Tn-I subunit inhibits actomyosin ATPase, the Tn-T subunit binds tropomyosin and Tn-C, while the Tn-C subunit binds calcium and overcomes the inhibitory action of the troponin complex on actin filaments. The protein encoded by this gene is the Tn-C subunit. |
| NA | ENSG00000124104 | SNX21 | sorting nexin family member 21 | 90203 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein does not contain a coiled coil region, like some family members. The specific function of this protein has not been determined. Multiple transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000101473 | ACOT8 | acyl-CoA thioesterase 8 | 10005 | The protein encoded by this gene is a peroxisomal thioesterase that appears to be involved more in the oxidation of fatty acids rather than in their formation. The encoded protein can bind to the human immunodeficiency virus-1 protein Nef, and mediate Nef-induced down-regulation of CD4 in T-cells. |
| NA | ENSG00000132801 | ZSWIM3 | zinc finger SWIM-type containing 3 | 140831 | NA |
| NA | ENSG00000168612 | ZSWIM1 | zinc finger SWIM-type containing 1 | 90204 | NA |
| NA | ENSG00000124257 | NEURL2 | neuralized E3 ubiquitin protein ligase 2 | 140825 | This gene encodes a protein that is involved in the regulation of myofibril organization. This protein is likely the adaptor component of the E3 ubiquitin ligase complex in striated muscle, and it regulates the ubiquitin-mediated degradation of beta-catenin during myogenesis. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000064601 | CTSA | cathepsin A | 5476 | This gene encodes a member of the peptidase S10 family of serine carboxypeptidases. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate two chains that comprise the heterodimeric active enzyme. This enzyme possesses deamidase, esterase and carboxypeptidase activities and acts as a scaffold in the lysosomal multienzyme complex. Mutations in this gene are associated with galactosialidosis. |
| NA | ENSG00000100979 | PLTP | phospholipid transfer protein | 5360 | The protein encoded by this gene is one of at least two lipid transfer proteins found in human plasma. The encoded protein transfers phospholipids from triglyceride-rich lipoproteins to high density lipoprotein (HDL). In addition to regulating the size of HDL particles, this protein may be involved in cholesterol metabolism. At least two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100982 | PCIF1 | PDX1 C-terminal inhibiting factor 1 | 63935 | NA |
| NA | ENSG00000198026 | ZNF335 | zinc finger protein 335 | 63925 | The protein encoded by this gene enhances transcriptional activation by ligand-bound nuclear hormone receptors. However, it does this not by direct interaction with the receptor, but by direct interaction with the nuclear hormone receptor transcriptional coactivator NRC. The encoded protein may function by altering local chromatin structure. |
| NA | ENSG00000124140 | SLC12A5 | solute carrier family 12 member 5 | 57468 | K-Cl cotransporters are proteins that lower intracellular chloride concentrations below the electrochemical equilibrium potential. The protein encoded by this gene is an integral membrane K-Cl cotransporter that can function in either a net efflux or influx pathway, depending on the chemical concentration gradients of potassium and chloride. The encoded protein can act as a homomultimer, or as a heteromultimer with other K-Cl cotransporters, to maintain chloride homeostasis in neurons. Alternative splicing results in two transcript variants encoding different isoforms. |
| NA | ENSG00000124160 | NCOA5 | nuclear receptor coactivator 5 | 57727 | This gene encodes a coregulator for the alpha and beta estrogen receptors and the orphan nuclear receptor NR1D2. The protein localizes to the nucleus, and is thought to have both coactivator and corepressor functions. Its interaction with nuclear receptors is independent of the AF2 domain on the receptors, which is known to regulate interaction with other coreceptors. Two alternatively spliced transcript variants for this gene have been described. However, the full length nature of one of the variants has not been determined. |
| NA | ENSG00000101017 | CD40 | CD40 molecule | 958 | This gene is a member of the TNF-receptor superfamily. The encoded protein is a receptor on antigen-presenting cells of the immune system and is essential for mediating a broad variety of immune and inflammatory responses including T cell-dependent immunoglobulin class switching, memory B cell development, and germinal center formation. AT-hook transcription factor AKNA is reported to coordinately regulate the expression of this receptor and its ligand, which may be important for homotypic cell interactions. Adaptor protein TNFR2 interacts with this receptor and serves as a mediator of the signal transduction. The interaction of this receptor and its ligand is found to be necessary for amyloid-beta-induced microglial activation, and thus is thought to be an early event in Alzheimer disease pathogenesis. Mutations affecting this gene are the cause of autosomal recessive hyper-IgM immunodeficiency type 3 (HIGM3). Multiple alternatively spliced transcript variants of this gene encoding distinct isoforms have been reported. |
| NA | ENSG00000080189 | SLC35C2 | solute carrier family 35 member C2 | 51006 | This gene encodes a member of the triose-phosphate transporter protein family. This gene is regulated by oxygen tension, is induced in hypoxic trophoblast cells, and is overexpressed in ovarian cancer. Alternative splicing results in multiple transcript variants. A pseudogene of this gene has been defined on the X chromosome. |
| NA | ENSG00000062598 | ELMO2 | engulfment and cell motility 2 | 63916 | The protein encoded by this gene interacts with the dedicator of cyto-kinesis 1 protein. Similarity to a C. elegans protein suggests that this protein may function in phagocytosis of apoptotic cells and in cell migration. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000198185 | ZNF334 | zinc finger protein 334 | 55713 | This gene encodes a member of the C2H2 zinc finger family. The encoded protein contains a Krueppel-associated box, fourteen C2H2 zinc finger domains, and four C2H2-type/integrase DNA-binding domains. Decreased expression of this gene may be a marker for rheumatoid arthritis. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000172315 | TP53RK | TP53 regulating kinase | 112858 | NA |
| NA | ENSG00000197496 | SLC2A10 | solute carrier family 2 member 10 | 81031 | This gene encodes a member of the class III facilitative glucose transporter family. The encoded protein plays a role in regulation of glucose homeostasis. Mutations in this gene have been associated with arterial tortuosity syndrome. |
| NA | ENSG00000064655 | EYA2 | EYA transcriptional coactivator and phosphatase 2 | 2139 | This gene encodes a member of the eyes absent (EYA) family of proteins. The encoded protein may be post-translationally modified and may play a role in eye development. A similar protein in mice can act as a transcriptional activator. Alternative splicing results in multiple transcript variants, but the full-length natures of all of these variants have not yet been determined. |
| NA | ENSG00000101040 | ZMYND8 | zinc finger MYND-type containing 8 | 23613 | The protein encoded by this gene is a receptor for activated C-kinase (RACK) protein. The encoded protein has been shown to bind in vitro to activated protein kinase C beta I. In addition, this protein is a cutaneous T-cell lymphoma-associated antigen. Finally, the protein contains a bromodomain and two zinc fingers, and is thought to be a transcriptional regulator. Multiple transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000124151 | NCOA3 | nuclear receptor coactivator 3 | 8202 | The protein encoded by this gene is a nuclear receptor coactivator that interacts with nuclear hormone receptors to enhance their transcriptional activator functions. The encoded protein has histone acetyltransferase activity and recruits p300/CBP-associated factor and CREB binding protein as part of a multisubunit coactivation complex. This protein is initially found in the cytoplasm but is translocated into the nucleus upon phosphorylation. Several transcript variants encoding different isoforms have been found for this gene. In addition, a polymorphic repeat region is found in the C-terminus of the encoded protein. |
| NA | ENSG00000196562 | SULF2 | sulfatase 2 | 55959 | Heparan sulfate proteoglycans (HSPGs) act as coreceptors for numerous heparin-binding growth factors and cytokines and are involved in cell signaling. Heparan sulfate 6-O-endosulfatases, such as SULF2, selectively remove 6-O-sulfate groups from heparan sulfate. This activity modulates the effects of heparan sulfate by altering binding sites for signaling molecules (Dai et al., 2005 [PubMed 16192265]). |
| NA | ENSG00000124126 | PREX1 | phosphatidylinositol-3,4,5-trisphosphate-dependent Rac exchange factor 1 | 57580 | The protein encoded by this gene acts as a guanine nucleotide exchange factor for the RHO family of small GTP-binding proteins (RACs). It has been shown to bind to and activate RAC1 by exchanging bound GDP for free GTP. The encoded protein, which is found mainly in the cytoplasm, is activated by phosphatidylinositol-3,4,5-trisphosphate and the beta-gamma subunits of heterotrimeric G proteins. |
| NA | ENSG00000124198 | ARFGEF2 | ADP ribosylation factor guanine nucleotide exchange factor 2 | 10564 | ADP-ribosylation factors (ARFs) play an important role in intracellular vesicular trafficking. The protein encoded by this gene is involved in the activation of ARFs by accelerating replacement of bound GDP with GTP and is involved in Golgi transport. It contains a Sec7 domain, which may be responsible for its guanine-nucleotide exchange activity and also brefeldin A inhibition. |
| NA | ENSG00000124207 | CSE1L | CSE1 chromosome segregation 1-like (yeast) | 1434 | Proteins that carry a nuclear localization signal (NLS) are transported into the nucleus by the importin-alpha/beta heterodimer. Importin-alpha binds the NLS, while importin-beta mediates translocation through the nuclear pore complex. After translocation, RanGTP binds importin-beta and displaces importin-alpha. Importin-alpha must then be returned to the cytoplasm, leaving the NLS protein behind. The protein encoded by this gene binds strongly to NLS-free importin-alpha, and this binding is released in the cytoplasm by the combined action of RANBP1 and RANGAP1. In addition, the encoded protein may play a role both in apoptosis and in cell proliferation. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000124214 | STAU1 | staufen double-stranded RNA binding protein 1 | 6780 | Staufen is a member of the family of double-stranded RNA (dsRNA)-binding proteins involved in the transport and/or localization of mRNAs to different subcellular compartments and/or organelles. These proteins are characterized by the presence of multiple dsRNA-binding domains which are required to bind RNAs having double-stranded secondary structures. The human homologue of staufen encoded by STAU, in addition contains a microtubule- binding domain similar to that of microtubule-associated protein 1B, and binds tubulin. The STAU gene product has been shown to be present in the cytoplasm in association with the rough endoplasmic reticulum (RER), implicating this protein in the transport of mRNA via the microtubule network to the RER, the site of translation. Five transcript variants resulting from alternative splicing of STAU gene and encoding three isoforms have been described. Three of these variants encode the same isoform, however, differ in their 5’UTR. |
| NA | ENSG00000124228 | DDX27 | DEAD-box helicase 27 | 55661 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, the function of which has not been determined. |
| NA | ENSG00000124201 | ZNFX1 | zinc finger, NFX1-type containing 1 | 57169 | NA |
| NA | ENSG00000158445 | KCNB1 | potassium voltage-gated channel subfamily B member 1 | 3745 | Voltage-gated potassium (Kv) channels represent the most complex class of voltage-gated ion channels from both functional and structural standpoints. Their diverse functions include regulating neurotransmitter release, heart rate, insulin secretion, neuronal excitability, epithelial electrolyte transport, smooth muscle contraction, and cell volume. Four sequence-related potassium channel genes - shaker, shaw, shab, and shal - have been identified in Drosophila, and each has been shown to have human homolog(s). This gene encodes a member of the potassium channel, voltage-gated, shab-related subfamily. This member is a delayed rectifier potassium channel and its activity is modulated by some other family members. |
| NA | ENSG00000124212 | PTGIS | prostaglandin I2 (prostacyclin) synthase | 5740 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. However, this protein is considered a member of the cytochrome P450 superfamily on the basis of sequence similarity rather than functional similarity. This endoplasmic reticulum membrane protein catalyzes the conversion of prostglandin H2 to prostacyclin (prostaglandin I2), a potent vasodilator and inhibitor of platelet aggregation. An imbalance of prostacyclin and its physiological antagonist thromboxane A2 contribute to the development of myocardial infarction, stroke, and atherosclerosis. |
| NA | ENSG00000158470 | B4GALT5 | beta-1,4-galactosyltransferase 5 | 9334 | This gene is one of seven beta-1,4-galactosyltransferase (beta4GalT) genes. They encode type II membrane-bound glycoproteins that appear to have exclusive specificity for the donor substrate UDP-galactose; all transfer galactose in a beta1,4 linkage to similar acceptor sugars: GlcNAc, Glc, and Xyl. Each beta4GalT has a distinct function in the biosynthesis of different glycoconjugates and saccharide structures. As type II membrane proteins, they have an N-terminal hydrophobic signal sequence that directs the protein to the Golgi apparatus and which then remains uncleaved to function as a transmembrane anchor. By sequence similarity, the beta4GalTs form four groups: beta4GalT1 and beta4GalT2, beta4GalT3 and beta4GalT4, beta4GalT5 and beta4GalT6, and beta4GalT7. The function of the enzyme encoded by this gene is not clear. This gene was previously designated as B4GALT4 but was renamed to B4GALT5. In the literature it is also referred to as beta4GalT2. |
| NA | ENSG00000197818 | SLC9A8 | solute carrier family 9 member A8 | 23315 | Sodium-hydrogen exchangers (NHEs), such as SLC9A8, are integral transmembrane proteins that exchange extracellular Na+ for intracellular H+. NHEs have multiple functions, including intracellular pH homeostasis, cell volume regulation, and electroneutral NaCl absorption in epithelia (Xu et al., 2008 [PubMed 18209477]). |
| NA | ENSG00000158480 | SPATA2 | spermatogenesis associated 2 | 9825 | NA |
| NA | ENSG00000124226 | RNF114 | ring finger protein 114 | 55905 | NA |
| NA | ENSG00000124216 | SNAI1 | snail family zinc finger 1 | 6615 | The Drosophila embryonic protein snail is a zinc finger transcriptional repressor which downregulates the expression of ectodermal genes within the mesoderm. The nuclear protein encoded by this gene is structurally similar to the Drosophila snail protein, and is also thought to be critical for mesoderm formation in the developing embryo. At least two variants of a similar processed pseudogene have been found on chromosome 2. |
| NA | ENSG00000244687 | UBE2V1 | ubiquitin conjugating enzyme E2 V1 | 7335 | Ubiquitin-conjugating E2 enzyme variant proteins constitute a distinct subfamily within the E2 protein family. They have sequence similarity to other ubiquitin-conjugating enzymes but lack the conserved cysteine residue that is critical for the catalytic activity of E2s. The protein encoded by this gene is located in the nucleus and can cause transcriptional activation of the human FOS proto-oncogene. It is thought to be involved in the control of differentiation by altering cell cycle behavior. Alternatively spliced transcript variants encoding multiple isoforms have been described for this gene, and multiple pseudogenes of this gene have been identified. Co-transcription of this gene and the neighboring upstream gene generates a rare transcript (Kua-UEV), which encodes a fusion protein comprised of sequence sharing identity with each individual gene product. |
| NA | ENSG00000240849 | TMEM189 | transmembrane protein 189 | 387521 | Co-transcription of this gene and the neighboring downstream gene (ubiquitin-conjugating enzyme E2 variant 1) generates a rare read-through transcript, which encodes a fusion protein comprised of sequence sharing identity with each individual gene product. The protein encoded by this individual gene lacks a UEV1 domain but includes three transmembrane regions. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000172216 | CEBPB | CCAAT/enhancer binding protein beta | 1051 | This intronless gene encodes a transcription factor that contains a basic leucine zipper (bZIP) domain. The encoded protein functions as a homodimer but can also form heterodimers with CCAAT/enhancer-binding proteins alpha, delta, and gamma. Activity of this protein is important in the regulation of genes involved in immune and inflammatory responses, among other processes. The use of alternative in-frame AUG start codons results in multiple protein isoforms, each with distinct biological functions. |
| NA | ENSG00000196396 | PTPN1 | protein tyrosine phosphatase, non-receptor type 1 | 5770 | The protein encoded by this gene is the founding member of the protein tyrosine phosphatase (PTP) family, which was isolated and identified based on its enzymatic activity and amino acid sequence. PTPs catalyze the hydrolysis of the phosphate monoesters specifically on tyrosine residues. Members of the PTP family share a highly conserved catalytic motif, which is essential for the catalytic activity. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP has been shown to act as a negative regulator of insulin signaling by dephosphorylating the phosphotryosine residues of insulin receptor kinase. This PTP was also reported to dephosphorylate epidermal growth factor receptor kinase, as well as JAK2 and TYK2 kinases, which implicated the role of this PTP in cell growth control, and cell response to interferon stimulation. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000124171 | PARD6B | par-6 family cell polarity regulator beta | 84612 | This gene is a member of the PAR6 family and encodes a protein with a PSD95/Discs-large/ZO1 (PDZ) domain, an OPR domain and a semi-Cdc42/Rac interactive binding (CRIB) domain. This cytoplasmic protein is involved in asymmetrical cell division and cell polarization processes as a member of a multi-protein complex. |
| NA | ENSG00000124243 | BCAS4 | breast carcinoma amplified sequence 4 | 55653 | NA |
| NA | ENSG00000000419 | DPM1 | dolichyl-phosphate mannosyltransferase polypeptide 1, catalytic subunit | 8813 | Dolichol-phosphate mannose (Dol-P-Man) serves as a donor of mannosyl residues on the lumenal side of the endoplasmic reticulum (ER). Lack of Dol-P-Man results in defective surface expression of GPI-anchored proteins. Dol-P-Man is synthesized from GDP-mannose and dolichol-phosphate on the cytosolic side of the ER by the enzyme dolichyl-phosphate mannosyltransferase. Human DPM1 lacks a carboxy-terminal transmembrane domain and signal sequence and is regulated by DPM2. Mutations in this gene are associated with congenital disorder of glycosylation type Ie. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000124217 | MOCS3 | molybdenum cofactor synthesis 3 | 27304 | Molybdenum cofactor (MoCo) is necessary for the function of all molybdoenzymes. The protein encoded by this gene adenylates and activates molybdopterin synthase, an enzyme required for biosynthesis of MoCo. This gene contains no introns. A pseudogene of this gene is present on chromosome 14. |
| NA | ENSG00000026559 | KCNG1 | potassium voltage-gated channel modifier subfamily G member 1 | 3755 | Voltage-gated potassium (Kv) channels represent the most complex class of voltage-gated ion channels from both functional and structural standpoints. Their diverse functions include regulating neurotransmitter release, heart rate, insulin secretion, neuronal excitability, epithelial electrolyte transport, smooth muscle contraction, and cell volume. This gene encodes a member of the potassium channel, voltage-gated, subfamily G. This gene is abundantly expressed in skeletal muscle. Multiple alternatively spliced transcript variants have been found in normal and cancerous tissues. |
| NA | ENSG00000101096 | NFATC2 | nuclear factor of activated T-cells 2 | 4773 | This gene is a member of the nuclear factor of activated T cells (NFAT) family. The product of this gene is a DNA-binding protein with a REL-homology region (RHR) and an NFAT-homology region (NHR). This protein is present in the cytosol and only translocates to the nucleus upon T cell receptor (TCR) stimulation, where it becomes a member of the nuclear factors of activated T cells transcription complex. This complex plays a central role in inducing gene transcription during the immune response. Alternate transcriptional splice variants encoding different isoforms have been characterized. |
| NA | ENSG00000054793 | ATP9A | ATPase phospholipid transporting 9A (putative) | 10079 | NA |
| NA | ENSG00000101115 | SALL4 | spalt-like transcription factor 4 | 57167 | This gene encodes a zinc finger transcription factor thought to play a role in the development of abducens motor neurons. Defects in this gene are a cause of Duane-radial ray syndrome (DRRS). Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000171940 | ZNF217 | zinc finger protein 217 | 7764 | NA |
| NA | ENSG00000101134 | DOK5 | docking protein 5 | 55816 | The protein encoded by this gene is a member of the DOK family of membrane proteins, which are adapter proteins involved in signal transduction. The encoded protein interacts with phosphorylated receptor tyrosine kinases to mediate neurite outgrowth and activation of the MAP kinase pathway. Unlike other DOK family proteins, this protein does not interact with RASGAP. This protein is up-regulated in patients with systemic sclerosis and is associated with fibrosis induced by insulin-like growth factor binding protein 5. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000124098 | FAM210B | family with sequence similarity 210 member B | 116151 | NA |
| NA | ENSG00000101138 | CSTF1 | cleavage stimulation factor, 3’ pre-RNA, subunit 1 | 1477 | This gene encodes one of three subunits which combine to form cleavage stimulation factor (CSTF). CSTF is involved in the polyadenylation and 3’end cleavage of pre-mRNAs. Similar to mammalian G protein beta subunits, this protein contains transducin-like repeats. Several transcript variants with different 5’ UTR, but encoding the same protein, have been found for this gene. |
| NA | ENSG00000022277 | RTFDC1 | replication termination factor 2 domain containing 1 | 51507 | NA |
| NA | ENSG00000101144 | BMP7 | bone morphogenetic protein 7 | 655 | This gene encodes a member of the transforming growth factor-beta (TGF-beta) family of proteins. The encoded preproprotein is proteolytically processed to generate each subunit of the mature homodimer, which plays a role in bone, kidney and brown adipose tissue development. This protein induces ectopic bone formation and may promote fracture healing in human patients. |
| NA | ENSG00000101146 | RAE1 | ribonucleic acid export 1 | 8480 | Mutations in the Schizosaccharomyces pombe Rae1 and Saccharomyces cerevisiae Gle2 genes have been shown to result in accumulation of poly(A)-containing mRNA in the nucleus, suggesting that the encoded proteins are involved in RNA export. The protein encoded by this gene is a homolog of yeast Rae1. It contains four WD40 motifs, and has been shown to localize to distinct foci in the nucleoplasm, to the nuclear rim, and to meshwork-like structures throughout the cytoplasm. This gene is thought to be involved in nucleocytoplasmic transport, and in directly or indirectly attaching cytoplasmic mRNPs to the cytoskeleton. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000256222 | MTRNR2L3 | MT-RNR2-like 3 | 100462983 | NA |
| NA | ENSG00000132819 | RBM38 | RNA binding motif protein 38 | 55544 | NA |
| NA | ENSG00000124225 | PMEPA1 | prostate transmembrane protein, androgen induced 1 | 56937 | This gene encodes a transmembrane protein that contains a Smad interacting motif (SIM). Expression of this gene is induced by androgens and transforming growth factor beta, and the encoded protein suppresses the androgen receptor and transforming growth factor beta signaling pathways though interactions with Smad proteins. Overexpression of this gene may play a role in multiple types of cancer. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000124224 | PPP4R1L | protein phosphatase 4 regulatory subunit 1 like (pseudogene) | ENSG00000124224 | NA |
| NA | ENSG00000124209 | RAB22A | RAB22A, member RAS oncogene family | 57403 | The protein encoded by this gene is a member of the RAB family of small GTPases. The GTP-bound form of the encoded protein has been shown to interact with early-endosomal antigen 1, and may be involved in the trafficking of and interaction between endosomal compartments. |
| NA | ENSG00000124164 | VAPB | VAMP (vesicle-associated membrane protein)-associated protein B and C | 9217 | The protein encoded by this gene is a type IV membrane protein found in plasma and intracellular vesicle membranes. The encoded protein is found as a homodimer and as a heterodimer with VAPA. This protein also can interact with VAMP1 and VAMP2 and may be involved in vesicle trafficking. |
| NA | ENSG00000198768 | APCDD1L | adenomatosis polyposis coli down-regulated 1-like | 164284 | NA |
| NA | ENSG00000124222 | STX16 | syntaxin 16 | 8675 | This gene encodes a protein that is a member of the syntaxin or t-SNARE (target-SNAP receptor) family. These proteins are found on cell membranes and serve as the targets for V-SNARES (vesicle-SNAP receptors) permitting specific synaptic vesicle docking and fusion. A microdeletion in the region of chromosome 20 where this gene is located has been associated with pseudohypoparathyroidism type Ib. Multiple transcript variants have been found for this gene. Read-through transcription also exists between this gene and the neighboring downstream aminopeptidase-like 1 (NPEPL1) gene. |
| NA | ENSG00000215440 | NPEPL1 | aminopeptidase-like 1 | 79716 | NA |
| NA | ENSG00000087460 | GNAS | GNAS complex locus | 2778 | This locus has a highly complex imprinted expression pattern. It gives rise to maternally, paternally, and biallelically expressed transcripts that are derived from four alternative promoters and 5’ exons. Some transcripts contain a differentially methylated region (DMR) at their 5’ exons, and this DMR is commonly found in imprinted genes and correlates with transcript expression. An antisense transcript is produced from an overlapping locus on the opposite strand. One of the transcripts produced from this locus, and the antisense transcript, are paternally expressed noncoding RNAs, and may regulate imprinting in this region. In addition, one of the transcripts contains a second overlapping ORF, which encodes a structurally unrelated protein - Alex. Alternative splicing of downstream exons is also observed, which results in different forms of the stimulatory G-protein alpha subunit, a key element of the classical signal transduction pathway linking receptor-ligand interactions with the activation of adenylyl cyclase and a variety of cellular reponses. Multiple transcript variants encoding different isoforms have been found for this gene. Mutations in this gene result in pseudohypoparathyroidism type 1a, pseudohypoparathyroidism type 1b, Albright hereditary osteodystrophy, pseudopseudohypoparathyroidism, McCune-Albright syndrome, progressive osseus heteroplasia, polyostotic fibrous dysplasia of bone, and some pituitary tumors. |
| NA | ENSG00000101158 | NELFCD | negative elongation factor complex member C/D | 51497 | The NELF complex of proteins interacts with the DSIF protein complex to repress transcriptional elongation by RNA polymerase II. The protein encoded by this gene is an essential part of the NELF complex. Alternative translation initiation site usage results in the formation of two isoforms with different N-termini. |
| NA | ENSG00000101160 | CTSZ | cathepsin Z | 1522 | The protein encoded by this gene is a lysosomal cysteine proteinase and member of the peptidase C1 family. It exhibits both carboxy-monopeptidase and carboxy-dipeptidase activities. The encoded protein has also been known as cathepsin X and cathepsin P. This gene is expressed ubiquitously in cancer cell lines and primary tumors and, like other members of this family, may be involved in tumorigenesis. |
| NA | ENSG00000101166 | PRELID3B | PRELI domain containing 3B | 51012 | NA |
| NA | ENSG00000196227 | FAM217B | family with sequence similarity 217 member B | 63939 | NA |
| NA | ENSG00000132825 | PPP1R3D | protein phosphatase 1 regulatory subunit 3D | 5509 | Phosphorylation of serine and threonine residues in proteins is a crucial step in the regulation of many cellular functions ranging from hormonal regulation to cell division and even short-term memory. The level of phosphorylation is controlled by the opposing actions of protein kinases and protein phosphatases. Protein phosphatase 1 (PP1) is 1 of 4 major serine/threonine-specific protein phosphatases which have been identified in eukaryotic cells. PP1 associates with various regulatory subunits that dictate its subcellular localization and modulate its substrate specificity. Several subunits that target PP1 to glycogen have been identified. This gene encodes a glycogen-targeting subunit of PP1. |
| NA | ENSG00000179242 | CDH4 | cadherin 4 | 1002 | This gene is a classical cadherin from the cadherin superfamily. The encoded protein is a calcium-dependent cell-cell adhesion glycoprotein comprised of five extracellular cadherin repeats, a transmembrane region and a highly conserved cytoplasmic tail. Based on studies in chicken and mouse, this cadherin is thought to play an important role during brain segmentation and neuronal outgrowth. In addition, a role in kidney and muscle development is indicated. Of particular interest are studies showing stable cis-heterodimers of cadherins 2 and 4 in cotransfected cell lines. Previously thought to interact in an exclusively homophilic manner, this is the first evidence of cadherin heterodimerization. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130699 | TAF4 | TATA-box binding protein associated factor 4 | 6874 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes one of the larger subunits of TFIID that has been shown to potentiate transcriptional activation by retinoic acid, thyroid hormone and vitamin D3 receptors. In addition, this subunit interacts with the transcription factor CREB, which has a glutamine-rich activation domain, and binds to other proteins containing glutamine-rich regions. Aberrant binding to this subunit by proteins with expanded polyglutamine regions has been suggested as one of the pathogenetic mechanisms underlying a group of neurodegenerative disorders referred to as polyglutamine diseases. |
| NA | ENSG00000149657 | LSM14B | LSM family member 14B | 149986 | NA |
| NA | ENSG00000184402 | SS18L1 | synovial sarcoma translocation gene on chromosome 18-like 1 | 26039 | This gene encodes a calcium-responsive transactivator which is an essential subunit of a neuron-specific chromatin-remodeling complex. The structure of this gene is similar to that of the SS18 gene. Mutations in this gene are involved in amyotrophic lateral sclerosis (ALS). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000101181 | MTG2 | mitochondrial ribosome-associated GTPase 2 | 26164 | Small G proteins, such as GTPBP5, act as molecular switches that play crucial roles in the regulation of fundamental cellular processes such as protein synthesis, nuclear transport, membrane trafficking, and signal transduction (Hirano et al., 2006 [PubMed 17054726]). |
| NA | ENSG00000101180 | HRH3 | histamine receptor H3 | 11255 | Histamine is a ubiquitous messenger molecule released from mast cells, enterochromaffin-like cells, and neurons. Its various actions are mediated by histamine receptors H1, H2, H3 and H4. This gene encodes one of the histamine receptors (H3) which belongs to the family 1 of G protein-coupled receptors. It is an integral membrane protein and can regulate neurotransmitter release. This receptor can also increase voltage-dependent calcium current in smooth muscles and innervates the blood vessels and the heart in cardiovascular system. |
| NA | ENSG00000130703 | OSBPL2 | oxysterol binding protein like 2 | 9885 | This gene encodes a member of the oxysterol-binding protein (OSBP) family, a group of intracellular lipid receptors. Most members contain an N-terminal pleckstrin homology domain and a highly conserved C-terminal OSBP-like sterol-binding domain, although the encoded protein contains only the sterol-binding domain. In vitro studies have shown that the encoded protein can bind strongly to phosphatic acid and weakly to phosphatidylinositol 3-phosphate, but cannot bind to 25-hydroxycholesterol. The protein associates with the Golgi apparatus. Transcript variants encoding different isoforms have been described. |
| NA | ENSG00000130706 | ADRM1 | adhesion regulating molecule 1 | 11047 | This gene encodes a member of the adhesion regulating molecule 1 protein family. The encoded protein is a component of the proteasome where it acts as a ubiquitin receptor and recruits the deubiquitinating enzyme, ubiquitin carboxyl-terminal hydrolase L5. Increased levels of the encoded protein are associated with increased cell adhesion, which is likely an indirect effect of this intracellular protein. Dysregulation of this gene has been implicated in carcinogenesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000130702 | LAMA5 | laminin subunit alpha 5 | 3911 | This gene encodes one of the vertebrate laminin alpha chains. Laminins, a family of extracellular matrix glycoproteins, are the major noncollagenous constituent of basement membranes. They have been implicated in a wide variety of biological processes including cell adhesion, differentiation, migration, signaling, neurite outgrowth and metastasis. Laminins are composed of 3 non identical chains: laminin alpha, beta and gamma (formerly A, B1, and B2, respectively) and they form a cruciform structure consisting of 3 short arms, each formed by a different chain, and a long arm composed of all 3 chains. Each laminin chain is a multidomain protein encoded by a distinct gene. The protein encoded by this gene is the alpha-5 subunit of of laminin-10 (laminin-511), laminin-11 (laminin-521) and laminin-15 (laminin-523). |
| NA | ENSG00000171858 | RPS21 | ribosomal protein S21 | 6227 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S21E family of ribosomal proteins. It is located in the cytoplasm. Alternative splice variants that encode different protein isoforms have been described, but their existence has not been verified. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000149679 | CABLES2 | Cdk5 and Abl enzyme substrate 2 | 81928 | NA |
| NA | ENSG00000101187 | SLCO4A1 | solute carrier organic anion transporter family member 4A1 | 28231 | NA |
| NA | ENSG00000101189 | MRGBP | MRG/MORF4L binding protein | 55257 | NA |
| NA | ENSG00000060491 | OGFR | opioid growth factor receptor | 11054 | The protein encoded by this gene is a receptor for opioid growth factor (OGF), also known as [Met(5)]-enkephalin. OGF is a negative regulator of cell proliferation and tissue organization in a variety of processes. The encoded unbound receptor for OGF has been localized to the outer nuclear envelope, where it binds OGF and is translocated into the nucleus. The coding sequence of this gene contains a polymorphic region of 60 nt tandem imperfect repeat units. Several transcripts containing between zero and eight repeat units have been reported. |
| NA | ENSG00000092758 | COL9A3 | collagen type IX alpha 3 | 1299 | This gene encodes one of the three alpha chains of type IX collagen, the major collagen component of hyaline cartilage. Type IX collagen, a heterotrimeric molecule, is usually found in tissues containing type II collagen, a fibrillar collagen. Mutations in this gene are associated with multiple epiphyseal dysplasia type 3. |
| NA | ENSG00000101190 | TCFL5 | transcription factor-like 5 (basic helix-loop-helix) | 10732 | NA |
| NA | ENSG00000101193 | GID8 | GID complex subunit 8 | 54994 | NA |
| NA | ENSG00000101194 | SLC17A9 | solute carrier family 17 member 9 | 63910 | This gene encodes a member of a family of transmembrane proteins that are involved in the transport of small molecules. The encoded protein participates in the vesicular uptake, storage, and secretion of adenoside triphosphate (ATP) and other nucleotides. A mutation in this gene was found in individuals with autosomal dominant disseminated superficial actinic porokeratosis-8. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000149658 | YTHDF1 | YTH N(6)-methyladenosine RNA binding protein 1 | 54915 | NA |
| NA | ENSG00000101198 | NKAIN4 | Na+/K+ transporting ATPase interacting 4 | 128414 | NKAIN4 is a member of a family of mammalian proteins (see NKAIN1; MIM 612871) with similarity to Drosophila Nkain and interacts with the beta subunit of Na,K-ATPase (ATP1B1; MIM 182330) (Gorokhova et al., 2007 [PubMed 17606467]). |
| NA | ENSG00000101199 | ARFGAP1 | ADP ribosylation factor GTPase activating protein 1 | 55738 | The protein encoded by this gene is a GTPase-activating protein, which associates with the Golgi apparatus and which interacts with ADP-ribosylation factor 1. The encoded protein promotes hydrolysis of ADP-ribosylation factor 1-bound GTP and is required for the dissociation of coat proteins from Golgi-derived membranes and vesicles. Dissociation of the coat proteins is required for the fusion of these vesicles with target compartments. The activity of this protein is stimulated by phosphoinosides and inhibited by phosphatidylcholine. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000075043 | KCNQ2 | potassium voltage-gated channel subfamily Q member 2 | 3785 | The M channel is a slowly activating and deactivating potassium channel that plays a critical role in the regulation of neuronal excitability. The M channel is formed by the association of the protein encoded by this gene and a related protein encoded by the KCNQ3 gene, both integral membrane proteins. M channel currents are inhibited by M1 muscarinic acetylcholine receptors and activated by retigabine, a novel anti-convulsant drug. Defects in this gene are a cause of benign familial neonatal convulsions type 1 (BFNC), also known as epilepsy, benign neonatal type 1 (EBN1). At least five transcript variants encoding five different isoforms have been found for this gene. |
| NA | ENSG00000101210 | EEF1A2 | eukaryotic translation elongation factor 1 alpha 2 | 1917 | This gene encodes an isoform of the alpha subunit of the elongation factor-1 complex, which is responsible for the enzymatic delivery of aminoacyl tRNAs to the ribosome. This isoform (alpha 2) is expressed in brain, heart and skeletal muscle, and the other isoform (alpha 1) is expressed in brain, placenta, lung, liver, kidney, and pancreas. This gene may be critical in the development of ovarian cancer. |
| NA | ENSG00000125534 | PPDPF | pancreatic progenitor cell differentiation and proliferation factor | 79144 | NA |
| NA | ENSG00000130589 | HELZ2 | helicase with zinc finger 2, transcriptional coactivator | 85441 | The protein encoded by this gene is a nuclear transcriptional co-activator for peroxisome proliferator activated receptor alpha. The encoded protein contains a zinc finger and is a helicase that appears to be part of the peroxisome proliferator activated receptor alpha interacting complex. This gene is a member of the DNA2/NAM7 helicase gene family. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101216 | GMEB2 | glucocorticoid modulatory element binding protein 2 | 26205 | This gene is a member of KDWK gene family. The product of this gene associates with GMEB1 protein, and the complex is essential for parvovirus DNA replication. Study of rat homolog implicates the role of this gene in modulation of transactivation by the glucocorticoid receptor bound to glucocorticoid response elements. This gene appears to use multiple polyadenylation sites. |
| NA | ENSG00000197457 | STMN3 | stathmin 3 | 50861 | This gene encodes a protein which is a member of the stathmin protein family. Members of this protein family form a complex with tubulins at a ratio of 2 tubulins for each stathmin protein. Microtubules require the ordered assembly of alpha- and beta-tubulins, and formation of a complex with stathmin disrupts microtubule formation and function. A pseudogene of this gene is located on chromosome 22. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000101246 | ARFRP1 | ADP ribosylation factor related protein 1 | 10139 | The protein encoded by this gene is a membrane-associated GTP-ase which localizes to the plasma membrane and is related to the ADP-ribosylation factor (ARF) and ARF-like (ARL) proteins. This gene plays a role in membrane trafficking between the trans-Golgi network and endosomes. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000197114 | ZGPAT | zinc finger CCCH-type and G-patch domain containing | 84619 | NA |
| NA | ENSG00000130584 | ZBTB46 | zinc finger and BTB domain containing 46 | 140685 | NA |
| NA | ENSG00000101150 | TPD52L2 | tumor protein D52-like 2 | 7165 | This gene encodes a member of the tumor protein D52-like family. These proteins are characterized by an N-terminal coiled-coil motif that is used to form homo- and heteromeric complexes with other tumor protein D52-like proteins. Expression of this gene may be a marker for breast cancer and acute lymphoblastic leukemia. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 12. |
| NA | ENSG00000101152 | DNAJC5 | DnaJ heat shock protein family (Hsp40) member C5 | 80331 | This gene is a member of the J protein family. J proteins function in many cellular processes by regulating the ATPase activity of 70 kDa heat shock proteins. The encoded protein plays a role in membrane trafficking and protein folding, and has been shown to have anti-neurodegenerative properties. The encoded protein is known to play a role in cystic fibrosis and Huntington’s disease. A pseudogene of this gene is located on the short arm of chromosome 8. |
| NA | ENSG00000198276 | UCKL1 | uridine-cytidine kinase 1-like 1 | 54963 | The protein encoded by this gene is a uridine kinase. Uridine kinases catalyze the phosphorylation of uridine to uridine monophosphate. This protein has been shown to bind to Epstein-Barr nuclear antigen 3 as well as natural killer lytic-associated molecule. Ubiquitination of this protein is enhanced by the presence of natural killer lytic-associated molecule. In addition, protein levels decrease in the presence of natural killer lytic-associated molecule, suggesting that association with natural killer lytic-associated molecule results in ubiquitination and subsequent degradation of this protein. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196700 | ZNF512B | zinc finger protein 512B | 57473 | NA |
| NA | ENSG00000101161 | PRPF6 | pre-mRNA processing factor 6 | 24148 | The protein encoded by this gene appears to be involved in pre-mRNA splicing, possibly acting as a bridging factor between U5 and U4/U6 snRNPs in formation of the spliceosome. The encoded protein also can bind androgen receptor, providing a link between transcriptional activation and splicing. |
| NA | ENSG00000171703 | TCEA2 | transcription elongation factor A2 | 6919 | The protein encoded by this gene is found in the nucleus, where it functions as an SII class transcription elongation factor. Elongation factors in this class are responsible for releasing RNA polymerase II ternary complexes from transcriptional arrest at template-encoded arresting sites. The encoded protein has been shown to interact with general transcription factor IIB, a basal transcription factor. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000171700 | RGS19 | regulator of G-protein signaling 19 | 10287 | G proteins mediate a number of cellular processes. The protein encoded by this gene belongs to the RGS (regulators of G-protein signaling) family and specifically interacts with G protein, GAI3. This protein is a guanosine triphosphatase-activating protein that functions to down-regulate Galpha i/Galpha q-linked signaling. Alternatively spliced transcript variants encoding the same protein isoform have been found for this gene. |
| NA | ENSG00000203880 | PCMTD2 | protein-L-isoaspartate (D-aspartate) O-methyltransferase domain containing 2 | 55251 | NA |
| NA | ENSG00000185272 | RBM11 | RNA binding motif protein 11 | 54033 | NA |
| NA | ENSG00000155304 | HSPA13 | heat shock protein family A (Hsp70) member 13 | 6782 | The protein encoded by this gene is a member of the heat shock protein 70 family and is found associated with microsomes. Members of this protein family play a role in the processing of cytosolic and secretory proteins, as well as in the removal of denatured or incorrectly-folded proteins. The encoded protein contains an ATPase domain and has been shown to associate with a ubiquitin-like protein. |
| NA | ENSG00000180530 | NRIP1 | nuclear receptor interacting protein 1 | 8204 | Nuclear receptor interacting protein 1 (NRIP1) is a nuclear protein that specifically interacts with the hormone-dependent activation domain AF2 of nuclear receptors. Also known as RIP140, this protein modulates transcriptional activity of the estrogen receptor. |
| NA | ENSG00000155313 | USP25 | ubiquitin specific peptidase 25 | 29761 | Ubiquitin (MIM 191339) is a highly conserved 76-amino acid protein involved in regulation of intracellular protein breakdown, cell cycle regulation, and stress response. Ubiquitin is released from degraded proteins by disassembly of the polyubiquitin chains, which is mediated by ubiquitin-specific proteases (USPs), such as USP25 (Valero et al., 1999 [PubMed 10644437]). |
| NA | ENSG00000154639 | CXADR | coxsackie virus and adenovirus receptor | 1525 | The protein encoded by this gene is a type I membrane receptor for group B coxsackieviruses and subgroup C adenoviruses. Several transcript variants encoding different isoforms have been found for this gene. Pseudogenes of this gene are found on chromosomes 15, 18, and 21. |
| NA | ENSG00000154640 | BTG3 | BTG family member 3 | 10950 | The protein encoded by this gene is a member of the BTG/Tob family. This family has structurally related proteins that appear to have antiproliferative properties. This encoded protein might play a role in neurogenesis in the central nervous system. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000154642 | C21orf91 | chromosome 21 open reading frame 91 | 54149 | NA |
| NA | ENSG00000154645 | CHODL | chondrolectin | 140578 | This gene encodes a type I membrane protein with a carbohydrate recognition domain characteristic of C-type lectins in its extracellular portion. In other proteins, this domain is involved in endocytosis of glycoproteins and exogenous sugar-bearing pathogens. This protein localizes predominantly to the perinuclear region. Several transcript variants encoding a few different isoforms have been found for this gene. |
| NA | ENSG00000154719 | MRPL39 | mitochondrial ribosomal protein L39 | 54148 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. Two transcript variants encoding distinct isoforms have been described. A pseudogene corresponding to this gene is found on chromosome 5q. |
| NA | ENSG00000154721 | JAM2 | junctional adhesion molecule 2 | 58494 | This gene belongs to the immunoglobulin superfamily, and the junctional adhesion molecule (JAM) family. The protein encoded by this gene is a type I membrane protein that is localized at the tight junctions of both epithelial and endothelial cells. It acts as an adhesive ligand for interacting with a variety of immune cell types, and may play a role in lymphocyte homing to secondary lymphoid organs. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000154723 | ATP5J | ATP synthase, H+ transporting, mitochondrial Fo complex subunit F6 | 522 | Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. It is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, which comprises the proton channel. The F1 complex consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled in a ratio of 3 alpha, 3 beta, and a single representative of the other 3. The Fo complex has nine subunits (a, b, c, d, e, f, g, F6 and 8). This gene encodes the F6 subunit of the Fo complex. The F6 subunit is required for F1 and Fo interactions. Alternatively spliced transcript variants encoding different isoforms have been identified for this gene. This gene has 1 or more pseudogenes. |
| NA | ENSG00000154727 | GABPA | GA binding protein transcription factor alpha subunit | 2551 | This gene encodes one of three GA-binding protein transcription factor subunits which functions as a DNA-binding subunit. Since this subunit shares identity with a subunit encoding the nuclear respiratory factor 2 gene, it is likely involved in activation of cytochrome oxidase expression and nuclear control of mitochondrial function. This subunit also shares identity with a subunit constituting the transcription factor E4TF1, responsible for expression of the adenovirus E4 gene. Because of its chromosomal localization and ability to form heterodimers with other polypeptides, this gene may play a role in the Down Syndrome phenotype. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000142192 | APP | amyloid beta precursor protein | 351 | This gene encodes a cell surface receptor and transmembrane precursor protein that is cleaved by secretases to form a number of peptides. Some of these peptides are secreted and can bind to the acetyltransferase complex APBB1/TIP60 to promote transcriptional activation, while others form the protein basis of the amyloid plaques found in the brains of patients with Alzheimer disease. In addition, two of the peptides are antimicrobial peptides, having been shown to have bacteriocidal and antifungal activities. Mutations in this gene have been implicated in autosomal dominant Alzheimer disease and cerebroarterial amyloidosis (cerebral amyloid angiopathy). Multiple transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000154734 | ADAMTS1 | ADAM metallopeptidase with thrombospondin type 1 motif 1 | 9510 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motif) protein family. Members of the family share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. The protein encoded by this gene contains two disintegrin loops and three C-terminal TS motifs and has anti-angiogenic activity. The expression of this gene may be associated with various inflammatory processes as well as development of cancer cachexia. This gene is likely to be necessary for normal growth, fertility, and organ morphology and function. |
| NA | ENSG00000156239 | N6AMT1 | N-6 adenine-specific DNA methyltransferase 1 (putative) | 29104 | This gene encodes an N(6)-adenine-specific DNA methyltransferase. The encoded enzyme may be involved in the methylation of release factor I during translation termination. This enzyme is also involved in converting the arsenic metabolite monomethylarsonous acid to the less toxic dimethylarsonic acid. Alternative splicing pf this gene results in multiple transcript variants. A related pseudogene has been identified on chromosome 11. |
| NA | ENSG00000156253 | RWDD2B | RWD domain containing 2B | 10069 | NA |
| NA | ENSG00000156256 | USP16 | ubiquitin specific peptidase 16 | 10600 | This gene encodes a deubiquitinating enzyme that is phosphorylated at the onset of mitosis and then dephosphorylated at the metaphase/anaphase transition. It can deubiquitinate H2A, one of two major ubiquitinated proteins of chromatin, in vitro and a mutant form of the protein was shown to block cell division. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000156261 | CCT8 | chaperonin containing TCP1 subunit 8 | 10694 | This gene encodes the theta subunit of the CCT chaperonin, which is abundant in the eukaryotic cytosol and may be involved in the transport and assembly of newly synthesized proteins. Alternative splicing results in multiple transcript variants of this gene. A pseudogene related to this gene is located on chromosome 1. |
| NA | ENSG00000156273 | BACH1 | BTB and CNC homology 1, basic leucine zipper transcription factor 1 | 571 | This gene encodes a transcription factor that belongs to the cap’n’collar type of basic region leucine zipper factor family (CNC-bZip). The encoded protein contains broad complex, tramtrack, bric-a-brac/poxvirus and zinc finger (BTB/POZ) domains, which is atypical of CNC-bZip family members. These BTB/POZ domains facilitate protein-protein interactions and formation of homo- and/or hetero-oligomers. When this encoded protein forms a heterodimer with MafK, it functions as a repressor of Maf recognition element (MARE) and transcription is repressed. Multiple alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000156273 | GRIK1-AS2 | GRIK1 antisense RNA 2 | 100379661 | NA |
| NA | ENSG00000156299 | TIAM1 | T-cell lymphoma invasion and metastasis 1 | 7074 | NA |
| NA | ENSG00000142168 | SOD1 | superoxide dismutase 1, soluble | 6647 | The protein encoded by this gene binds copper and zinc ions and is one of two isozymes responsible for destroying free superoxide radicals in the body. The encoded isozyme is a soluble cytoplasmic protein, acting as a homodimer to convert naturally-occuring but harmful superoxide radicals to molecular oxygen and hydrogen peroxide. The other isozyme is a mitochondrial protein. Mutations in this gene have been implicated as causes of familial amyotrophic lateral sclerosis. Rare transcript variants have been reported for this gene. |
| NA | ENSG00000156304 | SCAF4 | SR-related CTD associated factor 4 | 57466 | This gene likely encodes a member of the arginine/serine-rich splicing factor family. A similar protein in Rat appears to bind the large subunit of RNA polymerase II and provide a link between transcription and pre-mRNA splicing. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000142149 | HUNK | hormonally up-regulated Neu-associated kinase | 30811 | NA |
| NA | ENSG00000142207 | URB1 | URB1 ribosome biogenesis 1 homolog (S. cerevisiae) | 9875 | NA |
| NA | ENSG00000256073 | URB1-AS1 | URB1 antisense RNA 1 (head to head) | 84996 | NA |
| NA | ENSG00000159082 | SYNJ1 | synaptojanin 1 | 8867 | This gene encodes a phosphoinositide phosphatase that regulates levels of membrane phosphatidylinositol-4,5-bisphosphate. As such, expression of this enzyme may affect synaptic transmission and membrane trafficking. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000159086 | PAXBP1 | PAX3 and PAX7 binding protein 1 | 94104 | This gene encodes a protein that may bind to GC-rich DNA sequences, which suggests its involvement in the regulation of transcription. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000159110 | IFNAR2 | interferon alpha and beta receptor subunit 2 | 3455 | The protein encoded by this gene is a type I membrane protein that forms one of the two chains of a receptor for interferons alpha and beta. Binding and activation of the receptor stimulates Janus protein kinases, which in turn phosphorylate several proteins, including STAT1 and STAT2. Multiple transcript variants encoding at least two different isoforms have been found for this gene. |
| NA | ENSG00000243646 | IL10RB | interleukin 10 receptor subunit beta | 3588 | The protein encoded by this gene belongs to the cytokine receptor family. It is an accessory chain essential for the active interleukin 10 receptor complex. Coexpression of this and IL10RA proteins has been shown to be required for IL10-induced signal transduction. This gene and three other interferon receptor genes, IFAR2, IFNAR1, and IFNGR2, form a class II cytokine receptor gene cluster located in a small region on chromosome 21. |
| NA | ENSG00000142166 | IFNAR1 | interferon alpha and beta receptor subunit 1 | 3454 | The protein encoded by this gene is a type I membrane protein that forms one of the two chains of a receptor for interferons alpha and beta. Binding and activation of the receptor stimulates Janus protein kinases, which in turn phosphorylate several proteins, including STAT1 and STAT2. The encoded protein also functions as an antiviral factor. |
| NA | ENSG00000159128 | IFNGR2 | interferon gamma receptor 2 (interferon gamma transducer 1) | 3460 | This gene (IFNGR2) encodes the non-ligand-binding beta chain of the gamma interferon receptor. Human interferon-gamma receptor is a heterodimer of IFNGR1 and IFNGR2. Defects in IFNGR2 are a cause of mendelian susceptibility to mycobacterial disease (MSMD), also known as familial disseminated atypical mycobacterial infection. MSMD is a genetically heterogeneous disease with autosomal recessive, autosomal dominant or X-linked inheritance. |
| NA | ENSG00000142188 | TMEM50B | transmembrane protein 50B | 757 | NA |
| NA | ENSG00000177692 | DNAJC28 | DnaJ heat shock protein family (Hsp40) member C28 | 54943 | NA |
| NA | ENSG00000159131 | GART | phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase | 2618 | The protein encoded by this gene is a trifunctional polypeptide. It has phosphoribosylglycinamide formyltransferase, phosphoribosylglycinamide synthetase, phosphoribosylaminoimidazole synthetase activity which is required for de novo purine biosynthesis. This enzyme is highly conserved in vertebrates. Alternative splicing of this gene results in two transcript variants encoding different isoforms. |
| NA | ENSG00000159140 | SON | SON DNA binding protein | 6651 | This gene encodes a protein that contains multiple simple repeats. The encoded protein binds RNA and promotes pre-mRNA splicing, particularly of transcripts with poor splice sites. The protein also recognizes a specific DNA sequence found in the human hepatitis B virus (HBV) and represses HBV core promoter activity. There is a pseudogene for this gene on chromosome 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000159147 | DONSON | downstream neighbor of SON | 29980 | This gene lies downstream of the SON gene and spans 10 kb on chromosome 21. The function of this gene is unknown. |
| NA | ENSG00000205758 | CRYZL1 | crystallin zeta like 1 | 9946 | This gene encodes a protein that has sequence similarity to zeta crystallin, also known as quinone oxidoreductase. This zeta crystallin-like protein also contains an NAD(P)H binding site. Alternatively spliced transcript variants have been observed but their full-length nature has not been completely determined. |
| NA | ENSG00000205726 | ITSN1 | intersectin 1 | 6453 | The protein encoded by this gene is a cytoplasmic membrane-associated protein that indirectly coordinates endocytic membrane traffic with the actin assembly machinery. In addition, the encoded protein may regulate the formation of clathrin-coated vesicles and could be involved in synaptic vesicle recycling. This protein has been shown to interact with dynamin, CDC42, SNAP23, SNAP25, SPIN90, EPS15, EPN1, EPN2, and STN2. Multiple transcript variants encoding different isoforms have been found for this gene, but the full-length nature of only two of them have been characterized so far. |
| NA | ENSG00000241837 | ATP5O | ATP synthase, H+ transporting, mitochondrial F1 complex, O subunit | 539 | The protein encoded by this gene is a component of the F-type ATPase found in the mitochondrial matrix. F-type ATPases are composed of a catalytic core and a membrane proton channel. The encoded protein appears to be part of the connector linking these two components and may be involved in transmission of conformational changes or proton conductance. |
| NA | ENSG00000243927 | MRPS6 | mitochondrial ribosomal protein S6 | 64968 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S6P family. Pseudogenes corresponding to this gene are found on chromosomes 1p and 12q. |
| NA | ENSG00000205670 | SMIM11B | small integral membrane protein 11B | 102723553 | NA |
| NA | ENSG00000205670 | SMIM11A | small integral membrane protein 11A | 54065 | NA |
| NA | ENSG00000159200 | RCAN1 | regulator of calcineurin 1 | 1827 | The protein encoded by this gene interacts with calcineurin A and inhibits calcineurin-dependent signaling pathways, possibly affecting central nervous system development. This gene is located in the minimal candidate region for the Down syndrome phenotype, and is overexpressed in the brain of Down syndrome fetuses. Chronic overexpression of this gene may lead to neurofibrillary tangles such as those associated with Alzheimer disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000185917 | SETD4 | SET domain containing 4 | 54093 | NA |
| NA | ENSG00000159228 | CBR1 | carbonyl reductase 1 | 873 | The protein encoded by this gene belongs to the short-chain dehydrogenases/reductases (SDR) family, which function as NADPH-dependent oxidoreductases having wide specificity for carbonyl compounds, such as quinones, prostaglandins, and various xenobiotics. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000142197 | DOPEY2 | dopey family member 2 | 9980 | NA |
| NA | ENSG00000159256 | MORC3 | MORC family CW-type zinc finger 3 | 23515 | This gene encodes a protein that localizes to the nuclear matrix and forms nuclear bodies via an ATP-dependent mechanism. The protein is predicted to have coiled-coil and zinc finger domains and has RNA binding activity. Alternative splicing produces multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000159259 | CHAF1B | chromatin assembly factor 1 subunit B | 8208 | Chromatin assembly factor I (CAF-I) is required for the assembly of histone octamers onto newly-replicated DNA. CAF-I is composed of three protein subunits, p50, p60, and p150. The protein encoded by this gene corresponds to the p60 subunit and is required for chromatin assembly after replication. The encoded protein is differentially phosphorylated in a cell cycle-dependent manner. In addition, it is normally found in the nucleus except during mitosis, when it is released into the cytoplasm. This protein is a member of the WD-repeat HIR1 family and may also be involved in DNA repair. |
| NA | ENSG00000159267 | HLCS | holocarboxylase synthetase | 3141 | This gene encodes an enzyme that catalyzes the binding of biotin to carboxylases and histones. The protein plays an important role in gluconeogenesis, fatty acid synthesis and branched chain amino acid catabolism. Defects in this gene are the cause of holocarboxylase synthetase deficiency. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000183145 | RIPPLY3 | ripply transcriptional repressor 3 | 53820 | NA |
| NA | ENSG00000185808 | PIGP | phosphatidylinositol glycan anchor biosynthesis class P | 51227 | This gene encodes an enzyme involved in the first step of glycosylphosphatidylinositol (GPI)-anchor biosynthesis. The GPI-anchor is a glycolipid found on many blood cells that serves to anchor proteins to the cell surface. The encoded protein is a component of the GPI-N-acetylglucosaminyltransferase complex that catalyzes the transfer of N-acetylglucosamine (GlcNAc) from UDP-GlcNAc to phosphatidylinositol (PI). This gene is located in the Down Syndrome critical region on chromosome 21 and is a candidate for the pathogenesis of Down syndrome. This gene has multiple pseudogenes and is a member of the phosphatidylinositol glycan anchor biosynthesis gene family. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000182670 | TTC3 | tetratricopeptide repeat domain 3 | 7267 | NA |
| NA | ENSG00000157538 | DSCR3 | DSCR3 arrestin fold containing | 10311 | The region of chromosome 21 between genes CBR and ERG (CBR-ERG region), which spans 2.5 Mb on 21q22.2, has been defined by analysis of patients with partial trisomy 21. It contributes significantly to the pathogenesis of many characteristics of Down syndrome, including morphological features, hypotonia, and mental retardation. The DSCR3 (Down syndrome critical region gene 3) gene is found in this region and is predictated to contain eight exons. DSCR3 is expressed in most tissues examined. |
| NA | ENSG00000157554 | ERG | v-ets avian erythroblastosis virus E26 oncogene homolog | 2078 | This gene encodes a member of the erythroblast transformation-specific (ETS) family of transcriptions factors. All members of this family are key regulators of embryonic development, cell proliferation, differentiation, angiogenesis, inflammation, and apoptosis. The protein encoded by this gene is mainly expressed in the nucleus. It contains an ETS DNA-binding domain and a PNT (pointed) domain which is implicated in the self-association of chimeric oncoproteins. This protein is required for platelet adhesion to the subendothelium, inducing vascular cell remodeling. It also regulates hematopoesis, and the differentiation and maturation of megakaryocytic cells. This gene is involved in chromosomal translocations, resulting in different fusion gene products, such as TMPSSR2-ERG and NDRG1-ERG in prostate cancer, EWS-ERG in Ewing’s sarcoma and FUS-ERG in acute myeloid leukemia. More than two dozens of transcript variants generated from combinatorial usage of three alternative promoters and multiple alternative splicing events have been reported, but the full-length nature of many of these variants has not been determined. |
| NA | ENSG00000157557 | ETS2 | ETS proto-oncogene 2, transcription factor | 2114 | This gene encodes a transcription factor which regulates genes involved in development and apoptosis. The encoded protein is also a protooncogene and shown to be involved in regulation of telomerase. A pseudogene of this gene is located on the X chromosome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000183527 | PSMG1 | proteasome (prosome, macropain) assembly chaperone 1 | 8624 | NA |
| NA | ENSG00000185658 | BRWD1 | bromodomain and WD repeat domain containing 1 | 54014 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD) residues which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes including cell cycle progression, signal transduction, apoptosis, and gene regulation. This protein contains 2 bromodomains and multiple WD repeats. This gene is located within the Down syndrome region-2 on chromosome 21. Alternative splicing of this gene generates multiple transcript variants encoding distinct isoforms. In mouse, this gene encodes a nuclear protein that has a polyglutamine-containing region that functions as a transcriptional activation domain which may regulate chromatin remodelling and associates with a component of the SWI/SNF chromatin remodelling complex. |
| NA | ENSG00000205581 | HMGN1 | high mobility group nucleosome binding domain 1 | 3150 | The protein encoded by this gene binds nucleosomal DNA and is associated with transcriptionally active chromatin. Along with a similar protein, HMG17, the encoded protein may help maintain an open chromatin configuration around transcribable genes. |
| NA | ENSG00000182093 | WRB | tryptophan rich basic protein | 7485 | This gene encodes a basic nuclear protein of unknown function. The gene is widely expressed in adult and fetal tissues. Since the region proposed to contain the gene(s) for congenital heart disease (CHD) in Down syndrome (DS) patients has been restricted to 21q22.2-22.3, this gene, which maps to 21q22.3, has a potential role in the pathogenesis of Down syndrome congenital heart disease. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000185437 | SH3BGR | SH3 domain binding glutamate rich protein | 6450 | NA |
| NA | ENSG00000183778 | B3GALT5 | Beta-1,3-galactosyltransferase 5 | 10317 | This gene encodes a member of a family of membrane-bound glycoproteins. The encoded protein may synthesize type 1 Lewis antigens, which are elevated in gastrointestinal and pancreatic cancers. Alternatively spliced transcript variants have been observed for this gene, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000184809 | B3GALT5-AS1 | B3GALT5 antisense RNA 1 | 114041 | NA |
| NA | ENSG00000182240 | BACE2 | beta-site APP-cleaving enzyme 2 | 25825 | This gene encodes an integral membrane glycoprotein that functions as an aspartic protease. The encoded protein cleaves amyloid precursor protein into amyloid beta peptide, which is a critical step in the etiology of Alzheimer’s disease and Down syndrome. The protein precursor is further processed into an active mature peptide. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000183844 | FAM3B | family with sequence similarity 3 member B | 54097 | NA |
| NA | ENSG00000183486 | MX2 | MX dynamin like GTPase 2 | 4600 | The protein encoded by this gene has a nuclear and a cytoplasmic form and is a member of both the dynamin family and the family of large GTPases. The nuclear form is localized in a granular pattern in the heterochromatin region beneath the nuclear envelope. A nuclear localization signal (NLS) is present at the amino terminal end of the nuclear form but is lacking in the cytoplasmic form due to use of an alternate translation start codon. This protein is upregulated by interferon-alpha but does not contain the antiviral activity of a similar myxovirus resistance protein 1. |
| NA | ENSG00000184012 | TMPRSS2 | transmembrane protease, serine 2 | 7113 | This gene encodes a protein that belongs to the serine protease family. The encoded protein contains a type II transmembrane domain, a receptor class A domain, a scavenger receptor cysteine-rich domain and a protease domain. Serine proteases are known to be involved in many physiological and pathological processes. This gene was demonstrated to be up-regulated by androgenic hormones in prostate cancer cells and down-regulated in androgen-independent prostate cancer tissue. The protease domain of this protein is thought to be cleaved and secreted into cell media after autocleavage. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183421 | RIPK4 | receptor interacting serine/threonine kinase 4 | 54101 | The protein encoded by this gene is a serine/threonine protein kinase that interacts with protein kinase C-delta. The encoded protein can also activate NFkappaB and is required for keratinocyte differentiation. This kinase undergoes autophosphorylation. |
| NA | ENSG00000141956 | PRDM15 | PR domain 15 | 63977 | NA |
| NA | ENSG00000157617 | C2CD2 | C2 calcium-dependent domain containing 2 | 25966 | NA |
| NA | ENSG00000173276 | ZBTB21 | zinc finger and BTB domain containing 21 | 49854 | NA |
| NA | ENSG00000160179 | ABCG1 | ATP binding cassette subfamily G member 1 | 9619 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the White subfamily. It is involved in macrophage cholesterol and phospholipids transport, and may regulate cellular lipid homeostasis in other cell types. Six alternative splice variants have been identified. |
| NA | ENSG00000160190 | SLC37A1 | solute carrier family 37 member 1 | 54020 | The protein encoded by this gene localizes to the endoplasmic reticulum (ER) membrane. This protein translocates glucose-6-phosphate from the cytoplasm into the lumen of the ER for hydrolysis into glucose by another ER membrane protein. This gene is a member of the solute carrier 37 gene family. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160191 | PDE9A | phosphodiesterase 9A | 5152 | The protein encoded by this gene catalyzes the hydrolysis of cAMP and cGMP to their corresponding monophosphates. The encoded protein plays a role in signal transduction by regulating the intracellular concentration of these cyclic nucleotides. Multiple transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000160193 | WDR4 | WD repeat domain 4 | 10785 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This gene is excluded as a candidate for a form of nonsyndromic deafness (DFNB10), but is still a candidate for other disorders mapped to 21q22.3 as well as for the development of Down syndrome phenotypes. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000160199 | PKNOX1 | PBX/knotted 1 homeobox 1 | 5316 | NA |
| NA | ENSG00000160200 | CBS | cystathionine-beta-synthase | 875 | The protein encoded by this gene acts as a homotetramer to catalyze the conversion of homocysteine to cystathionine, the first step in the transsulfuration pathway. The encoded protein is allosterically activated by adenosyl-methionine and uses pyridoxal phosphate as a cofactor. Defects in this gene can cause cystathionine beta-synthase deficiency (CBSD), which can lead to homocystinuria. This gene is a major contributor to cellular hydrogen sulfide production. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000160201 | U2AF1 | U2 small nuclear RNA auxiliary factor 1 | 7307 | This gene belongs to the splicing factor SR family of genes. U2 auxiliary factor, comprising a large and a small subunit, is a non-snRNP protein required for the binding of U2 snRNP to the pre-mRNA branch site. This gene encodes the small subunit which plays a critical role in both constitutive and enhancer-dependent RNA splicing by directly mediating interactions between the large subunit and proteins bound to the enhancers. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000160201 | U2AF1L5 | U2 small nuclear RNA auxiliary factor 1-like 5 | 102724594 | NA |
| NA | ENSG00000142178 | SIK1 | salt inducible kinase 1 | 150094 | NA |
| NA | ENSG00000160208 | RRP1B | ribosomal RNA processing 1B | 23076 | NA |
| NA | ENSG00000160209 | LOC105372824 | uncharacterized protein C21orf124 | 105372824 | NA |
| NA | ENSG00000160209 | PDXK | pyridoxal (pyridoxine, vitamin B6) kinase | 8566 | The protein encoded by this gene phosphorylates vitamin B6, a step required for the conversion of vitamin B6 to pyridoxal-5-phosphate, an important cofactor in intermediary metabolism. The encoded protein is cytoplasmic and probably acts as a homodimer. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000160213 | CSTB | cystatin B | 1476 | The cystatin superfamily encompasses proteins that contain multiple cystatin-like sequences. Some of the members are active cysteine protease inhibitors, while others have lost or perhaps never acquired this inhibitory activity. There are three inhibitory families in the superfamily, including the type 1 cystatins (stefins), type 2 cystatins and kininogens. This gene encodes a stefin that functions as an intracellular thiol protease inhibitor. The protein is able to form a dimer stabilized by noncovalent forces, inhibiting papain and cathepsins l, h and b. The protein is thought to play a role in protecting against the proteases leaking from lysosomes. Evidence indicates that mutations in this gene are responsible for the primary defects in patients with progressive myoclonic epilepsy (EPM1). |
| NA | ENSG00000160214 | RRP1 | ribosomal RNA processing 1 | 8568 | The protein encoded by this gene is the putative homolog of the yeast ribosomal RNA processing protein RRP1. The encoded protein is involved in the late stages of nucleologenesis at the end of mitosis, and may be required for the generation of 28S rRNA. |
| NA | ENSG00000160218 | TRAPPC10 | trafficking protein particle complex 10 | 7109 | The protein encoded by this gene is a transmembrane protein found in the cis-Golgi complex. The encoded protein is part of the multisubunit transport protein particle (TRAPP) complex and may be involved in vesicular transport from the endoplasmic reticulum to the Golgi. Mutations in this gene could be responsible for the Unverricht-Lundborg type of progressive myoclonus epilepsy, or for autoimmune polyglandular disease type 1. |
| NA | ENSG00000160221 | C21orf33 | chromosome 21 open reading frame 33 | 8209 | This gene encodes a potential mitochondrial protein that is a member of the DJ-1/PfpI gene family. This protein is overexpressed in fetal Down syndrome brain. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000160221 | LOC102724023 | ES1 protein homolog, mitochondrial | 102724023 | NA |
| NA | ENSG00000160223 | ICOSLG | inducible T-cell co-stimulator ligand | 23308 | NA |
| NA | ENSG00000160223 | LOC102723996 | ICOS ligand | 102723996 | NA |
| NA | ENSG00000160226 | C21orf2 | chromosome 21 open reading frame 2 | 755 | Four alternatively spliced transcript variants encoding four different isoforms have been found for this nuclear gene. All isoforms contain leucine-rich repeats. Three of these isoforms are mitochondrial proteins and one of them lacks the target peptide, so is not located in mitochondrion. This gene is down-regulated in Down syndrome (DS) brain, which may represent mitochondrial dysfunction in DS patients. |
| TRUE | ENSG00000269430 | NA | NA | NA | NA |
| NA | ENSG00000182912 | TSPEAR-AS2 | TSPEAR antisense RNA 2 | ENSG00000182912 | NA |
| NA | ENSG00000184900 | SUMO3 | small ubiquitin-like modifier 3 | 6612 | This gene encodes a member of the small ubiquitin-related modifier (SUMO) family of eukaryotic proteins. The encoded protein is covalently conjugated to other proteins via a post-translation modification known as sumoylation. Sumoylation may play a role in a wide variety of cellular processes, including nuclear transport, DNA replication and repair, mitosis, transcriptional regulation, and signal transduction. Alternatively spliced transcript variants encoding distinct proteins have been described. |
| NA | ENSG00000183255 | PTTG1IP | pituitary tumor-transforming 1 interacting protein | 754 | This gene encodes a single-pass type I integral membrane protein, which binds to pituitary tumor-transforming 1 protein (PTTG1), and facilitates translocation of PTTG1 into the nucleus. Coexpression of this protein and PTTG1 induces transcriptional activation of basic fibroblast growth factor. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000160256 | FAM207A | family with sequence similarity 207 member A | 85395 | NA |
| NA | ENSG00000197381 | ADARB1 | adenosine deaminase, RNA specific B1 | 104 | This gene encodes the enzyme responsible for pre-mRNA editing of the glutamate receptor subunit B by site-specific deamination of adenosines. Studies in rat found that this enzyme acted on its own pre-mRNA molecules to convert an AA dinucleotide to an AI dinucleotide which resulted in a new splice site. Alternative splicing of this gene results in several transcript variants, some of which have been characterized by the presence or absence of an ALU cassette insert and a short or long C-terminal region. |
| NA | ENSG00000186866 | POFUT2 | protein O-fucosyltransferase 2 | 23275 | Fucose is typically found as a terminal modification of branched chain glycoconjugates, but it also exists in direct O-linkage to serine or threonine residues within cystine knot motifs in epidermal growth factor (EGF; MIM 131530)-like repeats or thrombospondin (THBS; see MIM 188060) type-1 repeats. POFUT2 is an O-fucosyltransferase that use THBS type-1 repeats as substrates (Luo et al., 2006 [PubMed 16464857]). |
| NA | ENSG00000182871 | COL18A1 | collagen type XVIII alpha 1 | 80781 | This gene encodes the alpha chain of type XVIII collagen. This collagen is one of the multiplexins, extracellular matrix proteins that contain multiple triple-helix domains (collagenous domains) interrupted by non-collagenous domains. A long isoform of the protein has an N-terminal domain that is homologous to the extracellular part of frizzled receptors. Proteolytic processing at several endogenous cleavage sites in the C-terminal domain results in production of endostatin, a potent antiangiogenic protein that is able to inhibit angiogenesis and tumor growth. Mutations in this gene are associated with Knobloch syndrome. The main features of this syndrome involve retinal abnormalities, so type XVIII collagen may play an important role in retinal structure and in neural tube closure. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000173638 | SLC19A1 | solute carrier family 19 member 1 | 6573 | The membrane protein encoded by this gene is a transporter of folate and is involved in the regulation of intracellular concentrations of folate. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183570 | PCBP3 | poly(rC) binding protein 3 | 54039 | This gene encodes a member of the KH-domain protein subfamily. Proteins of this subfamily, also referred to as alpha-CPs, bind to RNA with a specificity for C-rich pyrimidine regions. Alpha-CPs play important roles in post-transcriptional activities and have different cellular distributions. This gene’s protein is found in the cytoplasm, yet it lacks the nuclear localization signals found in other subfamily members. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000142173 | COL6A2 | collagen type VI alpha 2 | 1292 | This gene encodes one of the three alpha chains of type VI collagen, a beaded filament collagen found in most connective tissues. The product of this gene contains several domains similar to von Willebrand Factor type A domains. These domains have been shown to bind extracellular matrix proteins, an interaction that explains the importance of this collagen in organizing matrix components. Mutations in this gene are associated with Bethlem myopathy and Ullrich scleroatonic muscular dystrophy. Three transcript variants have been identified for this gene. |
| NA | ENSG00000160284 | SPATC1L | spermatogenesis and centriole associated 1-like | 84221 | NA |
| NA | ENSG00000160285 | LSS | lanosterol synthase (2,3-oxidosqualene-lanosterol cyclase) | 4047 | The protein encoded by this gene catalyzes the conversion of (S)-2,3 oxidosqualene to lanosterol. The encoded protein is a member of the terpene cyclase/mutase family and catalyzes the first step in the biosynthesis of cholesterol, steroid hormones, and vitamin D. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000160294 | MCM3AP | minichromosome maintenance complex component 3 associated protein | 8888 | The minichromosome maintenance protein 3 (MCM3) is one of the MCM proteins essential for the initiation of DNA replication. The protein encoded by this gene is a MCM3 binding protein. It was reported to have phosphorylation-dependent DNA-primase activity, which was up-regulated in antigen immunization induced germinal center. This protein was demonstrated to be an acetyltransferase that acetylates MCM3 and plays a role in DNA replication. The mutagenesis of a nuclear localization signal of MCM3 affects the binding of this protein with MCM3, suggesting that this protein may also facilitate MCM3 nuclear localization. This gene is expressed in the brain or in neuronal tissue. An allelic variant encoding amino acid Lys at 915, instead of conserved Glu, has been identified in patients with mild intellectual disability. |
| NA | ENSG00000182362 | YBEY | ybeY metallopeptidase (putative) | 54059 | This gene encodes a highly conserved metalloprotein. A similar protein in bacteria acts as an endoribonuclease, and is thought to function in ribosomal RNA maturation and ribosome assembly. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160299 | PCNT | pericentrin | 5116 | The protein encoded by this gene binds to calmodulin and is expressed in the centrosome. It is an integral component of the pericentriolar material (PCM). The protein contains a series of coiled-coil domains and a highly conserved PCM targeting motif called the PACT domain near its C-terminus. The protein interacts with the microtubule nucleation component gamma-tubulin and is likely important to normal functioning of the centrosomes, cytoskeleton, and cell-cycle progression. Mutations in this gene cause Seckel syndrome-4 and microcephalic osteodysplastic primordial dwarfism type II. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000160305 | DIP2A | disco interacting protein 2 homolog A | 23181 | The protein encoded by this gene may be involved in axon patterning in the central nervous system. This gene is not highly expressed. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000160307 | S100B | S100 calcium binding protein B | 6285 | The protein encoded by this gene is a member of the S100 family of proteins containing 2 EF-hand calcium-binding motifs. S100 proteins are localized in the cytoplasm and/or nucleus of a wide range of cells, and involved in the regulation of a number of cellular processes such as cell cycle progression and differentiation. S100 genes include at least 13 members which are located as a cluster on chromosome 1q21; however, this gene is located at 21q22.3. This protein may function in Neurite extension, proliferation of melanoma cells, stimulation of Ca2+ fluxes, inhibition of PKC-mediated phosphorylation, astrocytosis and axonal proliferation, and inhibition of microtubule assembly. Chromosomal rearrangements and altered expression of this gene have been implicated in several neurological, neoplastic, and other types of diseases, including Alzheimer’s disease, Down’s syndrome, epilepsy, amyotrophic lateral sclerosis, melanoma, and type I diabetes. |
| NA | ENSG00000160310 | PRMT2 | protein arginine methyltransferase 2 | 3275 | NA |
| NA | ENSG00000177663 | IL17RA | interleukin 17 receptor A | 23765 | Interleukin 17A (IL17A) is a proinflammatory cytokine secreted by activated T-lymphocytes. It is a potent inducer of the maturation of CD34-positive hematopoietic precursors into neutrophils. The transmembrane protein encoded by this gene (interleukin 17A receptor; IL17RA) is a ubiquitous type I membrane glycoprotein that binds with low affinity to interleukin 17A. Interleukin 17A and its receptor play a pathogenic role in many inflammatory and autoimmune diseases such as rheumatoid arthritis. Like other cytokine receptors, this receptor likely has a multimeric structure. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000183307 | CECR6 | cat eye syndrome chromosome region, candidate 6 | 27439 | NA |
| NA | ENSG00000069998 | CECR5 | cat eye syndrome chromosome region, candidate 5 | 27440 | NA |
| NA | ENSG00000093072 | CECR1 | cat eye syndrome chromosome region, candidate 1 | 51816 | This gene encodes a member of a subfamily of the adenosine deaminase protein family. The encoded protein is one of two adenosine deaminases found in humans, which regulate levels of the signaling molecule, adenosine. The encoded protein is secreted from monocytes undergoing differentiation and may regulate cell proliferation and differentiation. This gene may be responsible for some of the phenotypic features associated with cat eye syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000099954 | CECR2 | cat eye syndrome chromosome region, candidate 2 | 27443 | This gene encodes a bromodomain-containing protein that is involved in chromatin remodeling, and may additionally play a role in DNA damage response. The encoded protein functions as part of an ATP-dependent complex that is involved in neurulation. This gene is a candidate gene for Cat Eye Syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000182902 | SLC25A18 | solute carrier family 25 member 18 | 83733 | NA |
| NA | ENSG00000131100 | ATP6V1E1 | ATPase H+ transporting V1 subunit E1 | 529 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A, three B, and two G subunits, as well as a C, D, E, F, and H subunit. The V1 domain contains the ATP catalytic site. This gene encodes alternate transcriptional splice variants, encoding different V1 domain E subunit isoforms. Pseudogenes for this gene have been found in the genome. |
| NA | ENSG00000243156 | MICAL3 | microtubule associated monooxygenase, calponin and LIM domain containing 3 | 57553 | NA |
| NA | ENSG00000215193 | PEX26 | peroxisomal biogenesis factor 26 | 55670 | This gene belongs to the peroxin-26 gene family. It is probably required for protein import into peroxisomes. It anchors PEX1 and PEX6 to peroxisome membranes, possibly to form heteromeric AAA ATPase complexes required for the import of proteins into peroxisomes. Defects in this gene are the cause of peroxisome biogenesis disorder complementation group 8 (PBD-CG8). PBD refers to a group of peroxisomal disorders arising from a failure of protein import into the peroxisomal membrane or matrix. The PBD group is comprised of four disorders: Zellweger syndrome (ZWS), neonatal adrenoleukodystrophy (NALD), infantile Refsum disease (IRD), and classical rhizomelic chondrodysplasia punctata (RCDP). Alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000184979 | USP18 | ubiquitin specific peptidase 18 | 11274 | The protein encoded by this gene belongs to the ubiquitin-specific proteases (UBP) family of enzymes that cleave ubiquitin from ubiquitinated protein substrates. It is highly expressed in liver and thymus, and is localized to the nucleus. This protein efficiently cleaves only ISG15 (a ubiquitin-like protein) fusions, and deletion of this gene in mice results in a massive increase of ISG15 conjugates in tissues, indicating that this protein is a major ISG15-specific protease. Mice lacking this gene are also hypersensitive to interferon, suggesting a function of this protein in downregulating interferon responses, independent of its isopeptidase activity towards ISG15. |
| NA | ENSG00000183628 | DGCR6 | DiGeorge syndrome critical region gene 6 | 8214 | DiGeorge syndrome, and more widely, the CATCH 22 syndrome, are associated with microdeletions in chromosomal region 22q11.2. The product of this gene shares homology with the Drosophila melanogaster gonadal protein, which participates in gonadal and germ cell development, and with the gamma-1 subunit of human laminin. This gene is a candidate for involvement in DiGeorge syndrome pathology and in schizophrenia. |
| NA | ENSG00000100033 | PRODH | proline dehydrogenase (oxidase) 1 | 5625 | This gene encodes a mitochondrial protein that catalyzes the first step in proline degradation. Mutations in this gene are associated with hyperprolinemia type 1 and susceptibility to schizophrenia 4 (SCZD4). This gene is located on chromosome 22q11.21, a region which has also been associated with the contiguous gene deletion syndromes, DiGeorge and CATCH22. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000070413 | DGCR2 | DiGeorge syndrome critical region gene 2 | 9993 | Deletions of the 22q11.2 have been associated with a wide range of developmental defects (notably DiGeorge syndrome, velocardiofacial syndrome, conotruncal anomaly face syndrome and isolated conotruncal cardiac defects) classified under the acronym CATCH 22. The DGCR2 gene encodes a novel putative adhesion receptor protein, which could play a role in neural crest cells migration, a process which has been proposed to be altered in DiGeorge syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100056 | DGCR14 | DiGeorge syndrome critical region gene 14 | 8220 | This gene is located within the minimal DGS critical region (MDGCR) thought to contain the gene(s) responsible for a group of developmental disorders. These disorders include DiGeorge syndrome, velocardiofacial syndrome, conotruncal anomaly face syndrome, and some familial or sporadic conotruncal cardiac defects which have been associated with microdeletion of 22q11.2. The encoded protein may be a component of C complex spliceosomes, and the orthologous protein in the mouse localizes to the nucleus. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000100075 | SLC25A1 | solute carrier family 25 member 1 | 6576 | This gene encodes a member of the mitochondrial carrier subfamily of solute carrier proteins. Members of this family include nuclear-encoded transporters that translocate small metabolites across the mitochondrial membrane. This protein regulates the movement of citrate across the inner membranes of the mitochondria. Mutations in this gene have been associated with combined D-2- and L-2-hydroxyglutaric aciduria. Pseudogenes of this gene have been identified on chromosomes 7, 11, 16, and 19. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000070371 | CLTCL1 | clathrin heavy chain like 1 | 8218 | This gene is a member of the clathrin heavy chain family and encodes a major protein of the polyhedral coat of coated pits and vesicles. Chromosomal aberrations involving this gene are associated with meningioma, DiGeorge syndrome, and velo-cardio-facial syndrome. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100084 | HIRA | histone cell cycle regulator | 7290 | This gene encodes a histone chaperone that preferentially places the variant histone H3.3 in nucleosomes. Orthologs of this gene in yeast, flies, and plants are necessary for the formation of transcriptionally silent heterochomatin. This gene plays an important role in the formation of the senescence-associated heterochromatin foci. These foci likely mediate the irreversible cell cycle changes that occur in senescent cells. It is considered the primary candidate gene in some haploinsufficiency syndromes such as DiGeorge syndrome, and insufficient production of the gene may disrupt normal embryonic development. |
| NA | ENSG00000242259 | C22orf39 | chromosome 22 open reading frame 39 | 128977 | NA |
| NA | ENSG00000185608 | MRPL40 | mitochondrial ribosomal protein L40 | 64976 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. Deletions in this gene may contribute to the etiology of velo-cardio-facial syndrome and DiGeorge syndrome. |
| NA | ENSG00000070010 | UFD1L | ubiquitin fusion degradation 1 like (yeast) | 7353 | The protein encoded by this gene forms a complex with two other proteins, nuclear protein localization-4 and valosin-containing protein, and this complex is necessary for the degradation of ubiquitinated proteins. In addition, this complex controls the disassembly of the mitotic spindle and the formation of a closed nuclear envelope after mitosis. Mutations in this gene have been associated with Catch 22 syndrome as well as cardiac and craniofacial defects. Alternative splicing results in multiple transcript variants encoding different isoforms. A related pseudogene has been identified on chromosome 18. |
| NA | ENSG00000093009 | CDC45 | cell division cycle 45 | 8318 | The protein encoded by this gene was identified by its strong similarity with Saccharomyces cerevisiae Cdc45, an essential protein required to the initiation of DNA replication. Cdc45 is a member of the highly conserved multiprotein complex including Cdc6/Cdc18, the minichromosome maintenance proteins (MCMs) and DNA polymerase, which is important for early steps of DNA replication in eukaryotes. This protein has been shown to interact with MCM7 and DNA polymerase alpha. Studies of the similar gene in Xenopus suggested that this protein play a pivotal role in the loading of DNA polymerase alpha onto chromatin. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000185838 | GNB1L | G protein subunit beta 1 like | 54584 | This gene encodes a G-protein beta-subunit-like polypeptide which is a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This protein contains 6 WD repeats and is highly expressed in the heart. The gene maps to the region on chromosome 22q11, which is deleted in DiGeorge syndrome, trisomic in derivative 22 syndrome and tetrasomic in cat-eye syndrome. Therefore, this gene may contribute to the etiology of those disorders. Transcripts from this gene share exons with some transcripts from the C22orf29 gene. |
| NA | ENSG00000215012 | C22orf29 | chromosome 22 open reading frame 29 | 79680 | NA |
| NA | ENSG00000184470 | TXNRD2 | thioredoxin reductase 2 | 10587 | This gene encodes a member of the class I pyridine nucleotide-disulfide oxidoreductase family. The encoded protein is a selenocysteine-containing flavoenzyme that maintains thioredoxins in a reduced state, thereby playing a key role in regulating the cellular redox environment. Mammals have three related thioredoxin reductases. This gene encodes a mitochondrial form important for scavenging of reactive oxygen species in mitochondria. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000093010 | COMT | catechol-O-methyltransferase | 1312 | Catechol-O-methyltransferase catalyzes the transfer of a methyl group from S-adenosylmethionine to catecholamines, including the neurotransmitters dopamine, epinephrine, and norepinephrine. This O-methylation results in one of the major degradative pathways of the catecholamine transmitters. In addition to its role in the metabolism of endogenous substances, COMT is important in the metabolism of catechol drugs used in the treatment of hypertension, asthma, and Parkinson disease. COMT is found in two forms in tissues, a soluble form (S-COMT) and a membrane-bound form (MB-COMT). The differences between S-COMT and MB-COMT reside within the N-termini. Several transcript variants are formed through the use of alternative translation initiation sites and promoters. |
| NA | ENSG00000099889 | ARVCF | armadillo repeat gene deleted in velocardiofacial syndrome | 421 | Armadillo Repeat gene deleted in Velo-Cardio-Facial syndrome (ARVCF) is a member of the catenin family. This family plays an important role in the formation of adherens junction complexes, which are thought to facilitate communication between the inside and outside environments of a cell. The ARVCF gene was isolated in the search for the genetic defect responsible for the autosomal dominant Velo-Cardio-Facial syndrome (VCFS), a relatively common human disorder with phenotypic features including cleft palate, conotruncal heart defects and facial dysmorphology. The ARVCF gene encodes a protein containing two motifs, a coiled coil domain in the N-terminus and a 10 armadillo repeat sequence in the midregion. Since these sequences can facilitate protein-protein interactions ARVCF is thought to function in a protein complex. In addition, ARVCF contains a predicted nuclear-targeting sequence suggesting that it may have a function as a nuclear protein. |
| NA | ENSG00000183597 | TANGO2 | transport and golgi organization 2 homolog | 128989 | NA |
| NA | ENSG00000128191 | DGCR8 | DGCR8 microprocessor complex subunit | 54487 | This gene encodes a subunit of the microprocessor complex which mediates the biogenesis of microRNAs from the primary microRNA transcript. The encoded protein is a double-stranded RNA binding protein that functions as the non-catalytic subunit of the microprocessor complex. This protein is required for binding the double-stranded RNA substrate and facilitates cleavage of the RNA by the ribonuclease III protein, Drosha. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000099899 | TRMT2A | tRNA methyltransferase 2 homolog A | 27037 | The protein encoded by this gene is of unknown function. However, it is orthologous to the mouse Trmt2a gene and contains an RNA methyltransferase domain. Expression of this gene varies during the cell cycle, with aberrant expression being a possible biomarker in certain breast cancers. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000099901 | RANBP1 | RAN binding protein 1 | 5902 | This gene encodes a protein that forms a complex with Ras-related nuclear protein (Ran) and metabolizes guanoside triphosphate (GTP). This complex participates in the regulation of the cell cycle by controlling transport of proteins and nucleic acids into the nucleus. There are multiple pseudogenes for this gene on chromosomes 9, 12, 17, and X. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000099904 | ZDHHC8 | zinc finger DHHC-type containing 8 | 29801 | This gene encodes a four transmembrane protein that is a member of the zinc finger DHHC domain-containing protein family. The encoded protein may function as a palmitoyltransferase. Defects in this gene may be associated with a susceptibility to schizophrenia. Alternate splicing of this gene results in multiple transcript variants. A pseudogene of this gene is found on chromosome 22. |
| NA | ENSG00000040608 | RTN4R | reticulon 4 receptor | 65078 | This gene encodes the receptor for reticulon 4, oligodendrocyte myelin glycoprotein and myelin-associated glycoprotein. This receptor mediates axonal growth inhibition and may play a role in regulating axonal regeneration and plasticity in the adult central nervous system. |
| NA | ENSG00000128185 | DGCR6L | DiGeorge syndrome critical region gene 6-like | 85359 | This gene, the result of a duplication at this locus, is one of two functional genes encoding nearly identical proteins that have similar expression patterns. The product of this gene is a protein that shares homology with the Drosophila gonadal protein, expressed in gonadal tissues and germ cells, and with the human laminin gamma-1 chain that functions in cell attachment and migration. This gene is located in a region of chromosome 22 implicated in the DiGeorge syndrome, one facet of a broader collection of anomalies referred to as the CATCH 22 syndrome. |
| NA | ENSG00000185252 | ZNF74 | zinc finger protein 74 | 7625 | NA |
| NA | ENSG00000244486 | SCARF2 | scavenger receptor class F member 2 | 91179 | The protein encoded by this gene is similar to SCARF1/SREC-I, a scavenger receptor protein that mediates the binding and degradation of acetylated low density lipoprotein (Ac-LDL). This protein has only little activity of internalizing modified low density lipoproteins (LDL), but it can interact with SCARF1 through its extracellular domain. The association of this protein with SCARF1 is suppressed by the presence of scavenger ligands. Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000099910 | KLHL22 | kelch like family member 22 | 84861 | NA |
| NA | ENSG00000099917 | MED15 | mediator complex subunit 15 | 51586 | The protein encoded by this gene is a subunit of the multiprotein complexes PC2 and ARC/DRIP and may function as a transcriptional coactivator in RNA polymerase II transcription. This gene contains stretches of trinucleotide repeats and is located in the chromosome 22 region which is deleted in DiGeorge syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000241973 | PI4KA | phosphatidylinositol 4-kinase alpha | 5297 | This gene encodes a phosphatidylinositol (PI) 4-kinase which catalyzes the first committed step in the biosynthesis of phosphatidylinositol 4,5-bisphosphate. The mammalian PI 4-kinases have been classified into two types, II and III, based on their molecular mass, and modulation by detergent and adenosine. The protein encoded by this gene is a type III enzyme that is not inhibited by adenosine. |
| NA | ENSG00000099940 | SNAP29 | synaptosome associated protein 29kDa | 9342 | This gene, a member of the SNAP25 gene family, encodes a protein involved in multiple membrane trafficking steps. Two other members of this gene family, SNAP23 and SNAP25, encode proteins that bind a syntaxin protein and mediate synaptic vesicle membrane docking and fusion to the plasma membrane. The protein encoded by this gene binds tightly to multiple syntaxins and is localized to intracellular membrane structures rather than to the plasma membrane. While the protein is mostly membrane-bound, a significant fraction of it is found free in the cytoplasm. Use of multiple polyadenylation sites has been noted for this gene. |
| NA | ENSG00000099942 | CRKL | v-crk avian sarcoma virus CT10 oncogene homolog-like | 1399 | This gene encodes a protein kinase containing SH2 and SH3 (src homology) domains which has been shown to activate the RAS and JUN kinase signaling pathways and transform fibroblasts in a RAS-dependent fashion. It is a substrate of the BCR-ABL tyrosine kinase, plays a role in fibroblast transformation by BCR-ABL, and may be oncogenic. |
| NA | ENSG00000099949 | LZTR1 | leucine-zipper-like transcription regulator 1 | 8216 | This gene encodes a member of the BTB-kelch superfamily. Initially described as a putative transcriptional regulator based on weak homology to members of the basic leucine zipper-like family, the encoded protein subsequently has been shown to localize exclusively to the Golgi network where it may help stabilize the Gogli complex. Deletion of this gene may be associated with DiGeorge syndrome. |
| NA | ENSG00000184436 | THAP7 | THAP domain containing 7 | 80764 | NA |
| NA | ENSG00000169635 | HIC2 | hypermethylated in cancer 2 | 23119 | NA |
| NA | ENSG00000185651 | UBE2L3 | ubiquitin conjugating enzyme E2 L3 | 7332 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes (E1s), ubiquitin-conjugating enzymes (E2s) and ubiquitin-protein ligases (E3s). This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. This enzyme is demonstrated to participate in the ubiquitination of p53, c-Fos, and the NF-kB precursor p105 in vitro. Several alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000161179 | YDJC | YdjC homolog (bacterial) | 150223 | NA |
| NA | ENSG00000128228 | SDF2L1 | stromal cell derived factor 2 like 1 | 23753 | NA |
| NA | ENSG00000100023 | PPIL2 | peptidylprolyl isomerase like 2 | 23759 | This gene is a member of the cyclophilin family of peptidylprolyl isomerases. The cyclophilins are a highly conserved ubiquitous family, members of which play an important role in protein folding, immunosuppression by cyclosporin A, and infection of HIV-1 virions. This protein interacts with the proteinase inhibitor eglin c and is localized in the nucleus. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000100027 | YPEL1 | yippee like 1 | 29799 | This gene is located in the region associated with DiGeorge syndrome on chromosome 22. The encoded protein localizes to the centrosome and nucleolus and may play a role in the regulation of cell division. |
| NA | ENSG00000100030 | MAPK1 | mitogen-activated protein kinase 1 | 5594 | This gene encodes a member of the MAP kinase family. MAP kinases, also known as extracellular signal-regulated kinases (ERKs), act as an integration point for multiple biochemical signals, and are involved in a wide variety of cellular processes such as proliferation, differentiation, transcription regulation and development. The activation of this kinase requires its phosphorylation by upstream kinases. Upon activation, this kinase translocates to the nucleus of the stimulated cells, where it phosphorylates nuclear targets. One study also suggests that this protein acts as a transcriptional repressor independent of its kinase activity. The encoded protein has been identified as a moonlighting protein based on its ability to perform mechanistically distinct functions. Two alternatively spliced transcript variants encoding the same protein, but differing in the UTRs, have been reported for this gene. |
| NA | ENSG00000100034 | PPM1F | protein phosphatase, Mg2+/Mn2+ dependent 1F | 9647 | The protein encoded by this gene is a member of the PP2C family of Ser/Thr protein phosphatases. PP2C family members are known to be negative regulators of cell stress response pathways. This phosphatase can interact with Rho guanine nucleotide exchange factors (PIX), and thus block the effects of p21-activated kinase 1 (PAK), a protein kinase mediating biological effects downstream of Rho GTPases. Calcium/calmodulin-dependent protein kinase II gamma (CAMK2G/CAMK-II) is found to be one of the substrates of this phosphatase. The overexpression of this phosphatase or CAMK2G has been shown to mediate caspase-dependent apoptosis. An alternatively spliced transcript variant has been identified, but its full-length nature has not been determined. |
| NA | ENSG00000100038 | TOP3B | topoisomerase (DNA) III beta | 8940 | This gene encodes a DNA topoisomerase, an enzyme that controls and alters the topologic states of DNA during transcription. This enzyme catalyzes the transient breaking and rejoining of a single strand of DNA which allows the strands to pass through one another, thus relaxing the supercoils and altering the topology of DNA. The enzyme interacts with DNA helicase SGS1 and plays a role in DNA recombination, cellular aging and maintenance of genome stability. Low expression of this gene may be related to higher survival rates in breast cancer patients. This gene has a pseudogene on chromosome 22. Alternate splicing results in multiple transcript variants. Additional alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000128266 | GNAZ | G protein subunit alpha z | 2781 | The protein encoded by this gene is a member of a G protein subfamily that mediates signal transduction in pertussis toxin-insensitive systms. This encoded protein may play a role in maintaining the ionic balance of perilymphatic and endolymphatic cochlear fluids. |
| NA | ENSG00000100228 | RAB36 | RAB36, member RAS oncogene family | 9609 | NA |
| NA | ENSG00000186716 | BCR | breakpoint cluster region | 613 | A reciprocal translocation between chromosomes 22 and 9 produces the Philadelphia chromosome, which is often found in patients with chronic myelogenous leukemia. The chromosome 22 breakpoint for this translocation is located within the BCR gene. The translocation produces a fusion protein which is encoded by sequence from both BCR and ABL, the gene at the chromosome 9 breakpoint. Although the BCR-ABL fusion protein has been extensively studied, the function of the normal BCR gene product is not clear. The protein has serine/threonine kinase activity and is a GTPase-activating protein for p21rac. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000128218 | VPREB3 | pre-B lymphocyte 3 | 29802 | The protein encoded by this gene is the human ortholog of the mouse VpreB3 (8HS20) protein, is thought to be involved in B-cell maturation, and may play a role in assembly of the pre-B cell receptor (pre-BCR). While the role of this protein in B-cell development has not yet been elucidated, studies with the chicken ortholog of this protein have found that when overexpressed, this protein localizes to the endoplasmic reticulum. The mouse ortholog of this protein has been shown to associate with membrane mu heavy chains early in the course of pre-B cell receptor biosynthesis. Expression of this gene has been observed in some lymphomas. |
| NA | ENSG00000169314 | C22orf15 | chromosome 22 open reading frame 15 | 150248 | NA |
| NA | ENSG00000250479 | CHCHD10 | coiled-coil-helix-coiled-coil-helix domain containing 10 | 400916 | This gene encodes a mitochondrial protein that is enriched at cristae junctions in the intermembrane space. It may play a role in cristae morphology maintenance or oxidative phosphorylation. Mutations in this gene cause frontotemporal dementia and/or amyotrophic lateral sclerosis-2. Alternative splicing of this gene results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 7 and 19. |
| NA | ENSG00000099956 | SMARCB1 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily b, member 1 | 6598 | The protein encoded by this gene is part of a complex that relieves repressive chromatin structures, allowing the transcriptional machinery to access its targets more effectively. The encoded nuclear protein may also bind to and enhance the DNA joining activity of HIV-1 integrase. This gene has been found to be a tumor suppressor, and mutations in it have been associated with malignant rhabdoid tumors. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000099958 | DERL3 | derlin 3 | 91319 | The protein encoded by this gene belongs to the derlin family, and resides in the endoplasmic reticulum (ER). Proteins that are unfolded or misfolded in the ER must be refolded or degraded to maintain the homeostasis of the ER. This protein appears to be involved in the degradation of misfolded glycoproteins in the ER. Several alternatively spliced transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000133460 | SLC2A11 | solute carrier family 2 member 11 | 66035 | This gene belongs to a family of proteins that mediate the transport of sugars across the cell membrane. The encoded protein transports glucose and fructose. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000240972 | MIF | macrophage migration inhibitory factor (glycosylation-inhibiting factor) | 4282 | This gene encodes a lymphokine involved in cell-mediated immunity, immunoregulation, and inflammation. It plays a role in the regulation of macrophage function in host defense through the suppression of anti-inflammatory effects of glucocorticoids. This lymphokine and the JAB1 protein form a complex in the cytosol near the peripheral plasma membrane, which may indicate an additional role in integrin signaling pathways. |
| NA | ENSG00000218537 | MIF-AS1 | MIF antisense RNA 1 | ENSG00000218537 | NA |
| NA | ENSG00000099974 | DDTL | D-dopachrome tautomerase-like | 100037417 | NA |
| NA | ENSG00000099977 | DDT | D-dopachrome tautomerase | 1652 | D-dopachrome tautomerase converts D-dopachrome into 5,6-dihydroxyindole. The DDT gene is related to the migration inhibitory factor (MIF) in terms of sequence, enzyme activity, and gene structure. DDT and MIF are closely linked on chromosome 22. |
| NA | ENSG00000099977 | DDTL | D-dopachrome tautomerase-like | 100037417 | NA |
| NA | ENSG00000099991 | CABIN1 | calcineurin binding protein 1 | 23523 | Calcineurin plays an important role in the T-cell receptor-mediated signal transduction pathway. The protein encoded by this gene binds specifically to the activated form of calcineurin and inhibits calcineurin-mediated signal transduction. The encoded protein is found in the nucleus and contains a leucine zipper domain as well as several PEST motifs, sequences which confer targeted degradation to those proteins which contain them. Alternative splicing results in multiple transcript variants encoding two different isoforms. |
| NA | ENSG00000100014 | SPECC1L | sperm antigen with calponin homology and coiled-coil domains 1-like | 23384 | This gene encodes a coiled-coil domain containing protein. The encoded protein may play a critical role in actin-cytoskeletal reorganization during facial morphogenesis. Mutations in this gene are a cause of oblique facial clefting-1. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. A read-through transcript composed of SPECC1L (sperm antigen with calponin homology and coiled-coil domains 1-like) and the downstream ADORA2A (adenosine A2a receptor) gene sequence has been identified, but it is thought to be non-coding. |
| NA | ENSG00000138867 | GUCD1 | guanylyl cyclase domain containing 1 | 83606 | NA |
| NA | ENSG00000100028 | SNRPD3 | small nuclear ribonucleoprotein D3 polypeptide | 6634 | This gene encodes a core component of the spliceosome, which is a nuclear ribonucleoprotein complex that functions in pre-mRNA splicing. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100031 | GGT1 | gamma-glutamyltransferase 1 | 2678 | The enzyme encoded by this gene is a type I gamma-glutamyltransferase that catalyzes the transfer of the glutamyl moiety of glutathione to a variety of amino acids and dipeptide acceptors. The enzyme is composed of a heavy chain and a light chain, which are derived from a single precursor protein. It is expressed in tissues involved in absorption and secretion and may contribute to the etiology of diabetes and other metabolic disorders. Multiple alternatively spliced variants have been identified. There are a number of related genes present on chromosomes 20 and 22, and putative pseudogenes for this gene on chromosomes 2, 13, and 22. |
| NA | ENSG00000100031 | GGTLC2 | gamma-glutamyltransferase light chain 2 | 91227 | This gene encodes a protein related to enzymes that cleaves gamma-glutamyl peptide bonds in glutathione and other peptides. Unlike similar proteins, the encoded protein contains only the light chain portion and may not have catalytic activity. Alternative splicing results in multiple transcript variants. There are several related family members and related pseudogene for this gene situated in the same region of chromosome 22. |
| NA | ENSG00000100031 | GGTLC1 | gamma-glutamyltransferase light chain 1 | 92086 | This gene encodes a member of the gamma-glutamyl transpeptidase (GGT) family, which are important in the metabolism of glutathione. The most ubiquitously expressed human GGT gene, GGT1, encodes a single transmembrane polypeptide that is post-translationally processed to form a heavy and a light chain. In contrast, the product of this gene only contains homology to the light chain region, and lacks a transmembrane domain. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000100031 | LOC102724197 | inactive gamma-glutamyltranspeptidase 2-like | 102724197 | NA |
| NA | ENSG00000100031 | GGT2 | gamma-glutamyltransferase 2 | 728441 | NA |
| NA | ENSG00000178026 | LRRC75B | leucine rich repeat containing 75B | 388886 | NA |
| NA | ENSG00000167037 | SGSM1 | small G protein signaling modulator 1 | 129049 | NA |
| NA | ENSG00000197077 | KIAA1671 | KIAA1671 | 85379 | NA |
| NA | ENSG00000244752 | CRYBB2 | crystallin beta B2 | 1415 | Crystallins are separated into two classes: taxon-specific, or enzyme, and ubiquitous. The latter class constitutes the major proteins of vertebrate eye lens and maintains the transparency and refractive index of the lens. Since lens central fiber cells lose their nuclei during development, these crystallins are made and then retained throughout life, making them extremely stable proteins. Mammalian lens crystallins are divided into alpha, beta, and gamma families; beta and gamma crystallins are also considered as a superfamily. Alpha and beta families are further divided into acidic and basic groups. Seven protein regions exist in crystallins: four homologous motifs, a connecting peptide, and N- and C-terminal extensions. Beta-crystallins, the most heterogeneous, differ by the presence of the C-terminal extension (present in the basic group, none in the acidic group). Beta-crystallins form aggregates of different sizes and are able to self-associate to form dimers or to form heterodimers with other beta-crystallins. This gene, a beta basic group member, is part of a gene cluster with beta-A4, beta-B1, and beta-B3. A chain-terminating mutation was found to cause type 2 cerulean cataracts. |
| NA | ENSG00000100068 | LRP5L | LDL receptor related protein 5 like | 91355 | NA |
| NA | ENSG00000100077 | ADRBK2 | adrenergic, beta, receptor kinase 2 | 157 | The beta-adrenergic receptor kinase specifically phosphorylates the agonist-occupied form of the beta-adrenergic and related G protein-coupled receptors. Overall, the beta adrenergic receptor kinase 2 has 85% amino acid similarity with beta adrenergic receptor kinase 1, with the protein kinase catalytic domain having 95% similarity. These data suggest the existence of a family of receptor kinases which may serve broadly to regulate receptor function. |
| NA | ENSG00000128203 | ASPHD2 | aspartate beta-hydroxylase domain containing 2 | 57168 | NA |
| NA | ENSG00000100104 | SRRD | SRR1 domain containing | 402055 | NA |
| NA | ENSG00000100109 | TFIP11 | tuftelin interacting protein 11 | 24144 | TFIP11 is a nuclear speckle-localized protein that may play a role in spliceosome disassembly in Cajal bodies (Stanek et al., 2008 [PubMed 18367544]). |
| NA | ENSG00000128294 | TPST2 | tyrosylprotein sulfotransferase 2 | 8459 | The protein encoded by this gene catalyzes the O-sulfation of tyrosine residues within acidic regions of proteins. The encoded protein is a type II integral membrane protein found in the Golgi body. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000100122 | CRYBB1 | crystallin beta B1 | 1414 | Crystallins are separated into two classes: taxon-specific, or enzyme, and ubiquitous. The latter class constitutes the major proteins of vertebrate eye lens and maintains the transparency and refractive index of the lens. Since lens central fiber cells lose their nuclei during development, these crystallins are made and then retained throughout life, making them extremely stable proteins. Mammalian lens crystallins are divided into alpha, beta, and gamma families; beta and gamma crystallins are also considered as a superfamily. Alpha and beta families are further divided into acidic and basic groups. Seven protein regions exist in crystallins: four homologous motifs, a connecting peptide, and N- and C-terminal extensions. Beta-crystallins, the most heterogeneous, differ by the presence of the C-terminal extension (present in the basic group, none in the acidic group). Beta-crystallins form aggregates of different sizes and are able to self-associate to form dimers or to form heterodimers with other beta-crystallins. This gene, a beta basic group member, undergoes extensive cleavage at its N-terminal extension during lens maturation. It is also a member of a gene cluster with beta-A4, beta-B2, and beta-B3. |
| NA | ENSG00000169184 | MN1 | meningioma (disrupted in balanced translocation) 1 | 4330 | Meningioma 1 (MN1) contains two sets of CAG repeats. It is disrupted by a balanced translocation (4;22) in a meningioma, and its inactivation may contribute to meningioma 32 pathogenesis. |
| NA | ENSG00000180957 | PITPNB | phosphatidylinositol transfer protein beta | 23760 | This gene encodes a cytoplasmic protein that catalyzes the transfer of phosphatidylinositol and phosphatidylcholine between membranes. This transfer activity is required for COPI complex-mediated retrograde transport from the Golgi apparatus to the endoplasmic reticulum. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000100154 | TTC28 | tetratricopeptide repeat domain 28 | 23331 | NA |
| NA | ENSG00000183765 | CHEK2 | checkpoint kinase 2 | 11200 | In response to DNA damage and replication blocks, cell cycle progression is halted through the control of critical cell cycle regulators. The protein encoded by this gene is a cell cycle checkpoint regulator and putative tumor suppressor. It contains a forkhead-associated protein interaction domain essential for activation in response to DNA damage and is rapidly phosphorylated in response to replication blocks and DNA damage. When activated, the encoded protein is known to inhibit CDC25C phosphatase, preventing entry into mitosis, and has been shown to stabilize the tumor suppressor protein p53, leading to cell cycle arrest in G1. In addition, this protein interacts with and phosphorylates BRCA1, allowing BRCA1 to restore survival after DNA damage. Mutations in this gene have been linked with Li-Fraumeni syndrome, a highly penetrant familial cancer phenotype usually associated with inherited mutations in TP53. Also, mutations in this gene are thought to confer a predisposition to sarcomas, breast cancer, and brain tumors. This nuclear protein is a member of the CDS1 subfamily of serine/threonine protein kinases. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100209 | HSCB | HscB mitochondrial iron-sulfur cluster co-chaperone | 150274 | This gene encodes a DnaJ-type co-chaperone and member of the heat shock cognate B (HscB) family of proteins. The encoded protein plays a role in the synthesis of iron-sulfur clusters, protein cofactors that are involved in the redox reactions of mitochondrial electron transport and other processes. Cells in which this gene is knocked down exhibit reduced activity of iron-sulfur cluster-dependent enzymes including succinate dehydrogenase and aconitase. The encoded protein may stimulate the ATPase activity of the mitochondrial stress-70 protein. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000183579 | ZNRF3 | zinc and ring finger 3 | 84133 | NA |
| NA | ENSG00000183762 | KREMEN1 | kringle containing transmembrane protein 1 | 83999 | This gene encodes a high-affinity dickkopf homolog 1 (DKK1) transmembrane receptor that functionally cooperates with DKK1 to block wingless (WNT)/beta-catenin signaling. The encoded protein is a component of a membrane complex that modulates canonical WNT signaling through lipoprotein receptor-related protein 6 (LRP6). It contains extracellular kringle, WSC, and CUB domains. Alternatively spliced transcript variants encoding distinct isoforms have been observed for this gene. |
| NA | ENSG00000100263 | RHBDD3 | rhomboid domain containing 3 | 25807 | NA |
| NA | ENSG00000182944 | EWSR1 | EWS RNA binding protein 1 | 2130 | This gene encodes a multifunctional protein that is involved in various cellular processes, including gene expression, cell signaling, and RNA processing and transport. The protein includes an N-terminal transcriptional activation domain and a C-terminal RNA-binding domain. Chromosomal translocations between this gene and various genes encoding transcription factors result in the production of chimeric proteins that are involved in tumorigenesis. These chimeric proteins usually consist of the N-terminal transcriptional activation domain of this protein fused to the C-terminal DNA-binding domain of the transcription factor protein. Mutations in this gene, specifically a t(11;22)(q24;q12) translocation, are known to cause Ewing sarcoma as well as neuroectodermal and various other tumors. Alternative splicing of this gene results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 1 and 14. |
| NA | ENSG00000100280 | AP1B1 | adaptor related protein complex 1 beta 1 subunit | 162 | Adaptor protein complex 1 is found at the cytoplasmic face of coated vesicles located at the Golgi complex, where it mediates both the recruitment of clathrin to the membrane and the recognition of sorting signals within the cytosolic tails of transmembrane receptors. This complex is a heterotetramer composed of two large, one medium, and one small adaptin subunit. The protein encoded by this gene serves as one of the large subunits of this complex and is a member of the adaptin protein family. This gene is a candidate meningioma gene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100285 | NEFH | neurofilament, heavy polypeptide | 4744 | Neurofilaments are type IV intermediate filament heteropolymers composed of light, medium, and heavy chains. Neurofilaments comprise the axoskeleton and functionally maintain neuronal caliber. They may also play a role in intracellular transport to axons and dendrites. This gene encodes the heavy neurofilament protein. This protein is commonly used as a biomarker of neuronal damage and susceptibility to amyotrophic lateral sclerosis (ALS) has been associated with mutations in this gene. |
| NA | ENSG00000100296 | THOC5 | THO complex 5 | 8563 | NA |
| NA | ENSG00000186575 | NF2 | neurofibromin 2 (merlin) | 4771 | This gene encodes a protein that is similar to some members of the ERM (ezrin, radixin, moesin) family of proteins that are thought to link cytoskeletal components with proteins in the cell membrane. This gene product has been shown to interact with cell-surface proteins, proteins involved in cytoskeletal dynamics and proteins involved in regulating ion transport. This gene is expressed at high levels during embryonic development; in adults, significant expression is found in Schwann cells, meningeal cells, lens and nerve. Mutations in this gene are associated with neurofibromatosis type II which is characterized by nervous system and skin tumors and ocular abnormalities. Two predominant isoforms and a number of minor isoforms are produced by alternatively spliced transcripts. |
| NA | ENSG00000100319 | ZMAT5 | zinc finger matrin-type 5 | 55954 | NA |
| NA | ENSG00000184076 | UQCR10 | ubiquinol-cytochrome c reductase, complex III subunit X | 29796 | UCRC is a subunit of mitochondrial complex III (ubiquinol-cytochrome c reductase; EC 1.10.2.2), which forms the middle segment of the respiratory chain of the inner mitochondrial membrane (Schagger et al., 1995 [PubMed 8592474]). |
| NA | ENSG00000100325 | ASCC2 | activating signal cointegrator 1 complex subunit 2 | 84164 | NA |
| NA | ENSG00000100330 | MTMR3 | myotubularin related protein 3 | 8897 | This gene encodes a member of the myotubularin dual specificity protein phosphatase gene family. The encoded protein is structurally similar to myotubularin but in addition contains a FYVE domain and an N-terminal PH-GRAM domain. The protein can self-associate and also form heteromers with another myotubularin related protein. The protein binds to phosphoinositide lipids through the PH-GRAM domain, and can hydrolyze phosphatidylinositol(3)-phosphate and phosphatidylinositol(3,5)-biphosphate in vitro. The encoded protein has been observed to have a perinuclear, possibly membrane-bound, distribution in cells, but it has also been found free in the cytoplasm. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000239282 | GATSL3 | GATS protein-like 3 | 652968 | NA |
| NA | ENSG00000099992 | TBC1D10A | TBC1 domain family member 10A | 83874 | NA |
| NA | ENSG00000099995 | SF3A1 | splicing factor 3a subunit 1 | 10291 | This gene encodes a subunit of the splicing factor 3a protein complex. The splicing factor 3a heterotrimer is a component of the mature U2 small nuclear ribonucleoprotein particle (snRNP). U2 small nuclear ribonucleoproteins play a critical role in spliceosome assembly and pre-mRNA splicing. |
| NA | ENSG00000187860 | CCDC157 | coiled-coil domain containing 157 | 550631 | NA |
| NA | ENSG00000099999 | RNF215 | ring finger protein 215 | 200312 | NA |
| NA | ENSG00000100003 | SEC14L2 | SEC14 like lipid binding 2 | 23541 | This gene encodes a cytosolic protein which belongs to a family of lipid-binding proteins including Sec14p, alpha-tocopherol transfer protein, and cellular retinol-binding protein. The encoded protein stimulates squalene monooxygenase which is a downstream enzyme in the cholesterol biosynthetic pathway. Alternatively spliced transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000242114 | MTFP1 | mitochondrial fission process 1 | 51537 | MTP18 is a mitochondrial protein and downstream target of the phosphatidylinositol 3-kinase (see PIK3CA, MIM 171834) signaling pathway that plays a role in cell viability and mitochondrial dynamics (Tondera et al., 2004 [PubMed 15155745]). |
| NA | ENSG00000128242 | GAL3ST1 | galactose-3-O-sulfotransferase 1 | 9514 | Sulfonation, an important step in the metabolism of many drugs, xenobiotics, hormones, and neurotransmitters, is catalyzed by sulfotransferases. This gene encodes galactosylceramide sulfotransferase, which catalyzes the sulfation of membrane glycolipids including the final step in the synthesis of sulfatide, a major lipid component of the myelin sheath. This gene exhibits elevated expression in ovarian epithelial carcinoma and the encoded enzyme exhibits elevated activity in renal cell carcinoma. Mutations in this gene may be associated with reduced insulin resistance. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100029 | PES1 | pescadillo ribosomal biogenesis factor 1 | 23481 | This gene encodes a nuclear protein that contains a breast cancer associated gene 1 (BRCA1) C-terminal interaction domain. The encoded protein interacts with BOP1 and WDR12 to form the PeBoW complex, which plays a critical role in cell proliferation via pre-rRNA processing and 60S ribosomal subunit maturation. Expression of this gene may play an important role in breast cancer proliferation and tumorigenicity. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. Pseudogenes of this gene are located on the long arm of chromosome 4 and the short arm of chromosome 9. |
| NA | ENSG00000185339 | TCN2 | transcobalamin 2 | 6948 | This gene encodes a member of the vitamin B12-binding protein family. This family of proteins, alternatively referred to as R binders, is expressed in various tissues and secretions. This plasma protein binds cobalamin and mediates the transport of cobalamin into cells. This protein and other mammalian cobalamin-binding proteins, such as transcobalamin I and gastric intrisic factor, may have evolved by duplication of a common ancestral gene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100036 | SLC35E4 | solute carrier family 35 member E4 | 339665 | NA |
| NA | ENSG00000167065 | DUSP18 | dual specificity phosphatase 18 | 150290 | Dual-specificity phosphatases (DUSPs) constitute a large heterogeneous subgroup of the type I cysteine-based protein-tyrosine phosphatase superfamily. DUSPs are characterized by their ability to dephosphorylate both tyrosine and serine/threonine residues. They have been implicated as major modulators of critical signaling pathways. DUSP18 contains the consensus DUSP C-terminal catalytic domain but lacks the N-terminal CH2 domain found in the MKP (mitogen-activated protein kinase phosphatase) class of DUSPs (see MIM 600714) (summary by Patterson et al., 2009 [PubMed 19228121]). |
| NA | ENSG00000133422 | MORC2 | MORC family CW-type zinc finger 2 | 22880 | This gene encodes a member of the Microrchidia (MORC) protein superfamily. The encoded protein is known to regulate the condensation of heterochromatin in response to DNA damage and play a role in repressing transcription. The protein has been found to regulate the activity of ATP citrate lyase via specific interaction with this enzyme in the cytosol of lipogenic breast cancer cells. The protein also plays a role in lipogenesis and adipocyte differentiation. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000183963 | SMTN | smoothelin | 6525 | This gene encodes a structural protein that is found exclusively in contractile smooth muscle cells. It associates with stress fibers and constitutes part of the cytoskeleton. This gene is localized to chromosome 22q12.3, distal to the TUPLE1 locus and outside the DiGeorge syndrome deletion. Alternative splicing of this gene results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000198832 | SELM | selenoprotein M | 140606 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. This gene is expressed in a variety of tissues, and the protein is localized to the perinuclear structures. |
| NA | ENSG00000100078 | PLA2G3 | phospholipase A2 group III | 50487 | This gene encodes a protein that belongs to the secreted phospholipase A2 family, whose members include the bee venom enzyme. The encoded enzyme functions in lipid metabolism and catalyzes the calcium-dependent hydrolysis of the sn-2 acyl bond of phospholipids to release arachidonic acid and lysophospholipids. This enzyme acts as a negative regulator of ciliogenesis, and may play a role in cancer development by stimulating tumor cell growth and angiogenesis. This gene is associated with oxidative stress, and polymorphisms in this gene are linked to risk for Alzheimer’s disease. |
| NA | ENSG00000138942 | RNF185 | ring finger protein 185 | 91445 | NA |
| NA | ENSG00000182541 | LIMK2 | LIM domain kinase 2 | 3985 | There are approximately 40 known eukaryotic LIM proteins, so named for the LIM domains they contain. LIM domains are highly conserved cysteine-rich structures containing 2 zinc fingers. Although zinc fingers usually function by binding to DNA or RNA, the LIM motif probably mediates protein-protein interactions. LIM kinase-1 and LIM kinase-2 belong to a small subfamily with a unique combination of 2 N-terminal LIM motifs and a C-terminal protein kinase domain. The protein encoded by this gene is phosphorylated and activated by ROCK, a downstream effector of Rho, and the encoded protein, in turn, phosphorylates cofilin, inhibiting its actin-depolymerizing activity. It is thought that this pathway contributes to Rho-induced reorganization of the actin cytoskeleton. At least three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000185721 | DRG1 | developmentally regulated GTP binding protein 1 | 4733 | NA |
| NA | ENSG00000184708 | EIF4ENIF1 | eukaryotic translation initiation factor 4E nuclear import factor 1 | 56478 | The protein encoded by this gene is a nucleocytoplasmic shuttle protein for the translation initiation factor eIF4E. This shuttle protein interacts with the importin alpha-beta complex to mediate nuclear import of eIF4E. It is predominantly cytoplasmic; its own nuclear import is regulated by a nuclear localization signal and nuclear export signals. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198089 | SFI1 | SFI1 centrin binding protein | 9814 | NA |
| NA | ENSG00000241878 | PISD | phosphatidylserine decarboxylase | 23761 | Phosphatidylserine decarboxylases (PSDs; EC 4.1.1.65) catalyze the formation of phosphatidylethanolamine (PE) by decarboxylation of phosphatidylserine (PS). Type I PSDs, such as PISD, are targeted to the inner mitochondrial membrane by an N-terminal targeting sequence. PISD also contains a conserved LGST motif that functions as an autocatalytic cleavage site where the proenzyme is split into mature alpha and beta subunits (Schuiki and Daum, 2009 [PubMed 19165886]). |
| NA | ENSG00000100150 | DEPDC5 | DEP domain containing 5 | 9681 | This gene encodes a member of the IML1 family of proteins involved in G-protein signaling pathways. The mechanistic target of rapamycin complex 1 (mTORC1) pathway regulates cell growth by sensing the availability of nutrients. The protein encoded by this gene is a component of the GATOR1 (GAP activity toward Rags) complex which inhibits the amino acid-sensing branch of the mTORC1 pathway. Mutations in this gene are associated with autosomal dominant familial focal epilepsy with variable foci. A single nucleotide polymorphism in an intron of this gene has been associated with an increased risk of hepatocellular carcinoma in individuals with chronic hepatitis C virus infection. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000128245 | YWHAH | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein eta | 7533 | This gene product belongs to the 14-3-3 family of proteins which mediate signal transduction by binding to phosphoserine-containing proteins. This highly conserved protein family is found in both plants and mammals, and this protein is 99% identical to the mouse, rat and bovine orthologs. This gene contains a 7 bp repeat sequence in its 5’ UTR, and changes in the number of this repeat have been associated with early-onset schizophrenia and psychotic bipolar disorder. |
| NA | ENSG00000100220 | RTCB | RNA 2’,3’-cyclic phosphate and 5’-OH ligase | 51493 | NA |
| NA | ENSG00000100225 | FBXO7 | F-box protein 7 | 25793 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class and it may play a role in regulation of hematopoiesis. Alternatively spliced transcript variants of this gene have been identified with the full-length natures of only some variants being determined. |
| NA | ENSG00000185666 | SYN3 | synapsin III | 8224 | This gene is a member of the synapsin gene family. Synapsins encode neuronal phosphoproteins which associate with the cytoplasmic surface of synaptic vesicles. Family members are characterized by common protein domains, and they are implicated in synaptogenesis and the modulation of neurotransmitter release, suggesting a potential role in several neuropsychiatric diseases. The protein encoded by this gene shares the synapsin family domain model, with domains A, C, and E exhibiting the highest degree of conservation. The protein contains a unique domain J, located between domains C and E. Based on this gene’s localization to 22q12.3, a possible schizophrenia susceptibility locus, and the established neurobiological roles of the synapsins, this family member may represent a candidate gene for schizophrenia. The TIMP3 gene is located within an intron of this gene and is transcribed in the opposite direction. Alternative splicing of this gene results in multiple splice variants that encode different isoforms. |
| NA | ENSG00000100234 | TIMP3 | TIMP metallopeptidase inhibitor 3 | 7078 | This gene belongs to the TIMP gene family. The proteins encoded by this gene family are inhibitors of the matrix metalloproteinases, a group of peptidases involved in degradation of the extracellular matrix (ECM). Expression of this gene is induced in response to mitogenic stimulation and this netrin domain-containing protein is localized to the ECM. Mutations in this gene have been associated with the autosomal dominant disorder Sorsby’s fundus dystrophy. |
| NA | ENSG00000133424 | LARGE | like-glycosyltransferase | 9215 | This gene, which is one of the largest in the human genome, encodes a member of the N-acetylglucosaminyltransferase gene family. It encodes a glycosyltransferase which participates in glycosylation of alpha-dystroglycan, and may carry out the synthesis of glycoprotein and glycosphingolipid sugar chains. It may also be involved in the addition of a repeated disaccharide unit. Mutations in this gene cause MDC1D, a novel form of congenital muscular dystrophy with severe mental retardation and abnormal glycosylation of alpha-dystroglycan. Alternative splicing of this gene results in two transcript variants that encode the same protein. |
| NA | ENSG00000100284 | TOM1 | target of myb1 membrane trafficking protein | 10043 | This gene was identified as a target of the v-myb oncogene. The encoded protein shares its N-terminal domain in common with proteins associated with vesicular trafficking at the endosome. It is recruited to the endosomes by its interaction with endofin. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100292 | HMOX1 | heme oxygenase 1 | 3162 | Heme oxygenase, an essential enzyme in heme catabolism, cleaves heme to form biliverdin, which is subsequently converted to bilirubin by biliverdin reductase, and carbon monoxide, a putative neurotransmitter. Heme oxygenase activity is induced by its substrate heme and by various nonheme substances. Heme oxygenase occurs as 2 isozymes, an inducible heme oxygenase-1 and a constitutive heme oxygenase-2. HMOX1 and HMOX2 belong to the heme oxygenase family. |
| NA | ENSG00000100297 | MCM5 | minichromosome maintenance complex component 5 | 4174 | The protein encoded by this gene is structurally very similar to the CDC46 protein from S. cerevisiae, a protein involved in the initiation of DNA replication. The encoded protein is a member of the MCM family of chromatin-binding proteins and can interact with at least two other members of this family. The encoded protein is upregulated in the transition from the G0 to G1/S phase of the cell cycle and may actively participate in cell cycle regulation. |
| NA | ENSG00000100302 | RASD2 | RASD family member 2 | 23551 | This gene belongs to the Ras superfamily of small GTPases and is enriched in the striatum. The encoded protein functions as an E3 ligase for attachment of small ubiquitin-like modifier (SUMO). This protein also binds to mutant huntingtin (mHtt), the protein mutated in Huntington disease (HD). Sumoylation of mHTT by this protein may cause degeneration of the striatum. The protein functions as an activator of mechanistic target of rapamycin 1 (mTOR1), which in turn plays a role in myelination, axon growth and regeneration. Reduced levels of mRNA expressed by this gene were found in HD patients. |
| NA | ENSG00000100320 | RBFOX2 | RNA binding protein, fox-1 homolog (C. elegans) 2 | 23543 | This gene is one of several human genes similar to the C. elegans gene Fox-1. This gene encodes an RNA binding protein that is thought to be a key regulator of alternative exon splicing in the nervous system and other cell types. The protein binds to a conserved UGCAUG element found downstream of many alternatively spliced exons and promotes inclusion of the alternative exon in mature transcripts. The protein also interacts with the estrogen receptor 1 transcription factor and regulates estrogen receptor 1 transcriptional activity. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000128335 | APOL2 | apolipoprotein L2 | 23780 | This gene is a member of the apolipoprotein L gene family. The encoded protein is found in the cytoplasm, where it may affect the movement of lipids or allow the binding of lipids to organelles. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000100345 | MYH9 | myosin, heavy chain 9, non-muscle | 4627 | This gene encodes a conventional non-muscle myosin; this protein should not be confused with the unconventional myosin-9a or 9b (MYO9A or MYO9B). The encoded protein is a myosin IIA heavy chain that contains an IQ domain and a myosin head-like domain which is involved in several important functions, including cytokinesis, cell motility and maintenance of cell shape. Defects in this gene have been associated with non-syndromic sensorineural deafness autosomal dominant type 17, Epstein syndrome, Alport syndrome with macrothrombocytopenia, Sebastian syndrome, Fechtner syndrome and macrothrombocytopenia with progressive sensorineural deafness. |
| NA | ENSG00000100348 | TXN2 | thioredoxin 2 | 25828 | This nuclear gene encodes a mitochondrial member of the thioredoxin family, a group of small multifunctional redox-active proteins. The encoded protein may play important roles in the regulation of the mitochondrial membrane potential and in protection against oxidant-induced apoptosis. |
| NA | ENSG00000100350 | FOXRED2 | FAD dependent oxidoreductase domain containing 2 | 80020 | NA |
| NA | ENSG00000100360 | IFT27 | intraflagellar transport 27 | 11020 | This gene encodes a GTP-binding protein that is a core component of the intraflagellar transport complex B. Characterization of the similar Chlamydomonas protein indicates a function in cell cycle control. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000128311 | TST | thiosulfate sulfurtransferase | 7263 | This is one of two neighboring genes encoding similar proteins that each contain two rhodanese domains. The encoded protein is localized to the mitochondria and catalyzes the conversion of thiosulfate and cyanide to thiocyanate and sulfite. In addition, the protein interacts with 5S ribosomal RNA and facilitates its import into the mitochondria. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000128309 | MPST | mercaptopyruvate sulfurtransferase | 4357 | This protein encoded by this gene catalyzes the transfer of a sulfur ion from 3-mercaptopyruvate to cyanide or other thiol compounds. It may be involved in cysteine degradation and cyanide detoxification. There is confusion in literature between this protein (mercaptopyruvate sulfurtransferase, MPST), which appears to be cytoplasmic, and thiosulfate sulfurtransferase (rhodanese, TST, GeneID:7263), which is a mitochondrial protein. Deficiency in MPST activity has been implicated in a rare inheritable disorder known as mercaptolactate-cysteine disulfiduria (MCDU). Alternatively spliced transcript variants encoding same or different isoforms have been identified for this gene. |
| NA | ENSG00000100379 | KCTD17 | potassium channel tetramerization domain containing 17 | 79734 | NA |
| NA | ENSG00000133466 | C1QTNF6 | C1q and tumor necrosis factor related protein 6 | 114904 | NA |
| NA | ENSG00000128340 | RAC2 | ras-related C3 botulinum toxin substrate 2 (rho family, small GTP binding protein Rac2) | 5880 | This gene encodes a member of the Ras superfamily of small guanosine triphosphate (GTP)-metabolizing proteins. The encoded protein localizes to the plasma membrane, where it regulates diverse processes, such as secretion, phagocytosis, and cell polarization. Activity of this protein is also involved in the generation of reactive oxygen species. Mutations in this gene are associated with neutrophil immunodeficiency syndrome. There is a pseudogene for this gene on chromosome 6. |
| NA | ENSG00000100060 | MFNG | MFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase | 4242 | This gene is a member of the fringe gene family which also includes radical and lunatic fringe genes. They all encode evolutionarily conserved secreted proteins that act in the Notch receptor pathway to demarcate boundaries during embryonic development. While their genomic structure is distinct from other glycosyltransferases, fringe proteins have a fucose-specific beta-1,3-N-acetylglucosaminyltransferase activity that leads to elongation of O-linked fucose residues on Notch, which alters Notch signaling. |
| NA | ENSG00000100065 | CARD10 | caspase recruitment domain family member 10 | 29775 | The caspase recruitment domain (CARD) is a protein module that consists of 6 or 7 antiparallel alpha helices. It participates in apoptosis signaling through highly specific protein-protein homophilic interactions. Like several other CARD proteins, CARD10 belongs to the membrane-associated guanylate kinase (MAGUK) family and activates NF-kappa-B (NFKB; see MIM 164011) through BCL10 (MIM 603517) (Wang et al., 2001 [PubMed 11259443]). |
| NA | ENSG00000128283 | CDC42EP1 | CDC42 effector protein 1 | 11135 | CDC42 is a member of the Rho GTPase family that regulates multiple cellular activities, including actin polymerization. The protein encoded by this gene is a CDC42 binding protein that mediates actin cytoskeleton reorganization at the plasma membrane. This protein is secreted and is primarily found in bone marrow. |
| NA | ENSG00000100083 | GGA1 | golgi-associated, gamma adaptin ear containing, ARF binding protein 1 | 26088 | This gene encodes a member of the Golgi-localized, gamma adaptin ear-containing, ARF-binding (GGA) protein family. Members of this family are ubiquitous coat proteins that regulate the trafficking of proteins between the trans-Golgi network and the lysosome. These proteins share an amino-terminal VHS domain which mediates sorting of the mannose 6-phosphate receptors at the trans-Golgi network. They also contain a carboxy-terminal region with homology to the ear domain of gamma-adaptins. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100092 | SH3BP1 | SH3-domain binding protein 1 | 23616 | NA |
| NA | ENSG00000100101 | RP1-37E16.12 | NA | ENSG00000100101 | NA |
| NA | ENSG00000100106 | TRIOBP | TRIO and F-actin binding protein | 11078 | This gene encodes a protein with an N-terminal pleckstrin homology domain and a C-terminal coiled-coil region. The protein interacts with trio, which is involved with neural tissue development and controlling actin cytoskeleton organization, cell motility and cell growth. The protein also associates with F-actin and stabilizes F-actin structures. Mutations in this gene have been associated with a form of autosomal recessive nonsyndromic deafness. Multiple alternatively spliced transcript variants that would encode different isoforms have been found for this gene, however some transcripts may be subject to nonsense-mediated decay (NMD). |
| NA | ENSG00000189060 | H1F0 | H1 histone family member 0 | 3005 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene is intronless and encodes a replication-independent histone that is a member of the histone H1 family. |
| NA | ENSG00000100116 | GCAT | glycine C-acetyltransferase | 23464 | The degradation of L-threonine to glycine consists of a two-step biochemical pathway involving the enzymes L-threonine dehydrogenase and 2-amino-3-ketobutyrate coenzyme A ligase. L-Threonine is first converted into 2-amino-3-ketobutyrate by L-threonine dehydrogenase. This gene encodes the second enzyme in this pathway, which then catalyzes the reaction between 2-amino-3-ketobutyrate and coenzyme A to form glycine and acetyl-CoA. The encoded enzyme is considered a class II pyridoxal-phosphate-dependent aminotransferase. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 14. |
| NA | ENSG00000100124 | ANKRD54 | ankyrin repeat domain 54 | 129138 | NA |
| NA | ENSG00000100129 | EIF3L | eukaryotic translation initiation factor 3 subunit L | 51386 | NA |
| NA | ENSG00000100139 | MICALL1 | MICAL like 1 | 85377 | NA |
| NA | ENSG00000100142 | POLR2F | polymerase (RNA) II subunit F | 5435 | This gene encodes the sixth largest subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. In yeast, this polymerase subunit, in combination with at least two other subunits, forms a structure that stabilizes the transcribing polymerase on the DNA template. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100151 | PICK1 | protein interacting with PRKCA 1 | 9463 | The protein encoded by this gene contains a PDZ domain, through which it interacts with protein kinase C, alpha (PRKCA). This protein may function as an adaptor that binds to and organizes the subcellular localization of a variety of membrane proteins. It has been shown to interact with multiple glutamate receptor subtypes, monoamine plasma membrane transporters, as well as non-voltage gated sodium channels, and may target PRKCA to these membrane proteins and thus regulate their distribution and function. This protein has also been found to act as an anchoring protein that specifically targets PRKCA to mitochondria in a ligand-specific manner. Three transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000128298 | BAIAP2L2 | BAI1 associated protein 2 like 2 | 80115 | The protein encoded by this gene binds phosphoinositides and promotes the formation of planar or curved membrane structures. The encoded protein is found in RAB13-positive vesicles and at intercellular contacts with the plasma membrane. |
| NA | ENSG00000185022 | MAFF | v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog F | 23764 | The protein encoded by this gene is a basic leucine zipper (bZIP) transcription factor that lacks a transactivation domain. It is known to bind the US-2 DNA element in the promoter of the oxytocin receptor (OTR) gene and most likely heterodimerizes with other leucine zipper-containing proteins to enhance expression of the OTR gene during term pregnancy. The encoded protein can also form homodimers, and since it lacks a transactivation domain, the homodimer may act as a repressor of transcription. This gene may also be involved in the cellular stress response. Multiple transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000198792 | TMEM184B | transmembrane protein 184B | 25829 | NA |
| NA | ENSG00000213923 | CSNK1E | casein kinase 1 epsilon | 1454 | The protein encoded by this gene is a serine/threonine protein kinase and a member of the casein kinase I protein family, whose members have been implicated in the control of cytoplasmic and nuclear processes, including DNA replication and repair. The encoded protein is found in the cytoplasm as a monomer and can phosphorylate a variety of proteins, including itself. This protein has been shown to phosphorylate period, a circadian rhythm protein. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000213923 | LOC400927-CSNK1E | LOC400927-CSNK1E readthrough | 102800317 | This locus represents naturally occurring readthrough transcription between the neighboring LOC400927 (transmembrane phosphoinositide 3-phosphatase and tensin homolog 2 pseudogene) and CSNK1E (casein kinase I isoform epsilon) genes on chromosome 22. The readthrough transcript encodes the same protein as the downstream gene product (casein kinase I isoform epsilon). |
| NA | ENSG00000100196 | KDELR3 | KDEL endoplasmic reticulum protein retention receptor 3 | 11015 | This gene encodes a member of the KDEL endoplasmic reticulum protein retention receptor family. Retention of resident soluble proteins in the lumen of the endoplasmic reticulum (ER) is achieved in both yeast and animal cells by their continual retrieval from the cis-Golgi, or a pre-Golgi compartment. Sorting of these proteins is dependent on a C-terminal tetrapeptide signal, usually lys-asp-glu-leu (KDEL) in animal cells, and his-asp-glu-leu (HDEL) in S. cerevisiae. This process is mediated by a receptor that recognizes, and binds the tetrapeptide-containing protein, and returns it to the ER. In yeast, the sorting receptor encoded by a single gene, ERD2, is a seven-transmembrane protein. Unlike yeast, several human homologs of the ERD2 gene, constituting the KDEL receptor gene family, have been described. KDELR3 was the third member of the family to be identified. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000100201 | DDX17 | DEAD-box helicase 17 | 10521 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and splicesosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which is an ATPase activated by a variety of RNA species, but not by dsDNA. This protein, and that encoded by DDX5 gene, are more closely related to each other than to any other member of the DEAD box family. This gene can encode multiple isoforms due to both alternative splicing and the use of alternative translation initiation codons, including a non-AUG (CUG) start codon. |
| NA | ENSG00000100206 | DMC1 | DNA meiotic recombinase 1 | 11144 | This gene encodes a member of the superfamily of recombinases (also called DNA strand-exchange proteins). Recombinases are important for repairing double-strand DNA breaks during mitosis and meiosis. This protein, which is evolutionarily conserved, is reported to be essential for meiotic homologous recombination and may thus play an important role in generating diversity of genetic information. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000184949 | FAM227A | family with sequence similarity 227 member A | 646851 | NA |
| NA | ENSG00000100211 | CBY1 | chibby homolog 1 (Drosophila) | 25776 | Beta-catenin is a transcriptional activator and oncoprotein involved in the development of several cancers. The protein encoded by this gene interacts directly with the C-terminal region of beta-catenin, inhibiting oncogenic beta-catenin-mediated transcriptional activation by competing with transcription factors for binding to beta-catenin. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100216 | TOMM22 | translocase of outer mitochondrial membrane 22 | 56993 | The protein encoded by this gene is an integral membrane protein of the mitochondrial outer membrane. The encoded protein interacts with TOMM20 and TOMM40, and forms a complex with several other proteins to import cytosolic preproteins into the mitochondrion. |
| NA | ENSG00000100221 | JOSD1 | Josephin domain containing 1 | 9929 | NA |
| NA | ENSG00000100226 | GTPBP1 | GTP binding protein 1 | 9567 | This gene is upregulated by interferon-gamma and encodes a protein that is a member of the AGP11/GTPBP1 family of GTP-binding proteins. A structurally similar protein has been found in mouse, where disruption of the gene for that protein had no observable phenotype. |
| NA | ENSG00000100246 | DNAL4 | dynein axonemal light chain 4 | 10126 | This gene encodes an axonemal dynein light chain which functions as a component of the outer dynein arms complex. This complex acts as the molecular motor that provides the force to move cilia in an ATP-dependent manner. The encoded protein is expressed in tissues with motile cilia or flagella and may be involved in the movement of sperm flagella. |
| NA | ENSG00000221890 | NPTXR | neuronal pentraxin receptor | 23467 | This gene encodes a protein similar to the rat neuronal pentraxin receptor. The rat pentraxin receptor is an integral membrane protein that is thought to mediate neuronal uptake of the snake venom toxin, taipoxin, and its transport into the synapses. Studies in rat indicate that translation of this mRNA initiates at a non-AUG (CUG) codon. This may also be true for mouse and human, based on strong sequence conservation amongst these species. |
| NA | ENSG00000183741 | CBX6 | chromobox 6 | 23466 | NA |
| NA | ENSG00000179750 | APOBEC3B | apolipoprotein B mRNA editing enzyme catalytic subunit 3B | 9582 | This gene is a member of the cytidine deaminase gene family. It is one of seven related genes or pseudogenes found in a cluster, thought to result from gene duplication, on chromosome 22. Members of the cluster encode proteins that are structurally and functionally related to the C to U RNA-editing cytidine deaminase APOBEC1. It is thought that the proteins may be RNA editing enzymes and have roles in growth or cell cycle control. A hybrid gene results from the deletion of approximately 29.5 kb of sequence between this gene, APOBEC3B, and the adjacent gene APOBEC3A. The breakpoints of the deletion are within the two genes, so the deletion allele is predicted to have the promoter and coding region of APOBEC3A, but the 3’ UTR of APOBEC3B. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000244509 | APOBEC3C | apolipoprotein B mRNA editing enzyme catalytic subunit 3C | 27350 | This gene is a member of the cytidine deaminase gene family. It is one of seven related genes or pseudogenes found in a cluster thought to result from gene duplication, on chromosome 22. Members of the cluster encode proteins that are structurally and functionally related to the C to U RNA-editing cytidine deaminase APOBEC1. It is thought that the proteins may be RNA editing enzymes and have roles in growth or cell cycle control. |
| NA | ENSG00000243811 | APOBEC3D | apolipoprotein B mRNA editing enzyme catalytic subunit 3D | 140564 | This gene is a member of the cytidine deaminase gene family. It is one of a group of related genes found in a cluster, thought to result from gene duplication, on chromosome 22. Members of the cluster encode proteins that are structurally and functionally related to the C to U RNA-editing cytidine deaminase APOBEC1 and inhibit retroviruses, such as HIV, by deaminating cytosine residues in nascent retroviral cDNA. |
| NA | ENSG00000128394 | APOBEC3F | apolipoprotein B mRNA editing enzyme catalytic subunit 3F | 200316 | This gene is a member of the cytidine deaminase gene family. It is one of seven related genes or pseudogenes found in a cluster, thought to result from gene duplication, on chromosome 22. Members of the cluster encode proteins that are structurally and functionally related to the C to U RNA-editing cytidine deaminase APOBEC1. It is thought that the proteins may be RNA editing enzymes and have roles in growth or cell cycle control. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000100307 | CBX7 | chromobox 7 | 23492 | NA |
| NA | ENSG00000100316 | RPL3 | ribosomal protein L3 | 6122 | Ribosomes, the complexes that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L3P family of ribosomal proteins and it is located in the cytoplasm. The protein can bind to the HIV-1 TAR mRNA, and it has been suggested that the protein contributes to tat-mediated transactivation. This gene is co-transcribed with several small nucleolar RNA genes, which are located in several of this gene’s introns. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000100321 | SYNGR1 | synaptogyrin 1 | 9145 | This gene encodes an integral membrane protein associated with presynaptic vesicles in neuronal cells. The exact function of this protein is unclear, but studies of a similar murine protein suggest that it functions in synaptic plasticity without being required for synaptic transmission. The gene product belongs to the synaptogyrin gene family. Three alternatively spliced variants encoding three different isoforms have been identified. |
| NA | ENSG00000100324 | TAB1 | TGF-beta activated kinase 1/MAP3K7 binding protein 1 | 10454 | The protein encoded by this gene was identified as a regulator of the MAP kinase kinase kinase MAP3K7/TAK1, which is known to mediate various intracellular signaling pathways, such as those induced by TGF beta, interleukin 1, and WNT-1. This protein interacts and thus activates TAK1 kinase. It has been shown that the C-terminal portion of this protein is sufficient for binding and activation of TAK1, while a portion of the N-terminus acts as a dominant-negative inhibitor of TGF beta, suggesting that this protein may function as a mediator between TGF beta receptors and TAK1. This protein can also interact with and activate the mitogen-activated protein kinase 14 (MAPK14/p38alpha), and thus represents an alternative activation pathway, in addition to the MAPKK pathways, which contributes to the biological responses of MAPK14 to various stimuli. Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000128268 | MGAT3 | mannosyl (beta-1,4-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase | 4248 | There are believed to be over 100 different glycosyltransferases involved in the synthesis of protein-bound and lipid-bound oligosaccharides. The enzyme encoded by this gene transfers a GlcNAc residue to the beta-linked mannose of the trimannosyl core of N-linked oligosaccharides and produces a bisecting GlcNAc. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000100335 | MIEF1 | mitochondrial elongation factor 1 | 54471 | NA |
| NA | ENSG00000128272 | ATF4 | activating transcription factor 4 | 468 | This gene encodes a transcription factor that was originally identified as a widely expressed mammalian DNA binding protein that could bind a tax-responsive enhancer element in the LTR of HTLV-1. The encoded protein was also isolated and characterized as the cAMP-response element binding protein 2 (CREB-2). The protein encoded by this gene belongs to a family of DNA-binding proteins that includes the AP-1 family of transcription factors, cAMP-response element binding proteins (CREBs) and CREB-like proteins. These transcription factors share a leucine zipper region that is involved in protein-protein interactions, located C-terminal to a stretch of basic amino acids that functions as a DNA binding domain. Two alternative transcripts encoding the same protein have been described. Two pseudogenes are located on the X chromosome at q28 in a region containing a large inverted duplication. |
| NA | ENSG00000187051 | RPS19BP1 | ribosomal protein S19 binding protein 1 | 91582 | NA |
| NA | ENSG00000133477 | FAM83F | family with sequence similarity 83 member F | 113828 | NA |
| NA | ENSG00000100354 | TNRC6B | trinucleotide repeat containing 6B | 23112 | NA |
| NA | ENSG00000239900 | ADSL | adenylosuccinate lyase | 158 | The protein encoded by this gene belongs to the lyase 1 family. It is an essential enzyme involved in purine metabolism, and catalyzes two non-sequential reactions in the de novo purine biosynthetic pathway: the conversion of succinylaminoimidazole carboxamide ribotide (SAICAR) to aminoimidazole carboxamide ribotide (AICAR) and the conversion of adenylosuccinate (S-AMP) to adenosine monophosphate (AMP). Mutations in this gene are associated with adenylosuccinase deficiency (ADSLD), a disorder marked with psychomotor retardation, epilepsy or autistic features. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000100359 | SGSM3 | small G protein signaling modulator 3 | 27352 | NA |
| NA | ENSG00000196588 | MKL1 | megakaryoblastic leukemia (translocation) 1 | 57591 | The protein encoded by this gene interacts with the transcription factor myocardin, a key regulator of smooth muscle cell differentiation. The encoded protein is predominantly nuclear and may help transduce signals from the cytoskeleton to the nucleus. This gene is involved in a specific translocation event that creates a fusion of this gene and the RNA-binding motif protein-15 gene. This translocation has been associated with acute megakaryocytic leukemia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100372 | SLC25A17 | solute carrier family 25 member 17 | 10478 | This gene encodes a peroxisomal membrane protein that belongs to the family of mitochondrial solute carriers. It is expressed in the liver, and is likely involved in transport. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100380 | ST13 | suppression of tumorigenicity 13 (colon carcinoma) (Hsp70 interacting protein) | 6767 | The protein encoded by this gene is an adaptor protein that mediates the association of the heat shock proteins HSP70 and HSP90. This protein has been shown to be involved in the assembly process of glucocorticoid receptor, which requires the assistance of multiple molecular chaperones. The expression of this gene is reported to be downregulated in colorectal carcinoma tissue suggesting that it is a candidate tumor suppressor gene. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000100393 | EP300 | E1A binding protein p300 | 2033 | This gene encodes the adenovirus E1A-associated cellular p300 transcriptional co-activator protein. It functions as histone acetyltransferase that regulates transcription via chromatin remodeling and is important in the processes of cell proliferation and differentiation. It mediates cAMP-gene regulation by binding specifically to phosphorylated CREB protein. This gene has also been identified as a co-activator of HIF1A (hypoxia-inducible factor 1 alpha), and thus plays a role in the stimulation of hypoxia-induced genes such as VEGF. Defects in this gene are a cause of Rubinstein-Taybi syndrome and may also play a role in epithelial cancer. |
| NA | ENSG00000100395 | L3MBTL2 | l(3)mbt-like 2 (Drosophila) | 83746 | NA |
| NA | ENSG00000100401 | RANGAP1 | Ran GTPase activating protein 1 | 5905 | This gene encodes a protein that associates with the nuclear pore complex and participates in the regulation of nuclear transport. The encoded protein interacts with Ras-related nuclear protein 1 (RAN) and regulates guanosine triphosphate (GTP)-binding and exchange. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100403 | ZC3H7B | zinc finger CCCH-type containing 7B | 23264 | This gene encodes a protein that contains a tetratricopeptide repeat domain. The encoded protein also interacts with the rotavirus non-structural protein NSP3. |
| NA | ENSG00000167074 | TEF | thyrotrophic embryonic factor | 7008 | This gene encodes a member of the PAR (proline and acidic amino acid-rich) subfamily of basic region/leucine zipper (bZIP) transcription factors. It is expressed in a broad range of cells and tissues in adult animals, however, during embryonic development, TEF expression appears to be restricted to the developing anterior pituitary gland, coincident with the appearance of thyroid-stimulating hormone, beta (TSHB). Indeed, TEF can bind to, and transactivate the TSHB promoter. It shows homology (in the functional domains) with other members of the PAR-bZIP subfamily of transcription factors, which include albumin D box-binding protein (DBP), human hepatic leukemia factor (HLF) and chicken vitellogenin gene-binding protein (VBP); VBP is considered the chicken homologue of TEF. Different members of the subfamily can readily form heterodimers, and share DNA-binding, and transcriptional regulatory properties. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183864 | TOB2 | transducer of ERBB2, 2 | 10766 | TOB2 belongs to the TOB (see TOB1; MIM 605523)/BTG1 (MIM 109580) family of antiproliferative proteins, which are involved in the regulation of cell cycle progression. |
| NA | ENSG00000100410 | PHF5A | PHD finger protein 5A | 84844 | This gene encodes a subunit of the splicing factor 3b protein complex. Splicing factor 3b, together with splicing factor 3a and a 12S RNA unit, forms the U2 small nuclear ribonucleoproteins complex (U2 snRNP). The splicing factor 3b/3a complex binds pre-mRNA upstream of the intron’s branch site in a sequence-independent manner and may anchor the U2 snRNP to the pre-mRNA. The protein encoded by this gene contains a PHD-finger-like domain that is flanked by highly basic N- and C-termini. This protein belongs to the PHD-finger superfamily and may act as a chromatin-associated protein. This gene has several pseudogenes on different chromosomes. |
| NA | ENSG00000100412 | ACO2 | aconitase 2 | 50 | The protein encoded by this gene belongs to the aconitase/IPM isomerase family. It is an enzyme that catalyzes the interconversion of citrate to isocitrate via cis-aconitate in the second step of the TCA cycle. This protein is encoded in the nucleus and functions in the mitochondrion. It was found to be one of the mitochondrial matrix proteins that are preferentially degraded by the serine protease 15(PRSS15), also known as Lon protease, after oxidative modification. |
| NA | ENSG00000100413 | POLR3H | polymerase (RNA) III subunit H | 171568 | NA |
| NA | ENSG00000100417 | PMM1 | phosphomannomutase 1 | 5372 | Phosphomannomutase catalyzes the conversion between D-mannose 6-phosphate and D-mannose 1-phosphate which is a substrate for GDP-mannose synthesis. GDP-mannose is used for synthesis of dolichol-phosphate-mannose, which is essential for N-linked glycosylation and thus the secretion of several glycoproteins as well as for the synthesis of glycosyl-phosphatidyl-inositol (GPI) anchored proteins. |
| NA | ENSG00000100418 | DESI1 | desumoylating isopeptidase 1 | 27351 | NA |
| NA | ENSG00000100138 | SNU13 | SNU13 homolog, small nuclear ribonucleoprotein (U4/U6.U5) | 4809 | Originally named because of its sequence similarity to the Saccharomyces cerevisiae NHP2 (non-histone protein 2), this protein appears to be a highly conserved nuclear protein that is a component of the [U4/U6.U5] tri-snRNP. It binds to the 5’ stem-loop of U4 snRNA. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000184208 | C22orf46 | chromosome 22 open reading frame 46 | 79640 | NA |
| NA | ENSG00000100147 | CCDC134 | coiled-coil domain containing 134 | 79879 | NA |
| NA | ENSG00000198911 | SREBF2 | sterol regulatory element binding transcription factor 2 | 6721 | This gene encodes a member of the a ubiquitously expressed transcription factor that controls cholesterol homeostasis by regulating transcription of sterol-regulated genes. The encoded protein contains a basic helix-loop-helix-leucine zipper (bHLH-Zip) domain and binds the sterol regulatory element 1 motif. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000100162 | CENPM | centromere protein M | 79019 | The protein encoded by this gene is an inner protein of the kinetochore, the multi-protein complex that binds spindle microtubules to regulate chromosome segregation during cell division. It belongs to the constitutive centromere-associated network protein group, whose members interact with outer kinetochore proteins and help to maintain centromere identity at each cell division cycle. The protein is structurally related to GTPases but cannot bind guanosine triphosphate. A point mutation that affects interaction with another constitutive centromere-associated network protein, CENP-I, impairs kinetochore assembly and chromosome alignment, suggesting that it is required for kinetochore formation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100167 | SEPT3 | septin 3 | 55964 | This gene belongs to the septin family of GTPases. Members of this family are required for cytokinesis. Expression is upregulated by retinoic acid in a human teratocarcinoma cell line. The specific function of this gene has not been determined. Alternative splicing of this gene results in two transcript variants encoding different isoforms. |
| NA | ENSG00000198951 | NAGA | N-acetylgalactosaminidase, alpha- | 4668 | NAGA encodes the lysosomal enzyme alpha-N-acetylgalactosaminidase, which cleaves alpha-N-acetylgalactosaminyl moieties from glycoconjugates. Mutations in NAGA have been identified as the cause of Schindler disease types I and II (type II also known as Kanzaki disease). |
| NA | ENSG00000177096 | FAM109B | family with sequence similarity 109 member B | 150368 | NA |
| NA | ENSG00000183172 | SMDT1 | single-pass membrane protein with aspartate-rich tail 1 | 91689 | NA |
| NA | ENSG00000184983 | NDUFA6 | NADH:ubiquinone oxidoreductase subunit A6 | 4700 | NA |
| NA | ENSG00000100207 | TCF20 | transcription factor 20 (AR1) | 6942 | This gene encodes a transcription factor that recognizes the platelet-derived growth factor-responsive element in the matrix metalloproteinase 3 promoter. The encoded protein is thought to be a transcriptional coactivator, enhancing the activity of transcription factors such as JUN and SP1. Mutations in this gene are associated with autism spectrum disorders. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100227 | POLDIP3 | polymerase (DNA) delta interacting protein 3 | 84271 | This gene encodes an RRM (RNA recognition motif)-containing protein that participates in the regulation of translation by recruiting ribosomal protein S6 kinase beta-1 to mRNAs. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100243 | CYB5R3 | cytochrome b5 reductase 3 | 1727 | This gene encodes cytochrome b5 reductase, which includes a membrane-bound form in somatic cells (anchored in the endoplasmic reticulum, mitochondrial and other membranes) and a soluble form in erythrocytes. The membrane-bound form exists mainly on the cytoplasmic side of the endoplasmic reticulum and functions in desaturation and elongation of fatty acids, in cholesterol biosynthesis, and in drug metabolism. The erythrocyte form is located in a soluble fraction of circulating erythrocytes and is involved in methemoglobin reduction. The membrane-bound form has both membrane-binding and catalytic domains, while the soluble form has only the catalytic domain. Alternate splicing results in multiple transcript variants. Mutations in this gene cause methemoglobinemias. |
| NA | ENSG00000249222 | ATP5L2 | ATP synthase, H+ transporting, mitochondrial Fo complex subunit G2 | 267020 | NA |
| NA | ENSG00000242247 | ARFGAP3 | ADP ribosylation factor GTPase activating protein 3 | 26286 | The protein encoded by this gene is a GTPase-activating protein (GAP) that associates with the Golgi apparatus and regulates the early secretory pathway of proteins. The encoded protein promotes hydrolysis of ADP-ribosylation factor 1 (ARF1)-bound GTP, which is required for the dissociation of coat proteins from Golgi-derived membranes and vesicles. Dissociation of the coat proteins is a prerequisite for the fusion of these vesicles with target compartments. The activity of this protein is sensitive to phospholipids. Multiple transcript variants encoding different isoforms have been found for this gene. This gene was originally known as ARFGAP1, but that is now the name of a related but different gene. |
| NA | ENSG00000100266 | PACSIN2 | protein kinase C and casein kinase substrate in neurons 2 | 11252 | This gene is a member of the protein kinase C and casein kinase substrate in neurons family. The encoded protein is involved in linking the actin cytoskeleton with vesicle formation by regulating tubulin polymerization. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000100271 | TTLL1 | tubulin tyrosine ligase like 1 | 25809 | NA |
| NA | ENSG00000100294 | MCAT | malonyl-CoA-acyl carrier protein transacylase | 27349 | The protein encoded by this gene is found exclusively in the mitochondrion, where it catalyzes the transfer of a malonyl group from malonyl-CoA to the mitochondrial acyl carrier protein. The encoded protein may be part of a fatty acid synthase complex that is more like the type II prokaryotic and plastid complexes rather than the type I human cytosolic complex. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000100300 | TSPO | translocator protein | 706 | Present mainly in the mitochondrial compartment of peripheral tissues, the protein encoded by this gene interacts with some benzodiazepines and has different affinities than its endogenous counterpart. The protein is a key factor in the flow of cholesterol into mitochondria to permit the initiation of steroid hormone synthesis. Alternatively spliced transcript variants have been reported; one of the variants lacks an internal exon and is considered non-coding, and the other variants encode the same protein. |
| NA | ENSG00000100304 | TTLL12 | tubulin tyrosine ligase like 12 | 23170 | NA |
| NA | ENSG00000159307 | SCUBE1 | signal peptide, CUB domain and EGF like domain containing 1 | 80274 | This gene encodes a cell surface glycoprotein that is a member of the SCUBE (signal peptide, CUB domain, EGF (epidermal growth factor)-like protein) family. Family members have an amino-terminal signal peptide, nine copies of EGF-like repeats and a CUB domain at the carboxyl terminus. This protein is expressed in platelets and endothelial cells and may play an important role in vascular biology. |
| NA | ENSG00000186976 | EFCAB6 | EF-hand calcium binding domain 6 | 64800 | This gene encodes a protein which directly binds the oncogene DJ-1 and androgen receptor to form a ternary complex in cells. This binding protein recruits histone-deacetylase complexes in order to repress transcription activity of androgen receptor. This protein may also play a role in spermatogenesis and fertilization. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130540 | SULT4A1 | sulfotransferase family 4A member 1 | 25830 | This gene encodes a member of the sulfotransferase family. The encoded protein is a brain-specific sulfotransferase believed to be involved in the metabolism of neurotransmitters. Polymorphisms in this gene may be associated with susceptibility to schizophrenia. |
| NA | ENSG00000100341 | PNPLA5 | patatin like phospholipase domain containing 5 | 150379 | This gene is a member of the patatin-like phospholipase family; its encoded protein has been shown to inhibit transacylation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100344 | PNPLA3 | patatin like phospholipase domain containing 3 | 80339 | The protein encoded by this gene is a triacylglycerol lipase that mediates triacylglycerol hydrolysis in adipocytes. The encoded protein, which appears to be membrane bound, may be involved in the balance of energy usage/storage in adipocytes. |
| NA | ENSG00000100347 | SAMM50 | SAMM50 sorting and assembly machinery component | 25813 | This gene encodes a component of the Sorting and Assembly Machinery (SAM) of the mitochondrial outer membrane. The Sam complex functions in the assembly of beta-barrel proteins into the outer mitochondrial membrane. |
| NA | ENSG00000188677 | PARVB | parvin beta | 29780 | This gene encodes a member of the parvin family of actin-binding proteins, which play a role in cytoskeleton organization and cell adhesion. These proteins are associated with focal contacts and contain calponin homology domains that bind to actin filaments. This family member binds to alphaPIX and alpha-actinin, and it can inhibit the activity of integrin-linked kinase. This protein also functions in tumor suppression. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000138944 | KIAA1644 | KIAA1644 | 85352 | NA |
| NA | ENSG00000188636 | LDOC1L | leucine zipper, down-regulated in cancer 1-like | 84247 | NA |
| NA | ENSG00000186654 | PRR5 | proline rich 5 | 55615 | This gene encodes a protein with a proline-rich domain. This gene is located in a region of chromosome 22 reported to contain a tumor suppressor gene that may be involved in breast and colorectal tumorigenesis. The protein is a component of the mammalian target of rapamycin complex 2 (mTORC2), and it regulates platelet-derived growth factor (PDGF) receptor beta expression and PDGF signaling to Akt and S6K1. Alternative splicing and the use of alternative promoters results in transcripts encoding different isoforms. Read-through transcripts from this gene into the downstream Rho GTPase activating protein 8 (ARHGAP8) gene also exist, which led to the original description of PRR5 and ARHGAP8 being a single gene. |
| NA | ENSG00000241484 | ARHGAP8 | Rho GTPase activating protein 8 | 23779 | This gene encodes a member of the RHOGAP family. GAP (GTPase-activating) family proteins participate in signaling pathways that regulate cell processes involved in cytoskeletal changes. GAP proteins alternate between an active (GTP-bound) and inactive (GDP-bound) state based on the GTP:GDP ratio in the cell. This family member is a multidomain protein that functions to promote Erk activation and cell motility. Alternative splicing results in multiple transcript variants. Read-through transcripts from the upstream proline rich 5, renal (PRR5) gene into this gene also exist, which led to the original description of PRR5 and ARHGAP8 being a single gene. |
| NA | ENSG00000056487 | PHF21B | PHD finger protein 21B | 112885 | NA |
| NA | ENSG00000093000 | NUP50 | nucleoporin 50kDa | 10762 | The nuclear pore complex is a massive structure that extends across the nuclear envelope, forming a gateway that regulates the flow of macromolecules between the nucleus and the cytoplasm. Nucleoporins are the main components of the nuclear pore complex in eukaryotic cells. The protein encoded by this gene is a member of the FG-repeat containing nucleoporins that functions as a soluble cofactor in importin-alpha:beta-mediated nuclear protein import. Pseudogenes of this gene are found on chromosomes 5, 6, and 14. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000100364 | KIAA0930 | KIAA0930 | 23313 | NA |
| NA | ENSG00000100376 | FAM118A | family with sequence similarity 118 member A | 55007 | NA |
| NA | ENSG00000077942 | FBLN1 | fibulin 1 | 2192 | Fibulin 1 is a secreted glycoprotein that becomes incorporated into a fibrillar extracellular matrix. Calcium-binding is apparently required to mediate its binding to laminin and nidogen. It mediates platelet adhesion via binding fibrinogen. Four splice variants which differ in the 3’ end have been identified. Each variant encodes a different isoform, but no functional distinctions have been identified among the four variants. |
| NA | ENSG00000130638 | ATXN10 | ataxin 10 | 25814 | This gene encodes a protein that may function in neuron survival, neuron differentiation, and neuritogenesis. These roles may be carried out via activation of the mitogen-activated protein kinase cascade. Expansion of a pentanucleotide repeat in an intronic region of this locus has been associated with spinocerebellar ataxia, type 10. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000186951 | PPARA | peroxisome proliferator activated receptor alpha | 5465 | Peroxisome proliferators include hypolipidemic drugs, herbicides, leukotriene antagonists, and plasticizers; this term arises because they induce an increase in the size and number of peroxisomes. Peroxisomes are subcellular organelles found in plants and animals that contain enzymes for respiration and for cholesterol and lipid metabolism. The action of peroxisome proliferators is thought to be mediated via specific receptors, called PPARs, which belong to the steroid hormone receptor superfamily. PPARs affect the expression of target genes involved in cell proliferation, cell differentiation and in immune and inflammation responses. Three closely related subtypes (alpha, beta/delta, and gamma) have been identified. This gene encodes the subtype PPAR-alpha, which is a nuclear transcription factor. Multiple alternatively spliced transcript variants have been described for this gene, although the full-length nature of only two has been determined. |
| NA | ENSG00000075234 | TTC38 | tetratricopeptide repeat domain 38 | 55020 | NA |
| NA | ENSG00000075218 | GTSE1 | G2 and S-phase expressed 1 | 51512 | The protein encoded by this gene is only expressed in the S and G2 phases of the cell cycle, where it colocalizes with cytoplasmic tubulin and microtubules. In response to DNA damage, the encoded protein accumulates in the nucleus and binds the tumor suppressor protein p53, shuttling it out of the nucleus and repressing its ability to induce apoptosis. |
| NA | ENSG00000100416 | TRMU | tRNA 5-methylaminomethyl-2-thiouridylate methyltransferase | 55687 | This nuclear gene encodes a mitochondrial tRNA-modifying enzyme. The encoded protein catalyzes the 2-thiolation of uridine on the wobble positions of tRNA(Lys), tRNA(Glu), and tRNA(Gln), resulting in the formation of 5-taurinomethyl-2-thiouridine moieties. Mutations in this gene may cause transient infantile liver failure. Polymorphisms in this gene may also influence the severity of deafness caused by mitochondrial 12S ribosomal RNA mutations. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000075275 | CELSR1 | cadherin EGF LAG seven-pass G-type receptor 1 | 9620 | The protein encoded by this gene is a member of the flamingo subfamily, part of the cadherin superfamily. The flamingo subfamily consists of nonclassic-type cadherins; a subpopulation that does not interact with catenins. The flamingo cadherins are located at the plasma membrane and have nine cadherin domains, seven epidermal growth factor-like repeats and two laminin A G-type repeats in their ectodomain. They also have seven transmembrane domains, a characteristic unique to this subfamily. It is postulated that these proteins are receptors involved in contact-mediated communication, with cadherin domains acting as homophilic binding regions and the EGF-like domains involved in cell adhesion and receptor-ligand interactions. This particular member is a developmentally regulated, neural-specific gene which plays an unspecified role in early embryogenesis. |
| NA | ENSG00000100422 | CERK | ceramide kinase | 64781 | CERK converts ceramide to ceramide 1-phosphate (C1P), a sphingolipid metabolite. Both CERK and C1P have been implicated in various cellular processes, including proliferation, apoptosis, phagocytosis, and inflammation (Kim et al., 2006 [PubMed 16488390]). |
| NA | ENSG00000054611 | TBC1D22A | TBC1 domain family member 22A | 25771 | NA |
| NA | ENSG00000219438 | FAM19A5 | family with sequence similarity 19 (chemokine (C-C motif)-like), member A5 | 25817 | This gene is a member of the TAFA family which is composed of five highly homologous genes that encode small secreted proteins. These proteins contain conserved cysteine residues at fixed positions, and are distantly related to MIP-1alpha, a member of the CC-chemokine family. The TAFA proteins are predominantly expressed in specific regions of the brain, and are postulated to function as brain-specific chemokines or neurokines that act as regulators of immune and nervous cells. |
| NA | ENSG00000100425 | BRD1 | bromodomain containing 1 | 23774 | This gene encodes a bromodomain-containing protein that localizes to the nucleus and can interact with DNA and histone tails. The encoded protein is a component of the MOZ/MORF acetyltransferase complex and can stimulate acetylation of histones H3 and H4, thereby potentially playing a role in gene activation. Variation in this gene is associated with schozophrenia and bipolar disorder in some study populations. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000182858 | ALG12 | ALG12, alpha-1,6-mannosyltransferase | 79087 | This gene encodes a member of the glycosyltransferase 22 family. The encoded protein catalyzes the addition of the eighth mannose residue in an alpha-1,6 linkage onto the dolichol-PP-oligosaccharide precursor (dolichol-PP-Man(7)GlcNAc(2)) required for protein glycosylation. Mutations in this gene have been associated with congenital disorder of glycosylation type Ig (CDG-Ig)characterized by abnormal N-glycosylation. |
| NA | ENSG00000184164 | CRELD2 | cysteine rich with EGF like domains 2 | 79174 | NA |
| NA | ENSG00000170638 | TRABD | TraB domain containing | 80305 | NA |
| NA | ENSG00000073169 | SELO | selenoprotein O | 83642 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. |
| NA | ENSG00000128159 | TUBGCP6 | tubulin gamma complex associated protein 6 | 85378 | The protein encoded by this gene is part of a large multisubunit complex required for microtubule nucleation at the centrosome. |
| NA | ENSG00000188130 | MAPK12 | mitogen-activated protein kinase 12 | 6300 | Activation of members of the mitogen-activated protein kinase family is a major mechanism for transduction of extracellular signals. Stress-activated protein kinases are one subclass of MAP kinases. The protein encoded by this gene functions as a signal transducer during differentiation of myoblasts to myotubes. |
| NA | ENSG00000196576 | PLXNB2 | plexin B2 | 23654 | Members of the B class of plexins, such as PLXNB2 are transmembrane receptors that participate in axon guidance and cell migration in response to semaphorins (Perrot et al. (2002) [PubMed 12183458]). |
| NA | ENSG00000100239 | PPP6R2 | protein phosphatase 6 regulatory subunit 2 | 9701 | Protein phosphatase regulatory subunits, such as SAPS2, modulate the activity of protein phosphatase catalytic subunits by restricting substrate specificity, recruiting substrates, and determining the intracellular localization of the holoenzyme. SAPS2 is a regulatory subunit for the protein phosphatase-6 catalytic subunit (PPP6C; MIM 612725) (Stefansson and Brautigan, 2006 [PubMed 16769727]). |
| NA | ENSG00000100241 | SBF1 | SET binding factor 1 | 6305 | This gene encodes a member of the protein-tyrosine phosphatase family. However, the encoded protein does not appear to be a catalytically active phosphatase because it lacks several amino acids in the catalytic pocket. This protein contains a Guanine nucleotide exchange factor (GEF) domain which is necessary for its role in growth and differentiation. Mutations in this gene have been associated with Charcot-Marie-Tooth disease 4B3. Pseudogenes of this gene have been defined on chromosomes 1 and 8. |
| NA | ENSG00000128165 | ADM2 | adrenomedullin 2 | 79924 | This gene encodes a member of the calcitonin gene-related peptide (CGRP)/calcitonin family of hormones that play a role in the regulation of cardiovascular homeostasis, prolactin release, anti-diuresis, anti-natriuresis, and regulation of food and water intake. The encoded protein is proteolytically processed to generate one or more biologically active peptides. |
| NA | ENSG00000100258 | LMF2 | lipase maturation factor 2 | 91289 | NA |
| NA | ENSG00000025770 | NCAPH2 | non-SMC condensin II complex subunit H2 | 29781 | This gene encodes one of the non-SMC subunits of the condensin II complex. This complex plays an essential role in mitotic chromosome assembly. Alternate splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000130489 | SCO2 | SCO2 cytochrome c oxidase assembly protein | 9997 | Cytochrome c oxidase (COX) catalyzes the transfer of electrons from cytochrome c to molecular oxygen, which helps to maintain the proton gradient across the inner mitochondrial membrane that is necessary for aerobic ATP production. Human COX is a multimeric protein complex that requires several assembly factors; this gene encodes one of the COX assembly factors. The encoded protein is a metallochaperone that is involved in the biogenesis of cytochrome c oxidase subunit II. Mutations in this gene are associated with fatal infantile encephalocardiomyopathy and myopia 6. |
| NA | ENSG00000008735 | MAPK8IP2 | mitogen-activated protein kinase 8 interacting protein 2 | 23542 | The protein encoded by this gene is closely related to MAPK8IP1/IB1/JIP-1, a scaffold protein that is involved in the c-Jun amino-terminal kinase signaling pathway. This protein is expressed in brain and pancreatic cells. It has been shown to interact with, and regulate the activity of MAPK8/JNK1, and MAP2K7/MKK7 kinases. This protein thus is thought to function as a regulator of signal transduction by protein kinase cascade in brain and pancreatic beta-cells. |
| NA | ENSG00000251322 | SHANK3 | SH3 and multiple ankyrin repeat domains 3 | ENSG00000251322 | NA |
| NA | ENSG00000079974 | RABL2B | RAB, member of RAS oncogene family-like 2B | 11158 | The RABL2B protein is a member of the RAB gene family which belongs to the RAS GTPase superfamily. RABL2B is located within a subtelomeric region of 22q13.3. Multiple alternatively spliced transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000072756 | TRNT1 | tRNA nucleotidyl transferase, CCA-adding, 1 | 51095 | The protein encoded by this gene is a CCA-adding enzyme which belongs to the tRNA nucleotidyltransferase/poly(A) polymerase family. This essential enzyme functions by catalyzing the addition of the conserved nucleotide triplet CCA to the 3’ terminus of tRNA molecules. Mutations in this gene result in sideroblastic anemia with B-cell immunodeficiency, periodic fevers, and developmental delay. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000144455 | SUMF1 | sulfatase modifying factor 1 | 285362 | This gene encodes an enzyme that catalyzes the hydrolysis of sulfate esters by oxidizing a cysteine residue in the substrate sulfatase to an active site 3-oxoalanine residue, which is also known as C-alpha-formylglycine. Mutations in this gene cause multiple sulfatase deficiency, a lysosomal storage disorder. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175928 | LRRN1 | leucine rich repeat neuronal 1 | 57633 | NA |
| NA | ENSG00000150995 | ITPR1 | inositol 1,4,5-trisphosphate receptor type 1 | 3708 | This gene encodes an intracellular receptor for inositol 1,4,5-trisphosphate. Upon stimulation by inositol 1,4,5-trisphosphate, this receptor mediates calcium release from the endoplasmic reticulum. Mutations in this gene cause spinocerebellar ataxia type 15, a disease associated with an heterogeneous group of cerebellar disorders. Multiple transcript variants have been identified for this gene. |
| NA | ENSG00000134107 | BHLHE40 | basic helix-loop-helix family member e40 | 8553 | This gene encodes a basic helix-loop-helix protein expressed in various tissues. The encoded protein can interact with ARNTL or compete for E-box binding sites in the promoter of PER1 and repress CLOCK/ARNTL’s transactivation of PER1. This gene is believed to be involved in the control of circadian rhythm and cell differentiation. |
| NA | ENSG00000134108 | ARL8B | ADP ribosylation factor like GTPase 8B | 55207 | NA |
| NA | ENSG00000134109 | EDEM1 | ER degradation enhancer, mannosidase alpha-like 1 | 9695 | NA |
| NA | ENSG00000071282 | LMCD1 | LIM and cysteine rich domains 1 | 29995 | This gene encodes a member of the LIM-domain family of zinc finger proteins. The encoded protein contains an N-terminal cysteine-rich domain and two C-terminal LIM domains. The presence of LIM domains suggests involvement in protein-protein interactions. The protein may act as a co-regulator of transcription along with other transcription factors. Alternate splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000180914 | OXTR | oxytocin receptor | 5021 | The protein encoded by this gene belongs to the G-protein coupled receptor family and acts as a receptor for oxytocin. Its activity is mediated by G proteins which activate a phosphatidylinositol-calcium second messenger system. The oxytocin-oxytocin receptor system plays an important role in the uterus during parturition. |
| NA | ENSG00000070950 | RAD18 | RAD18, E3 ubiquitin protein ligase | 56852 | The protein encoded by this gene is highly similar to S. cerevisiae DNA damage repair protein Rad18. Yeast Rad18 functions through its interaction with Rad6, which is an ubiquitin-conjugating enzyme required for post-replication repair of damaged DNA. Similar to its yeast counterpart, this protein is able to interact with the human homolog of yeast Rad6 protein through a conserved ring-finger motif. Mutation of this motif results in defective replication of UV-damaged DNA and hypersensitivity to multiple mutagens. |
| NA | ENSG00000196220 | SRGAP3 | SLIT-ROBO Rho GTPase activating protein 3 | 9901 | NA |
| NA | ENSG00000134077 | THUMPD3 | THUMP domain containing 3 | 25917 | NA |
| NA | ENSG00000168137 | SETD5 | SET domain containing 5 | 55209 | This function of this gene has yet to be determined but mutations in this gene have been associated with autosomal dominant mental retardation-23. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000163719 | MTMR14 | myotubularin related protein 14 | 64419 | This gene encodes a myotubularin-related protein. The encoded protein is a phosphoinositide phosphatase that specifically dephosphorylates phosphatidylinositol 3,5-biphosphate and phosphatidylinositol 3-phosphate. Mutations in this gene are correlated with autosomal dominant centronuclear myopathy. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 18. |
| NA | ENSG00000144550 | CPNE9 | copine family member 9 | 151835 | NA |
| NA | ENSG00000156983 | BRPF1 | bromodomain and PHD finger containing 1 | 7862 | This gene encodes a bromodomain, PHD finger and chromo/Tudor-related Pro-Trp-Trp-Pro (PWWP) domain containing protein. The encoded protein is a component of the MOZ/MORF histone acetyltransferase complexes which function as a transcriptional regulators. This protein binds to the catalytic MYST domains of the MOZ and MORF proteins and may play a role in stimulating acetyltransferase and transcriptional activity of the complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000114026 | OGG1 | 8-oxoguanine DNA glycosylase | 4968 | This gene encodes the enzyme responsible for the excision of 8-oxoguanine, a mutagenic base byproduct which occurs as a result of exposure to reactive oxygen. The action of this enzyme includes lyase activity for chain cleavage. Alternative splicing of the C-terminal region of this gene classifies splice variants into two major groups, type 1 and type 2, depending on the last exon of the sequence. Type 1 alternative splice variants end with exon 7 and type 2 end with exon 8. All variants share the N-terminal region in common, which contains a mitochondrial targeting signal that is essential for mitochondrial localization. Many alternative splice variants for this gene have been described, but the full-length nature for every variant has not been determined. |
| NA | ENSG00000171148 | TADA3 | transcriptional adaptor 3 | 10474 | DNA-binding transcriptional activator proteins increase the rate of transcription by interacting with the transcriptional machinery bound to the basal promoter in conjunction with adaptor proteins, possibly by acetylation and destabilization of nucleosomes. The protein encoded by this gene is a transcriptional activator adaptor and a component of the histone acetyl transferase (HAT) coactivator complex which plays a crucial role in chromatin modulation and cell cycle progression. Along with the other components of the complex, this protein links transcriptional activators bound to specific promoters, to histone acetylation and the transcriptional machinery. The protein is also involved in the stabilization and activation of the p53 tumor suppressor protein that plays a role in the cellular response to DNA damage. Alternate splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000241553 | ARPC4 | actin related protein 2/3 complex subunit 4 | 10093 | This gene encodes one of seven subunits of the human Arp2/3 protein complex. This complex controls actin polymerization in cells and has been conserved throughout eukaryotic evolution. This gene encodes the p20 subunit, which is necessary for actin nucleation and high-affinity binding to F-actin. Alternative splicing results in multiple transcript variants. Naturally occurring read-through transcription exists between this gene and the downstream tubulin tyrosine ligase-like family, member 3 (TTLL3), which results in the production of a fusion protein. |
| NA | ENSG00000156990 | RPUSD3 | RNA pseudouridylate synthase domain containing 3 | 285367 | NA |
| NA | ENSG00000163702 | IL17RC | interleukin 17 receptor C | 84818 | This gene encodes a single-pass type I membrane protein that shares similarity with the interleukin-17 receptor (IL-17RA). Unlike IL-17RA, which is predominantly expressed in hemopoietic cells, and binds with high affinity to only IL-17A, this protein is expressed in nonhemopoietic tissues, and binds both IL-17A and IL-17F with similar affinities. The proinflammatory cytokines, IL-17A and IL-17F, have been implicated in the progression of inflammatory and autoimmune diseases. Multiple alternatively spliced transcript variants encoding different isoforms have been detected for this gene, and it has been proposed that soluble, secreted proteins lacking transmembrane and intracellular domains may function as extracellular antagonists to cytokine signaling. |
| NA | ENSG00000163703 | CRELD1 | cysteine rich with EGF like domains 1 | 78987 | This gene encodes a member of a subfamily of epidermal growth factor-related proteins. The encoded protein is characterized by a cysteine-rich with epidermal growth factor-like domain. This protein may function as a cell adhesion molecule. Mutations in this gene are the cause of atrioventricular septal defect. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000163704 | PRRT3 | proline rich transmembrane protein 3 | 285368 | NA |
| NA | ENSG00000144554 | FANCD2 | Fanconi anemia complementation group D2 | 2177 | The Fanconi anemia complementation group (FANC) currently includes FANCA, FANCB, FANCC, FANCD1 (also called BRCA2), FANCD2, FANCE, FANCF, FANCG, FANCI, FANCJ (also called BRIP1), FANCL, FANCM and FANCN (also called PALB2). The previously defined group FANCH is the same as FANCA. Fanconi anemia is a genetically heterogeneous recessive disorder characterized by cytogenetic instability, hypersensitivity to DNA crosslinking agents, increased chromosomal breakage, and defective DNA repair. The members of the Fanconi anemia complementation group do not share sequence similarity; they are related by their assembly into a common nuclear protein complex. This gene encodes the protein for complementation group D2. This protein is monoubiquinated in response to DNA damage, resulting in its localization to nuclear foci with other proteins (BRCA1 AND BRCA2) involved in homology-directed DNA repair. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000254999 | BRK1 | BRICK1, SCAR/WAVE actin-nucleating complex subunit | 55845 | NA |
| NA | ENSG00000134086 | VHL | von Hippel-Lindau tumor suppressor | 7428 | Von Hippel-Lindau syndrome (VHL) is a dominantly inherited familial cancer syndrome predisposing to a variety of malignant and benign tumors. A germline mutation of this gene is the basis of familial inheritance of VHL syndrome. The protein encoded by this gene is a component of the protein complex that includes elongin B, elongin C, and cullin-2, and possesses ubiquitin ligase E3 activity. This protein is involved in the ubiquitination and degradation of hypoxia-inducible-factor (HIF), which is a transcription factor that plays a central role in the regulation of gene expression by oxygen. RNA polymerase II subunit POLR2G/RPB7 is also reported to be a target of this protein. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000157014 | TATDN2 | TatD DNase domain containing 2 | 9797 | NA |
| NA | ENSG00000157017 | GHRL | ghrelin/obestatin prepropeptide | 51738 | This gene encodes the ghrelin-obestatin preproprotein that is cleaved to yield two peptides, ghrelin and obestatin. Ghrelin is a powerful appetite stimulant and plays an important role in energy homeostasis. Its secretion is initiated when the stomach is empty, whereupon it binds to the growth hormone secretagogue receptor in the hypothalamus which results in the secretion of growth hormone (somatotropin). Ghrelin is thought to regulate multiple activities, including hunger, reward perception via the mesolimbic pathway, gastric acid secretion, gastrointestinal motility, and pancreatic glucose-stimulated insulin secretion. It was initially proposed that obestatin plays an opposing role to ghrelin by promoting satiety and thus decreasing food intake, but this action is still debated. Recent reports suggest multiple metabolic roles for obestatin, including regulating adipocyte function and glucose metabolism. Alternative splicing results in multiple transcript variants. In addition, antisense transcripts for this gene have been identified and may potentially regulate ghrelin-obestatin preproprotein expression. |
| NA | ENSG00000157020 | SEC13 | SEC13 homolog, nuclear pore and COPII coat complex component | 6396 | The protein encoded by this gene belongs to the SEC13 family of WD-repeat proteins. It is a constituent of the endoplasmic reticulum and the nuclear pore complex. It has similarity to the yeast SEC13 protein, which is required for vesicle biogenesis from endoplasmic reticulum during the transport of proteins. Multiple alternatively spliced transcript variants have been found. |
| NA | ENSG00000132164 | SLC6A11 | solute carrier family 6 member 11 | 6538 | The protein encoded by this gene is a sodium-dependent transporter that uptakes gamma-aminobutyric acid (GABA), an inhibitory neurotransmitter, which ends the GABA neurotransmission. Defects in this gene may result in epilepsy, behavioral problems, or intellectual problems. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197548 | ATG7 | autophagy related 7 | 10533 | This gene encodes an E1-like activating enzyme that is essential for autophagy and cytoplasmic to vacuole transport. The encoded protein is also thought to modulate p53-dependent cell cycle pathways during prolonged metabolic stress. It has been associated with multiple functions, including axon membrane trafficking, axonal homeostasis, mitophagy, adipose differentiation, and hematopoietic stem cell maintenance. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000144560 | VGLL4 | vestigial like family member 4 | 9686 | NA |
| NA | ENSG00000144559 | TAMM41 | TAM41 mitochondrial translocator assembly and maintenance homolog | 132001 | NA |
| NA | ENSG00000157150 | TIMP4 | TIMP metallopeptidase inhibitor 4 | 7079 | This gene belongs to the TIMP gene family. The proteins encoded by this gene family are inhibitors of the matrix metalloproteinases, a group of peptidases involved in degradation of the extracellular matrix. The secreted, netrin domain-containing protein encoded by this gene is involved in regulation of platelet aggregation and recruitment and may play role in hormonal regulation and endometrial tissue remodeling. |
| NA | ENSG00000154743 | TSEN2 | tRNA splicing endonuclease subunit 2 | 80746 | This gene encodes one of the subunits of the tRNA splicing endonuclease. This endonuclease catalyzes the first step in RNA splicing which is the removal of introns. Mutations in this gene have been associated with pontocerebellar hypoplasia type 2. A pseudogene has been identified on chromosome 4. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000075975 | MKRN2 | makorin ring finger protein 2 | 23609 | This gene encodes a probable E3 ubiquitin ligase containing several zinc finger domains, that is a member of the makorin RING zinc-finger protein family. This gene overlaps the v-raf-1 murine leukemia viral oncogene homolog 1 (RAF1) gene in an antisense orientation and may have a co-regulatory function with RAF1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000132155 | RAF1 | Raf-1 proto-oncogene, serine/threonine kinase | 5894 | This gene is the cellular homolog of viral raf gene (v-raf). The encoded protein is a MAP kinase kinase kinase (MAP3K), which functions downstream of the Ras family of membrane associated GTPases to which it binds directly. Once activated, the cellular RAF1 protein can phosphorylate to activate the dual specificity protein kinases MEK1 and MEK2, which in turn phosphorylate to activate the serine/threonine specific protein kinases, ERK1 and ERK2. Activated ERKs are pleiotropic effectors of cell physiology and play an important role in the control of gene expression involved in the cell division cycle, apoptosis, cell differentiation and cell migration. Mutations in this gene are associated with Noonan syndrome 5 and LEOPARD syndrome 2. |
| NA | ENSG00000144712 | CAND2 | cullin-associated and neddylation-dissociated 2 (putative) | 23066 | NA |
| NA | ENSG00000144713 | RPL32 | ribosomal protein L32 | 6161 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L32E family of ribosomal proteins. It is located in the cytoplasm. Although some studies have mapped this gene to 3q13.3-q21, it is believed to map to 3p25-p24. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternatively spliced transcript variants encoding the same protein have been observed for this gene. |
| NA | ENSG00000144711 | IQSEC1 | IQ motif and Sec7 domain 1 | 9922 | NA |
| NA | ENSG00000132182 | NUP210 | nucleoporin 210kDa | 23225 | The nuclear pore complex is a massive structure that extends across the nuclear envelope, forming a gateway that regulates the flow of macromolecules between the nucleus and the cytoplasm. Nucleoporins are the main components of the nuclear pore complex in eukaryotic cells. The protein encoded by this gene is a membrane-spanning glycoprotein that is a major component of the nuclear pore complex. Multiple pseudogenes related to this gene are located on chromosome 3. |
| NA | ENSG00000163517 | HDAC11 | histone deacetylase 11 | 79885 | This gene encodes a class IV histone deacetylase. The encoded protein is localized to the nucleus and may be involved in regulating the expression of interleukin 10. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000163520 | FBLN2 | fibulin 2 | 2199 | This gene encodes an extracellular matrix protein, which belongs to the fibulin family. This protein binds various extracellular ligands and calcium. It may play a role during organ development, in particular, during the differentiation of heart, skeletal and neuronal structures. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000170876 | TMEM43 | transmembrane protein 43 | 79188 | This gene belongs to the TMEM43 family. Defects in this gene are the cause of familial arrhythmogenic right ventricular dysplasia type 5 (ARVD5), also known as arrhythmogenic right ventricular cardiomyopathy type 5 (ARVC5). Arrhythmogenic right ventricular dysplasia is an inherited disorder, often involving both ventricles, and is characterized by ventricular tachycardia, heart failure, sudden cardiac death, and fibrofatty replacement of cardiomyocytes. This gene contains a response element for PPAR gamma (an adipogenic transcription factor), which may explain the fibrofatty replacement of the myocardium, a characteristic pathological finding in ARVC. |
| NA | ENSG00000154767 | XPC | xeroderma pigmentosum, complementation group C | 7508 | This gene encodes a component of the nucleotide excision repair (NER) pathway. There are multiple components involved in the NER pathway, including Xeroderma pigmentosum (XP) A-G and V, Cockayne syndrome (CS) A and B, and trichothiodystrophy (TTD) group A, etc. This component, XPC, plays an important role in the early steps of global genome NER, especially in damage recognition, open complex formation, and repair protein complex formation. Mutations in this gene or some other NER components result in Xeroderma pigmentosum, a rare autosomal recessive disorder characterized by increased sensitivity to sunlight with the development of carcinomas at an early age. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000170860 | LSM3 | LSM3 homolog, U6 small nuclear RNA and mRNA degradation associated | 27258 | Sm-like proteins were identified in a variety of organisms based on sequence homology with the Sm protein family (see SNRPD2; MIM 601061). Sm-like proteins contain the Sm sequence motif, which consists of 2 regions separated by a linker of variable length that folds as a loop. The Sm-like proteins are thought to form a stable heteromer present in tri-snRNP particles, which are important for pre-mRNA splicing. |
| NA | ENSG00000131389 | SLC6A6 | solute carrier family 6 member 6 | 6533 | This gene encodes a multi-pass membrane protein that is a member of a family of sodium and chloride-ion dependent transporters. The encoded protein transports taurine and beta-alanine. There is a pseudogene for this gene on chromosome 21. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000154781 | CCDC174 | coiled-coil domain containing 174 | 51244 | The protein encoded by this gene is found in the nucleus, where it interacts with eukaryotic translation initiation factor 4A, isoform 3. The encoded protein appears to be a part of the exon junction complex, which is involved in RNA processing, translation, and nonsense-mediated mRNA decay. A mutation in this gene has been associated with infantile hypotonia with psychomotor retardation. |
| NA | ENSG00000154783 | FGD5 | FYVE, RhoGEF and PH domain containing 5 | 152273 | NA |
| NA | ENSG00000177463 | NR2C2 | nuclear receptor subfamily 2 group C member 2 | 7182 | This gene encodes a protein that belongs to the nuclear hormone receptor family. Members of this family act as ligand-activated transcription factors and function in many biological processes such as development, cellular differentiation and homeostasis. The activated receptor/ligand complex is translocated to the nucleus where it binds to hormone response elements of target genes. The protein encoded by this gene plays a role in protecting cells from oxidative stress and damage induced by ionizing radiation. The lack of a similar gene in mouse results in growth retardation, severe spinal curvature, subfertility, premature aging, and prostatic intraepithelial neoplasia (PIN) development. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000131368 | MRPS25 | mitochondrial ribosomal protein S25 | 64432 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein. A pseudogene corresponding to this gene is found on chromosome 4. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000131381 | RBSN | rabenosyn, RAB effector | 64145 | This gene encodes a protein that belongs to the FYVE zinc finger family of proteins. The encoded protein interacts with Ras-related proteins that regulate membrane trafficking. A missense mutation in this gene is associated with a defect in the early endocytic pathway. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000131375 | CAPN7 | calpain 7 | 23473 | Calpains are ubiquitous, well-conserved family of calcium-dependent, cysteine proteases. The calpain proteins are heterodimers consisting of an invariant small subunit and variable large subunits. The large subunit possesses a cysteine protease domain, and both subunits possess calcium-binding domains. Calpains have been implicated in neurodegenerative processes, as their activation can be triggered by calcium influx and oxidative stress. The function of the protein encoded by this gene is not known. An orthologue has been found in mouse but it seems to diverge from other family members. The mouse orthologue is thought to be calcium independent with protease activity. |
| NA | ENSG00000131370 | SH3BP5 | SH3-domain binding protein 5 | 9467 | NA |
| NA | ENSG00000206562 | METTL6 | methyltransferase like 6 | 131965 | NA |
| NA | ENSG00000144597 | EAF1 | ELL associated factor 1 | 85403 | NA |
| NA | ENSG00000131373 | HACL1 | 2-hydroxyacyl-CoA lyase 1 | 26061 | NA |
| NA | ENSG00000169814 | BTD | biotinidase | 686 | The protein encoded by this gene functions to recycle protein-bound biotin by cleaving biocytin (biotin-epsilon-lysine), a normal product of carboxylase degradation, resulting in regeneration of free biotin. The encoded protein has also been shown to have biotinyl transferase activity. Mutations in this gene are associated with biotinidase deficiency. Multiple transcript variants encoding different isoforms have been described. |
| NA | ENSG00000206560 | ANKRD28 | ankyrin repeat domain 28 | 23243 | NA |
| NA | ENSG00000154813 | DPH3 | diphthamide biosynthesis 3 | 285381 | This gene encodes a CSL zinc finger-containing protein that is required for dipthamide biosynthesis. The encoded protein is necessary for the initial step in the modification of a histidine residue in elongation factor-2 to diphthamide. This modified residue is a target for ADP ribosylation by the bacterial toxins diphtheria toxin and Pseudomonas exotoxin A. Alternative splicing results in multiple transcript variants that encode the same isoform. |
| NA | ENSG00000154814 | OXNAD1 | oxidoreductase NAD-binding domain containing 1 | 92106 | NA |
| NA | ENSG00000131378 | RFTN1 | raftlin, lipid raft linker 1 | 23180 | NA |
| NA | ENSG00000154822 | PLCL2 | phospholipase C like 2 | 23228 | NA |
| NA | ENSG00000131374 | TBC1D5 | TBC1 domain family member 5 | 9779 | NA |
| NA | ENSG00000182568 | SATB1 | SATB homeobox 1 | 6304 | This gene encodes a matrix protein which binds nuclear matrix and scaffold-associating DNAs through a unique nuclear architecture. The protein recruits chromatin-remodeling factors in order to regulate chromatin structure and gene expression. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183960 | KCNH8 | potassium voltage-gated channel subfamily H member 8 | 131096 | Voltage-gated potassium (Kv) channels represent the most complex class of voltage-gated ion channels from both functional and structural standpoints. Their diverse functions include regulating neurotransmitter release, heart rate, insulin secretion, neuronal excitability, epithelial electrolyte transport, smooth muscle contraction, and cell volume. This gene encodes a member of the potassium channel, voltage-gated, subfamily H. This member is a pore-forming (alpha) subunit. |
| NA | ENSG00000144566 | RAB5A | RAB5A, member RAS oncogene family | 5868 | NA |
| NA | ENSG00000151789 | ZNF385D | zinc finger protein 385D | 79750 | NA |
| NA | ENSG00000170142 | UBE2E1 | ubiquitin conjugating enzyme E2 E1 | 7324 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. Three alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000197885 | NKIRAS1 | NFKB inhibitor interacting Ras-like 1 | 28512 | NA |
| NA | ENSG00000174748 | RPL15 | ribosomal protein L15 | 6138 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L15E family of ribosomal proteins. It is located in the cytoplasm. This gene shares sequence similarity with the yeast ribosomal protein YL10 gene. Although this gene has been referred to as RPL10, its official symbol is RPL15. This gene has been shown to be overexpressed in some esophageal tumors compared to normal matched tissues. Alternate splicing results in multiple transcript variants. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000174738 | NR1D2 | nuclear receptor subfamily 1 group D member 2 | 9975 | This gene encodes a member of the nuclear hormone receptor family, specifically the NR1 subfamily of receptors. The encoded protein functions as a transcriptional repressor and may play a role in circadian rhythms and carbohydrate and lipid metabolism. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000151093 | OXSM | 3-oxoacyl-ACP synthase, mitochondrial | 54995 | This gene encodes a beta-ketoacyl synthetase. The encoded enzyme is required for elongation of fatty acid chains in the mitochondria. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000033867 | SLC4A7 | solute carrier family 4 member 7 | 9497 | This locus encodes a sodium bicarbonate cotransporter. The encoded transmembrane protein appears to transport sodium and bicarbonate ions in a 1:1 ratio, and is thus considered an electroneutral cotransporter. The encoded protein likely plays a critical role in regulation of intracellular pH involved in visual and auditory sensory transmission. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000163512 | AZI2 | 5-azacytidine induced 2 | 64343 | AZI2, or NAP1, contributes to the activation of NFKB (see MIM 164011)-dependent gene expression by activating IKK-related kinases, such as NAK (TBK1; MIM 604834) (Fujita et al., 2003 [PubMed 14560022]). |
| NA | ENSG00000144642 | RBMS3 | RNA binding motif, single stranded interacting protein 3 | 27303 | This gene encodes an RNA-binding protein that belongs to the c-myc gene single-strand binding protein family. These proteins are characterized by the presence of two sets of ribonucleoprotein consensus sequence (RNP-CS) that contain conserved motifs, RNP1 and RNP2, originally described in RNA binding proteins, and required for DNA binding. These proteins have been implicated in such diverse functions as DNA replication, gene transcription, cell cycle progression and apoptosis. The encoded protein was isolated by virtue of its binding to an upstream element of the alpha2(I) collagen promoter. The observation that this protein localizes mostly in the cytoplasm suggests that it may be involved in a cytoplasmic function such as controlling RNA metabolism, rather than transcription. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163513 | TGFBR2 | transforming growth factor beta receptor II | 7048 | This gene encodes a member of the Ser/Thr protein kinase family and the TGFB receptor subfamily. The encoded protein is a transmembrane protein that has a protein kinase domain, forms a heterodimeric complex with another receptor protein, and binds TGF-beta. This receptor/ligand complex phosphorylates proteins, which then enter the nucleus and regulate the transcription of a subset of genes related to cell proliferation. Mutations in this gene have been associated with Marfan Syndrome, Loeys-Deitz Aortic Aneurysm Syndrome, and the development of various types of tumors. Alternatively spliced transcript variants encoding different isoforms have been characterized. |
| NA | ENSG00000163527 | STT3B | STT3B, catalytic subunit of the oligosaccharyltransferase complex | 201595 | The protein encoded by this gene is a catalytic subunit of a protein complex that transfers oligosaccharides onto asparagine residues. Defects in this gene are a cause of congenital disorder of glycosylation Ix (CDG1X). |
| NA | ENSG00000144645 | OSBPL10 | oxysterol binding protein like 10 | 114884 | This gene encodes a member of the oxysterol-binding protein (OSBP) family, a group of intracellular lipid receptors. Like most members, the encoded protein contains an N-terminal pleckstrin homology domain and a highly conserved C-terminal OSBP-like sterol-binding domain. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197385 | ZNF860 | zinc finger protein 860 | 344787 | NA |
| NA | ENSG00000152642 | GPD1L | glycerol-3-phosphate dehydrogenase 1-like | 23171 | The protein encoded by this gene catalyzes the conversion of sn-glycerol 3-phosphate to glycerone phosphate. The encoded protein is found in the cytoplasm, associated with the plasma membrane, where it binds the sodium channel, voltage-gated, type V, alpha subunit (SCN5A). Defects in this gene are a cause of Brugada syndrome type 2 (BRS2) as well as sudden infant death syndrome (SIDS). |
| NA | ENSG00000170293 | CMTM8 | CKLF like MARVEL transmembrane domain containing 8 | 152189 | This gene belongs to the chemokine-like factor gene superfamily, a novel family that is similar to the chemokine and the transmembrane 4 superfamilies. This gene is one of several chemokine-like factor genes located in a cluster on chromosome 3. This gene acts as a tumor suppressor, and plays a role in regulating the migration of tumor cells. The encoded protein is thought to function as a a negative regulator of epidermal growth factor-induced signaling. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000153551 | CMTM7 | CKLF like MARVEL transmembrane domain containing 7 | 112616 | This gene belongs to the chemokine-like factor gene superfamily, a novel family that is similar to the chemokine and transmembrane 4 superfamilies. This gene is one of several chemokine-like factor genes located in a cluster on chromosome 3. This gene acts as a tumor suppressor that regulates G1/S transition in the cell cycle, and epidermal growth factor receptor/protein kinase B signaling during tumor pathogenesis. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000091317 | CMTM6 | CKLF like MARVEL transmembrane domain containing 6 | 54918 | This gene belongs to the chemokine-like factor gene superfamily, a novel family that is similar to the chemokine and transmembrane 4 superfamilies. This gene is one of several chemokine-like factor genes located in a cluster on chromosome 3. This gene is widely expressed in many tissues, but the exact function of the encoded protein is unknown. |
| NA | ENSG00000144635 | DYNC1LI1 | dynein cytoplasmic 1 light intermediate chain 1 | 51143 | NA |
| NA | ENSG00000182973 | CNOT10 | CCR4-NOT transcription complex subunit 10 | 25904 | NA |
| NA | ENSG00000206557 | TRIM71 | tripartite motif containing 71, E3 ubiquitin protein ligase | 131405 | The protein encoded by this gene is an E3 ubiquitin-protein ligase that binds with miRNAs and maintains the growth and upkeep of embryonic stem cells. This gene also is involved in the G1-S phase transition of the cell cycle. |
| NA | ENSG00000170266 | GLB1 | galactosidase beta 1 | 2720 | This gene encodes a member of the glycosyl hydrolase 35 family of proteins. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed to generate the mature lysosomal enzyme. This enzyme catalyzes the hydrolysis of a terminal beta-linked galactose residue from ganglioside substrates and other glycoconjugates. Mutations in this gene may result in GM1-gangliosidosis and Morquio B syndrome. |
| NA | ENSG00000170275 | CRTAP | cartilage associated protein | 10491 | The protein encoded by this gene is similar to the chicken and mouse CRTAP genes. The encoded protein is a scaffolding protein that may influence the activity of at least one member of the cytohesin/ARNO family in response to specific cellular stimuli. Defects in this gene are associated with osteogenesis imperfecta, a connective tissue disorder characterized by bone fragility and low bone mass. |
| NA | ENSG00000173705 | SUSD5 | sushi domain containing 5 | 26032 | NA |
| NA | ENSG00000153558 | FBXL2 | F-box and leucine-rich repeat protein 2 | 25827 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbls class and, in addition to an F-box, contains 12 tandem leucine-rich repeats. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000153560 | UBP1 | upstream binding protein 1 (LBP-1a) | 7342 | NA |
| NA | ENSG00000163539 | CLASP2 | cytoplasmic linker associated protein 2 | 23122 | NA |
| NA | ENSG00000170248 | PDCD6IP | programmed cell death 6 interacting protein | 10015 | This gene encodes a protein that functions within the ESCRT pathway in the abscission stage of cytokinesis, in intralumenal endosomal vesicle formation, and in enveloped virus budding. Studies using mouse cells have shown that overexpression of this protein can block apoptosis. In addition, the product of this gene binds to the product of the PDCD6 gene, a protein required for apoptosis, in a calcium-dependent manner. This gene product also binds to endophilins, proteins that regulate membrane shape during endocytosis. Overexpression of this gene product and endophilins results in cytoplasmic vacuolization, which may be partly responsible for the protection against cell death. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. Related pseudogenes have been identified on chromosome 15. |
| NA | ENSG00000144681 | STAC | SH3 and cysteine rich domain | 6769 | NA |
| NA | ENSG00000163673 | DCLK3 | doublecortin like kinase 3 | 85443 | NA |
| NA | ENSG00000168016 | TRANK1 | tetratricopeptide repeat and ankyrin repeat containing 1 | 9881 | NA |
| NA | ENSG00000178567 | EPM2AIP1 | EPM2A (laforin) interacting protein 1 | 9852 | The EPM2A gene, which encodes laforin, is mutated in an autosomal recessive form of adolescent progressive myoclonus epilepsy. The protein encoded by this gene binds to laforin, but its function is not known. This gene is intronless. |
| NA | ENSG00000076242 | MLH1 | mutL homolog 1 | 4292 | This gene was identified as a locus frequently mutated in hereditary nonpolyposis colon cancer (HNPCC). It is a human homolog of the E. coli DNA mismatch repair gene mutL, consistent with the characteristic alterations in microsatellite sequences (RER+phenotype) found in HNPCC. Alternative splicing results in multiple transcript variants encoding distinct isoforms. Additional transcript variants have been described, but their full-length natures have not been determined. |
| NA | ENSG00000093167 | LRRFIP2 | leucine rich repeat (in FLII) interacting protein 2 | 9209 | NA |
| NA | ENSG00000144674 | GOLGA4 | golgin A4 | 2803 | The Golgi apparatus, which participates in glycosylation and transport of proteins and lipids in the secretory pathway, consists of a series of stacked cisternae (flattened membrane sacs). Interactions between the Golgi and microtubules are thought to be important for the reorganization of the Golgi after it fragments during mitosis. This gene encodes one of the golgins, a family of proteins localized to the Golgi. This protein has been postulated to play a role in Rab6-regulated membrane-tethering events in the Golgi apparatus. Alternatively spliced transcript variants encoding different isoforms have been identified in this gene. |
| NA | ENSG00000144677 | CTDSPL | CTD small phosphatase like | 10217 | NA |
| NA | ENSG00000136059 | VILL | villin-like | 50853 | The protein encoded by this gene belongs to the villin/gelsolin family. It contains 6 gelsolin-like repeats and a headpiece domain. It may play a role in actin-bundling. |
| NA | ENSG00000060971 | ACAA1 | acetyl-CoA acyltransferase 1 | 30 | This gene encodes an enzyme operative in the beta-oxidation system of the peroxisomes. Deficiency of this enzyme leads to pseudo-Zellweger syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000172936 | MYD88 | myeloid differentiation primary response 88 | 4615 | This gene encodes a cytosolic adapter protein that plays a central role in the innate and adaptive immune response. This protein functions as an essential signal transducer in the interleukin-1 and Toll-like receptor signaling pathways. These pathways regulate that activation of numerous proinflammatory genes. The encoded protein consists of an N-terminal death domain and a C-terminal Toll-interleukin1 receptor domain. Patients with defects in this gene have an increased susceptibility to pyogenic bacterial infections. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000172939 | OXSR1 | oxidative stress responsive 1 | 9943 | The product of this gene belongs to the Ser/Thr protein kinase family of proteins. It regulates downstream kinases in response to environmental stress, and may play a role in regulating the actin cytoskeleton. |
| NA | ENSG00000093217 | XYLB | xylulokinase homolog (H. influenzae) | 9942 | The protein encoded by this gene shares 22% sequence identity with Hemophilus influenzae xylulokinase, and even higher identity to other gene products in C.elegans (45%) and yeast (31-35%), which are thought to belong to a family of enzymes that include fucokinase, gluconokinase, glycerokinase and xylulokinase. These proteins play important roles in energy metabolism. |
| NA | ENSG00000157036 | EXOG | endo/exonuclease (5’-3’), endonuclease G-like | 9941 | This gene encodes an endo/exonuclease with 5’-3’ exonuclease activity. The encoded enzyme catalyzes the hydrolysis of ester linkages at the 5’ end of a nucleic acid chain. This enzyme is localized to the mitochondria and may play a role in programmed cell death. Alternatively spliced transcript variants have been described. A pseudogene exists on chromosome 18. |
| NA | ENSG00000183873 | SCN5A | sodium voltage-gated channel alpha subunit 5 | 6331 | The protein encoded by this gene is an integral membrane protein and tetrodotoxin-resistant voltage-gated sodium channel subunit. This protein is found primarily in cardiac muscle and is responsible for the initial upstroke of the action potential in an electrocardiogram. Defects in this gene are a cause of long QT syndrome type 3 (LQT3), an autosomal dominant cardiac disease. Alternative splicing results in several transcript variants encoding different isoforms. |
| NA | ENSG00000114745 | GORASP1 | golgi reassembly stacking protein 1 | 64689 | The Golgi complex plays a key role in the sorting and modification of proteins exported from the endoplasmic reticulum. The protein encoded by this gene is a membrane protein involved in establishing the stacked structure of the Golgi apparatus. It is a caspase-3 substrate, and cleavage of this encoded protein contributes to Golgi fragmentation in apoptosis. This encoded protein can form a complex with the Golgi matrix protein GOLGA2, and this complex binds to the vesicle docking protein p115. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000144655 | CSRNP1 | cysteine and serine rich nuclear protein 1 | 64651 | This gene encodes a protein that localizes to the nucleus and expression of this gene is induced in response to elevated levels of axin. The Wnt signalling pathway, which is negatively regulated by axin, is important in axis formation in early development and impaired regulation of this signalling pathway is often involved in tumors. A decreased level of expression of this gene in tumors compared to the level of expression in their corresponding normal tissues suggests that this gene product has a tumor suppressor function. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000144659 | SLC25A38 | solute carrier family 25 member 38 | 54977 | This gene is a member of the mitochondrial carrier family. The encoded protein is required during erythropoiesis and is important for the biosynthesis of heme. Mutations in this gene are the cause of autosomal congenital sideroblastic anemia. |
| NA | ENSG00000168028 | RPSA | ribosomal protein SA | 3921 | Laminins, a family of extracellular matrix glycoproteins, are the major noncollagenous constituent of basement membranes. They have been implicated in a wide variety of biological processes including cell adhesion, differentiation, migration, signaling, neurite outgrowth and metastasis. Many of the effects of laminin are mediated through interactions with cell surface receptors. These receptors include members of the integrin family, as well as non-integrin laminin-binding proteins. This gene encodes a high-affinity, non-integrin family, laminin receptor 1. This receptor has been variously called 67 kD laminin receptor, 37 kD laminin receptor precursor (37LRP) and p40 ribosome-associated protein. The amino acid sequence of laminin receptor 1 is highly conserved through evolution, suggesting a key biological function. It has been observed that the level of the laminin receptor transcript is higher in colon carcinoma tissue and lung cancer cell line than their normal counterparts. Also, there is a correlation between the upregulation of this polypeptide in cancer cells and their invasive and metastatic phenotype. Multiple copies of this gene exist, however, most of them are pseudogenes thought to have arisen from retropositional events. Two alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000114784 | EIF1B | eukaryotic translation initiation factor 1B | 10289 | NA |
| NA | ENSG00000188846 | RPL14 | ribosomal protein L14 | 9045 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L14E family of ribosomal proteins. It contains a basic region-leucine zipper (bZIP)-like domain. The protein is located in the cytoplasm. This gene contains a trinucleotide (GCT) repeat tract whose length is highly polymorphic; these triplet repeats result in a stretch of alanine residues in the encoded protein. Transcript variants utilizing alternative polyA signals and alternative 5’-terminal exons exist but all encode the same protein. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000177842 | ZNF620 | zinc finger protein 620 | 253639 | NA |
| NA | ENSG00000172888 | ZNF621 | zinc finger protein 621 | 285268 | NA |
| NA | ENSG00000168036 | CTNNB1 | catenin beta 1 | 1499 | The protein encoded by this gene is part of a complex of proteins that constitute adherens junctions (AJs). AJs are necessary for the creation and maintenance of epithelial cell layers by regulating cell growth and adhesion between cells. The encoded protein also anchors the actin cytoskeleton and may be responsible for transmitting the contact inhibition signal that causes cells to stop dividing once the epithelial sheet is complete. Finally, this protein binds to the product of the APC gene, which is mutated in adenomatous polyposis of the colon. Mutations in this gene are a cause of colorectal cancer (CRC), pilomatrixoma (PTR), medulloblastoma (MDB), and ovarian cancer. Three transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000168038 | ULK4 | unc-51 like kinase 4 | 54986 | NA |
| NA | ENSG00000182606 | TRAK1 | trafficking protein, kinesin binding 1 | 22906 | NA |
| NA | ENSG00000187094 | CCK | cholecystokinin | 885 | This gene encodes a member of the gastrin/cholecystokinin family of proteins. The encoded preproprotein is proteolytically processed to generate multiple protein products, including the peptide hormones cholecystokinin-8, -12, -33, and others. The encoded peptides have been shown to regulate gastric acid secretion and food intake. A sulfated form of cholecystokinin-8 may modulate neuronal activity in the brain. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000008324 | SS18L2 | synovial sarcoma translocation gene on chromosome 18-like 2 | 51188 | Synovial sarcomas occur most frequently in the extremities around large joints. More than 90% of cases have a recurrent and specific chromosomal translocation, t(X;18)(p11.2;q11.2), in which the 5-prime end of the SS18 gene (MIM 600192) is fused in-frame to the 3-prime end of the SSX1 (MIM 312820), SSX2 (MIM 300192), or SSX4 (MIM 300326) gene. The SS18L2 gene is homologous to SS18. |
| NA | ENSG00000114857 | NKTR | natural killer cell triggering receptor | 4820 | This gene encodes a membrane-anchored protein with a hydrophobic amino terminal domain and a cyclophilin-like PPIase domain. It is present on the surface of natural killer cells and facilitates their binding to targets. Its expression is regulated by IL2 activation of the cells. |
| NA | ENSG00000114853 | ZBTB47 | zinc finger and BTB domain containing 47 | 92999 | NA |
| NA | ENSG00000181061 | HIGD1A | HIG1 hypoxia inducible domain family member 1A | 25994 | NA |
| NA | ENSG00000144649 | FAM198A | family with sequence similarity 198 member A | 729085 | NA |
| NA | ENSG00000144647 | POMGNT2 | protein O-linked mannose N-acetylglucosaminyltransferase 2 (beta 1,4-) | 84892 | This gene encodes a protein with glycosyltransferase activity although its function is not currently known. |
| NA | ENSG00000163788 | SNRK | SNF related kinase | 54861 | SNRK is a member of the sucrose nonfermenting (SNF)-related kinase family of serine/threonine kinases (Kertesz et al., 2002 [PubMed 12234663]). |
| NA | ENSG00000160746 | ANO10 | anoctamin 10 | 55129 | The transmembrane protein encoded by this gene is a member of a family of calcium-activated chloride channels. Defects in this gene may be a cause of autosomal recessive spinocerebellar ataxia-10. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000011198 | ABHD5 | abhydrolase domain containing 5 | 51099 | The protein encoded by this gene belongs to a large family of proteins defined by an alpha/beta hydrolase fold, and contains three sequence motifs that correspond to a catalytic triad found in the esterase/lipase/thioesterase subfamily. It differs from other members of this subfamily in that its putative catalytic triad contains an asparagine instead of the serine residue. Mutations in this gene have been associated with Chanarin-Dorfman syndrome, a triglyceride storage disease with impaired long-chain fatty acid oxidation. |
| NA | ENSG00000179152 | TCAIM | T-cell activation inhibitor, mitochondrial | 285343 | NA |
| NA | ENSG00000185219 | ZNF445 | zinc finger protein 445 | 353274 | NA |
| NA | ENSG00000178917 | ZNF852 | zinc finger protein 852 | 285346 | NA |
| NA | ENSG00000196345 | ZKSCAN7 | zinc finger with KRAB and SCAN domains 7 | 55888 | NA |
| NA | ENSG00000186448 | ZNF197 | zinc finger protein 197 | 10168 | This gene product belongs to the zinc finger protein superfamily, members of which are regulatory proteins characterized by nucleic acid-binding zinc finger domains. The encoded protein contains 20 tandemly arrayed C2H2-type zinc fingers, a Kruppel-associated box (KRAB) domain, and a SCAN box. This transcript turns over rapidly and contains 3’ UTR AUUUA motifs, which are often a hallmark of rapid turnover. It is overexpressed in some thyroid papillary carcinomas. This gene is located in a cluster of zinc finger genes at 3p21. Two alternatively spliced transcripts encoding different isoforms have been described. |
| NA | ENSG00000169981 | ZNF35 | zinc finger protein 35 | 7584 | NA |
| NA | ENSG00000196653 | ZNF502 | zinc finger protein 502 | 91392 | NA |
| NA | ENSG00000186446 | ZNF501 | zinc finger protein 501 | 115560 | NA |
| NA | ENSG00000163807 | KIAA1143 | KIAA1143 | 57456 | NA |
| NA | ENSG00000163808 | KIF15 | kinesin family member 15 | 56992 | NA |
| NA | ENSG00000169964 | TMEM42 | transmembrane protein 42 | 131616 | NA |
| NA | ENSG00000163812 | ZDHHC3 | zinc finger DHHC-type containing 3 | 51304 | NA |
| NA | ENSG00000075914 | EXOSC7 | exosome component 7 | 23016 | NA |
| NA | ENSG00000163814 | CDCP1 | CUB domain containing protein 1 | 64866 | This gene encodes a transmembrane protein which contains three extracellular CUB domains and acts as a substrate for Src family kinases. The protein plays a role in the tyrosine phosphorylation-dependent regulation of cellular events that are involved in tumor invasion and metastasis. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000011376 | LARS2 | leucyl-tRNA synthetase 2, mitochondrial | 23395 | This gene encodes a class 1 aminoacyl-tRNA synthetase, mitochondrial leucyl-tRNA synthetase. Each of the twenty aminoacyl-tRNA synthetases catalyzes the aminoacylation of a specific tRNA or tRNA isoaccepting family with the cognate amino acid. |
| NA | ENSG00000144791 | LIMD1 | LIM domains containing 1 | 8994 | NA |
| NA | ENSG00000163818 | LZTFL1 | leucine zipper transcription factor like 1 | 54585 | This gene encodes a ubiquitously expressed protein that localizes to the cytoplasm. This protein interacts with Bardet-Biedl Syndrome (BBS) proteins and, through its interaction with BBS protein complexes, regulates protein trafficking to the ciliary membrane. Nonsense mutations in this gene cause a form of Bardet-Biedl Syndrome; a ciliopathy characterized in part by polydactyly, obesity, cognitive impairment, hypogonadism, and kidney failure. This gene may also function as a tumor suppressor; possibly by interacting with E-cadherin and the actin cytoskeleton and thereby regulating the transition of epithelial cells to mesenchymal cells. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000163820 | FYCO1 | FYVE and coiled-coil domain containing 1 | 79443 | This gene encodes a protein that contains a RUN domain, FYVE-type zinc finger domain and Golgi dynamics (GOLD) domain. The encoded protein plays a role in microtubule plus end-directed transport of autophagic vesicles through interactions with the small GTPase Rab7, phosphatidylinositol-3-phosphate (PI3P) and the autophagosome marker LC3. Mutations in this gene are a cause of autosomal recessive congenital cataract-2 (CATC2). |
| NA | ENSG00000163827 | LRRC2 | leucine rich repeat containing 2 | 79442 | This gene encodes a member of the leucine-rich repeat-containing family of proteins, which function in diverse biological pathways. This family member may possibly be a nuclear protein. Similarity to the RAS suppressor protein, as well as expression down-regulation observed in tumor cells, suggests that it may function as a tumor suppressor. The gene is located in the chromosome 3 common eliminated region 1 (C3CER1), a 1.4 Mb region that is commonly deleted in diverse tumors. A related pseudogene has been identified on chromosome 2. |
| NA | ENSG00000241186 | TDGF1 | teratocarcinoma-derived growth factor 1 | 6997 | This gene encodes an epidermal growth factor-related protein that contains a cripto, FRL-1, and cryptic domain. The encoded protein is an extracellular, membrane-bound signaling protein that plays an essential role in embryonic development and tumor growth. Mutations in this gene are associated with forebrain defects. Pseudogenes of this gene are found on chromosomes 2, 3, 6, 8, 19 and X. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000188086 | PRSS45 | protease, serine 45 | 377047 | NA |
| NA | ENSG00000160799 | CCDC12 | coiled-coil domain containing 12 | 151903 | NA |
| NA | ENSG00000160796 | NBEAL2 | neurobeachin like 2 | 23218 | The protein encoded by this gene contains a beige and Chediak-Higashi (BEACH) domain and multiple WD40 domains, and may play a role in megakaryocyte alpha-granule biogenesis. Mutations in this gene are a cause of gray platelet syndrome. |
| NA | ENSG00000181555 | SETD2 | SET domain containing 2 | 29072 | Huntington’s disease (HD), a neurodegenerative disorder characterized by loss of striatal neurons, is caused by an expansion of a polyglutamine tract in the HD protein huntingtin. This gene encodes a protein belonging to a class of huntingtin interacting proteins characterized by WW motifs. This protein is a histone methyltransferase that is specific for lysine-36 of histone H3, and methylation of this residue is associated with active chromatin. This protein also contains a novel transcriptional activation domain and has been found associated with hyperphosphorylated RNA polymerase II. |
| NA | ENSG00000088727 | KIF9 | kinesin family member 9 | 64147 | NA |
| NA | ENSG00000114648 | KLHL18 | kelch like family member 18 | 23276 | NA |
| NA | ENSG00000076201 | PTPN23 | protein tyrosine phosphatase, non-receptor type 23 | 25930 | NA |
| NA | ENSG00000114650 | SCAP | SREBF chaperone | 22937 | This gene encodes a protein with a sterol sensing domain (SSD) and seven WD domains. In the presence of cholesterol, this protein binds to sterol regulatory element binding proteins (SREBPs) and mediates their transport from the ER to the Golgi. The SREBPs are then proteolytically cleaved and regulate sterol biosynthesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000163832 | ELP6 | elongator acetyltransferase complex subunit 6 | 54859 | NA |
| NA | ENSG00000114646 | CSPG5 | chondroitin sulfate proteoglycan 5 | 10675 | The protein encoded by this gene is a proteoglycan that may function as a neural growth and differentiation factor. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000173473 | SMARCC1 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily c, member 1 | 6599 | The protein encoded by this gene is a member of the SWI/SNF family of proteins, whose members display helicase and ATPase activities and which are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The encoded protein is part of the large ATP-dependent chromatin remodeling complex SNF/SWI and contains a predicted leucine zipper motif typical of many transcription factors. |
| NA | ENSG00000047849 | MAP4 | microtubule associated protein 4 | 4134 | The protein encoded by this gene is a major non-neuronal microtubule-associated protein. This protein contains a domain similar to the microtubule-binding domains of neuronal microtubule-associated protein (MAP2) and microtubule-associated protein tau (MAPT/TAU). This protein promotes microtubule assembly, and has been shown to counteract destabilization of interphase microtubule catastrophe promotion. Cyclin B was found to interact with this protein, which targets cell division cycle 2 (CDC2) kinase to microtubules. The phosphorylation of this protein affects microtubule properties and cell cycle progression. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164045 | CDC25A | cell division cycle 25A | 993 | CDC25A is a member of the CDC25 family of phosphatases. CDC25A is required for progression from G1 to the S phase of the cell cycle. It activates the cyclin-dependent kinase CDC2 by removing two phosphate groups. CDC25A is specifically degraded in response to DNA damage, which prevents cells with chromosomal abnormalities from progressing through cell division. CDC25A is an oncogene, although its exact role in oncogenesis has not been demonstrated. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164048 | ZNF589 | zinc finger protein 589 | 51385 | NA |
| NA | ENSG00000172113 | NME6 | NME/NM23 nucleoside diphosphate kinase 6 | 10201 | Nucleoside diphosphate (NDP) kinases (EC 2.7.4.6), such as NME6, are ubiquitous enzymes that catalyze transfer of gamma-phosphates, via a phosphohistidine intermediate, between nucleoside and dioxynucleoside tri- and diphosphates (Mehus et al., 1999 [PubMed 10453732]). |
| NA | ENSG00000164050 | PLXNB1 | plexin B1 | 5364 | NA |
| NA | ENSG00000164051 | CCDC51 | coiled-coil domain containing 51 | 79714 | NA |
| NA | ENSG00000232112 | TMA7 | translation machinery associated 7 homolog | 51372 | NA |
| NA | ENSG00000164053 | ATRIP | ATR interacting protein | 84126 | This gene encodes an essential component of the DNA damage checkpoint. The encoded protein binds to single-stranded DNA coated with replication protein A. The protein also interacts with the ataxia telangiectasia and Rad3 related protein kinase, resulting in its accumulation at intranuclear foci induced by DNA damage. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000213689 | TREX1 | three prime repair exonuclease 1 | 11277 | This gene encodes a nuclear protein with 3’ exonuclease activity. The encoded protein may play a role in DNA repair and serve as a proofreading function for DNA polymerase. Mutations in this gene result in Aicardi-Goutieres syndrome, chilblain lupus, Cree encephalitis, and other diseases of the immune system. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164054 | SHISA5 | shisa family member 5 | 51246 | This gene encodes a member of the shisa family. The encoded protein is localized to the endoplasmic reticulum, and together with p53 induces apoptosis in a caspase-dependent manner. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000114268 | PFKFB4 | 6-phosphofructo-2-kinase/fructose-2,6-biphosphatase 4 | 5210 | The protein encoded by this gene is one of four bifunctional kinase/phosphatases that regulate the concentration of the glycolytic byproduct fructose-2,6-bisphosphate (F2,6BP). The encoded protein is highly expressed in cancer cells and is induced by hypoxia. This protein is essential to the survival of cancer cells under conditions of hypoxia, because it increases the amount of F2,6BP and ATP at a time when the cell cannot produce much of them. This finding suggests that this protein may be a good target for disruption in cancer cells, hopefully imperiling their survival. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000114270 | COL7A1 | collagen type VII alpha 1 | 1294 | This gene encodes the alpha chain of type VII collagen. The type VII collagen fibril, composed of three identical alpha collagen chains, is restricted to the basement zone beneath stratified squamous epithelia. It functions as an anchoring fibril between the external epithelia and the underlying stroma. Mutations in this gene are associated with all forms of dystrophic epidermolysis bullosa. In the absence of mutations, however, an acquired form of this disease can result from an autoimmune response made to type VII collagen. |
| NA | ENSG00000010256 | UQCRC1 | ubiquinol-cytochrome c reductase core protein I | 7384 | NA |
| NA | ENSG00000225697 | SLC26A6 | solute carrier family 26 member 6 | 65010 | This gene belongs to the solute carrier 26 family, whose members encode anion transporter proteins. This particular family member encodes a protein involved in transporting chloride, oxalate, sulfate and bicarbonate. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000008300 | CELSR3 | cadherin EGF LAG seven-pass G-type receptor 3 | 1951 | This gene belongs to the flamingo subfamily, which is included in the cadherin superfamily. The flamingo cadherins consist of nonclassic-type cadherins that do not interact with catenins. They are plasma membrane proteins containing seven epidermal growth factor-like repeats, nine cadherin domains and two laminin A G-type repeats in their ectodomain. They also have seven transmembrane domains, a characteristic feature of their subfamily. The encoded protein may be involved in the regulation of contact-dependent neurite growth and may play a role in tumor formation. |
| NA | ENSG00000213672 | NCKIPSD | NCK interacting protein with SH3 domain | 51517 | The protein encoded by this gene is localized exclusively in the cell nucleus. It plays a role in signal transduction, and may function in the maintenance of sarcomeres and in the assembly of myofibrils into sarcomeres. It also plays an important role in stress fiber formation. The gene is involved in therapy-related leukemia by a chromosomal translocation t(3;11)(p21;q23) that involves this gene and the myeloid/lymphoid leukemia gene. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000068745 | IP6K2 | inositol hexakisphosphate kinase 2 | 51447 | This gene encodes a protein that belongs to the inositol phosphokinase (IPK) family. This protein is likely responsible for the conversion of inositol hexakisphosphate (InsP6) to diphosphoinositol pentakisphosphate (InsP7/PP-InsP5). It may also convert 1,3,4,5,6-pentakisphosphate (InsP5) to PP-InsP4 and affect the growth suppressive and apoptotic activities of interferon-beta in some ovarian cancers. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000114302 | PRKAR2A | protein kinase cAMP-dependent type II regulatory subunit alpha | 5576 | cAMP is a signaling molecule important for a variety of cellular functions. cAMP exerts its effects by activating the cAMP-dependent protein kinase, which transduces the signal through phosphorylation of different target proteins. The inactive kinase holoenzyme is a tetramer composed of two regulatory and two catalytic subunits. cAMP causes the dissociation of the inactive holoenzyme into a dimer of regulatory subunits bound to four cAMP and two free monomeric catalytic subunits. Four different regulatory subunits and three catalytic subunits have been identified in humans. The protein encoded by this gene is one of the regulatory subunits. This subunit can be phosphorylated by the activated catalytic subunit. It may interact with various A-kinase anchoring proteins and determine the subcellular localization of cAMP-dependent protein kinase. This subunit has been shown to regulate protein transport from endosomes to the Golgi apparatus and further to the endoplasmic reticulum (ER). |
| NA | ENSG00000178537 | SLC25A20 | solute carrier family 25 member 20 | 788 | This gene product is one of several closely related mitochondrial-membrane carrier proteins that shuttle substrates between cytosol and the intramitochondrial matrix space. This protein mediates the transport of acylcarnitines into mitochondrial matrix for their oxidation by the mitochondrial fatty acid-oxidation pathway. Mutations in this gene are associated with carnitine-acylcarnitine translocase deficiency, which can cause a variety of pathological conditions such as hypoglycemia, cardiac arrest, hepatomegaly, hepatic dysfunction and muscle weakness, and is usually lethal in new born and infants. |
| NA | ENSG00000177479 | ARIH2 | ariadne RBR E3 ubiquitin protein ligase 2 | 10425 | The protein encoded by this gene is an E3 ubiquitin-protein ligase that polyubiquitinates some proteins, tagging them for degradation. The encoded protein upregulates p53 in some cancer cells and may inhibit myelopoiesis. Several transcript variants encoding different isoforms have been found for this gene, although the full-length nature of some of them have not been determined yet. |
| NA | ENSG00000178467 | P4HTM | prolyl 4-hydroxylase, transmembrane (endoplasmic reticulum) | 54681 | The product of this gene belongs to the family of prolyl 4-hydroxylases. This protein is a prolyl hydroxylase that may be involved in the degradation of hypoxia-inducible transcription factors under normoxia. It plays a role in adaptation to hypoxia and may be related to cellular oxygen sensing. Alternatively spliced variants encoding different isoforms have been identified. |
| NA | ENSG00000178149 | DALRD3 | DALR anticodon binding domain containing 3 | 55152 | The exact function of this gene is not known. It encodes a protein with a DALR anticodon binding domain similar to that of class Ia aminoacyl tRNA synthetases. This gene is located in a cluster of genes (with a complex sense-anti-sense genome architecture) on chromosome 3, and contains two micro RNA (miRNA) precursors (mir-425 and mir-191) in one of its introns. Preferential expression of this gene (the miRNAs and other genes in the cluster) in testis suggests a role of this gene in spermatogenesis (PMID:19906709). |
| NA | ENSG00000178035 | IMPDH2 | IMP (inosine 5’-monophosphate) dehydrogenase 2 | 3615 | This gene encodes the rate-limiting enzyme in the de novo guanine nucleotide biosynthesis. It is thus involved in maintaining cellular guanine deoxy- and ribonucleotide pools needed for DNA and RNA synthesis. The encoded protein catalyzes the NAD-dependent oxidation of inosine-5’-monophosphate into xanthine-5’-monophosphate, which is then converted into guanosine-5’-monophosphate. This gene is up-regulated in some neoplasms, suggesting it may play a role in malignant transformation. |
| NA | ENSG00000198218 | QRICH1 | glutamine rich 1 | 54870 | NA |
| NA | ENSG00000172046 | USP19 | ubiquitin specific peptidase 19 | 10869 | NA |
| NA | ENSG00000172037 | LAMB2 | laminin subunit beta 2 | 3913 | Laminins, a family of extracellular matrix glycoproteins, are the major noncollagenous constituent of basement membranes. They have been implicated in a wide variety of biological processes including cell adhesion, differentiation, migration, signaling, neurite outgrowth and metastasis. Laminins, composed of 3 non identical chains: laminin alpha, beta and gamma (formerly A, B1, and B2, respectively), form a cruciform structure consisting of 3 short arms, each formed by a different chain, and a long arm composed of all 3 chains. Each laminin chain is a multidomain protein encoded by a distinct gene. Several isoforms of each chain have been described. Different alpha, beta and gamma chain isomers combine to give rise to different heterotrimeric laminin isoforms which are designated by Arabic numerals in the order of their discovery, i.e. alpha1beta1gamma1 heterotrimer is laminin 1. The biological functions of the different chains and trimer molecules are largely unknown, but some of the chains have been shown to differ with respect to their tissue distribution, presumably reflecting diverse functions in vivo. This gene encodes the beta chain isoform laminin, beta 2. The beta 2 chain contains the 7 structural domains typical of beta chains of laminin, including the short alpha region. However, unlike beta 1 chain, beta 2 has a more restricted tissue distribution. It is enriched in the basement membrane of muscles at the neuromuscular junctions, kidney glomerulus and vascular smooth muscle. Transgenic mice in which the beta 2 chain gene was inactivated by homologous recombination, showed defects in the maturation of neuromuscular junctions and impairment of glomerular filtration. Alternative splicing involving a non consensus 5’ splice site (gc) in the 5’ UTR of this gene has been reported. It was suggested that inefficient splicing of this first intron, which does not change the protein sequence, results in a greater abundance of the unspliced form of the transcript than the spliced form. The full-length nature of the spliced transcript is not known. |
| NA | ENSG00000177352 | CCDC71 | coiled-coil domain containing 71 | 64925 | NA |
| NA | ENSG00000185909 | KLHDC8B | kelch domain containing 8B | 200942 | This gene encodes a protein which forms a distinct beta-propeller protein structure of kelch domains allowing for protein-protein interactions. Mutations in this gene have been associated with Hodgkin lymphoma. |
| NA | ENSG00000188315 | C3orf62 | chromosome 3 open reading frame 62 | 375341 | NA |
| NA | ENSG00000114316 | USP4 | ubiquitin specific peptidase 4 (proto-oncogene) | 7375 | The protein encoded by this gene is a protease that deubiquitinates target proteins such as ADORA2A and TRIM21. The encoded protein shuttles between the nucleus and cytoplasm and is involved in maintaining operational fidelity in the endoplasmic reticulum. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000233276 | GPX1 | glutathione peroxidase 1 | 2876 | This gene encodes a member of the glutathione peroxidase family. Glutathione peroxidase functions in the detoxification of hydrogen peroxide, and is one of the most important antioxidant enzymes in humans. This protein is one of only a few proteins known in higher vertebrates to contain selenocysteine, which occurs at the active site of glutathione peroxidase and is coded by UGA, that normally functions as a translation termination codon. In addition, this protein is characterized in a polyalanine sequence polymorphism in the N-terminal region, which includes three alleles with five, six or seven alanine (ALA) repeats in this sequence. The allele with five ALA repeats is significantly associated with breast cancer risk. Two alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000067560 | RHOA | ras homolog family member A | 387 | This gene encodes a member of the Rho family of small GTPases, which cycle between inactive GDP-bound and active GTP-bound states and function as molecular switches in signal transduction cascades. Rho proteins promote reorganization of the actin cytoskeleton and regulate cell shape, attachment, and motility. Overexpression of this gene is associated with tumor cell proliferation and metastasis. Multiple alternatively spliced variants have been identified. |
| NA | ENSG00000145022 | TCTA | T-cell leukemia translocation altered | 6988 | NA |
| NA | ENSG00000145020 | AMT | aminomethyltransferase | 275 | This gene encodes one of four critical components of the glycine cleavage system. Mutations in this gene have been associated with glycine encephalopathy. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000145029 | NICN1 | nicolin 1 | 84276 | This protein encoded by this gene localizes to the nucleus and is expressed in numerous tissues including brain, testis, liver, and kidney. This refseq contains genomic sequence in its 3’ UTR which is not supported by experimental evidence. Computer predictions indicate that this region of the 3’ UTR contains hairpin-forming self-complementary sequence which is possibly excised after transcription. This gene has a pseudogene on chromosome X. |
| NA | ENSG00000173402 | DAG1 | dystroglycan 1 | 1605 | This gene encodes dystroglycan, a central component of dystrophin-glycoprotein complex that links the extracellular matrix and the cytoskeleton in the skeletal muscle. The encoded preproprotein undergoes O- and N-glycosylation, and proteolytic processing to generate alpha and beta subunits. Certain mutations in this gene are known to cause distinct forms of muscular dystrophy. Alternative splicing results in multiple transcript variants, all encoding the same protein. |
| NA | ENSG00000164061 | BSN | bassoon presynaptic cytomatrix protein | 8927 | Neurotransmitters are released from a specific site in the axon terminal called the active zone, which is composed of synaptic vesicles and a meshwork of cytoskeleton underlying the plasma membrane. The protein encoded by this gene is thought to be a scaffolding protein involved in organizing the presynaptic cytoskeleton. The gene is expressed primarily in neurons in the brain. A similar gene product in rodents is concentrated in the active zone of axon terminals and tightly associated with cytoskeletal structures, and is essential for regulating neurotransmitter release from a subset of synapses. |
| NA | ENSG00000164062 | APEH | acylaminoacyl-peptide hydrolase | 327 | This gene encodes the enzyme acylpeptide hydrolase, which catalyzes the hydrolysis of the terminal acetylated amino acid preferentially from small acetylated peptides. The acetyl amino acid formed by this hydrolase is further processed to acetate and a free amino acid by an aminoacylase. This gene is located within the same region of chromosome 3 (3p21) as the aminoacylase gene, and deletions at this locus are also associated with a decrease in aminoacylase activity. The acylpeptide hydrolase is a homotetrameric protein of 300 kDa with each subunit consisting of 732 amino acid residues. It can play an important role in destroying oxidatively damaged proteins in living cells. Deletions of this gene locus are found in various types of carcinomas, including small cell lung carcinoma and renal cell carcinoma. |
| NA | ENSG00000164068 | RNF123 | ring finger protein 123 | 63891 | The protein encoded by this gene contains a C-terminal RING finger domain, a motif present in a variety of functionally distinct proteins and known to be involved in protein-protein and protein-DNA interactions, and an N-terminal SPRY domain. This protein displays E3 ubiquitin ligase activity toward the cyclin-dependent kinase inhibitor 1B which is also known as p27 or KIP1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000176095 | IP6K1 | inositol hexakisphosphate kinase 1 | 9807 | This gene encodes a member of the inositol phosphokinase family. The encoded protein may be responsible for the conversion of inositol hexakisphosphate (InsP6) to diphosphoinositol pentakisphosphate (InsP7/PP-InsP5). It may also convert 1,3,4,5,6-pentakisphosphate (InsP5) to PP-InsP4. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000183763 | TRAIP | TRAF interacting protein | 10293 | This gene encodes a protein that contains an N-terminal RING finger motif and a putative coiled-coil domain. A similar murine protein interacts with TNFR-associated factor 1 (TRAF1), TNFR-associated factor 2 (TRAF2), and cylindromatosis. The interaction with TRAF2 inhibits TRAF2-mediated nuclear factor kappa-B, subunit 1 activation that is required for cell activation and protection against apoptosis. |
| NA | ENSG00000164076 | CAMKV | CaM kinase-like vesicle-associated | 79012 | NA |
| NA | ENSG00000164077 | MON1A | MON1 homolog A, secretory trafficking associated | 84315 | NA |
| NA | ENSG00000004534 | RBM6 | RNA binding motif protein 6 | 10180 | NA |
| NA | ENSG00000003756 | RBM5 | RNA binding motif protein 5 | 10181 | This gene is a candidate tumor suppressor gene which encodes a nuclear RNA binding protein that is a component of the spliceosome A complex. The encoded protein plays a role in the induction of cell cycle arrest and apoptosis through pre-mRNA splicing of multiple target genes including the tumor suppressor protein p53. This gene is located within the tumor suppressor region 3p21.3, and may play a role in the inhibition of tumor transformation and progression of several malignancies including lung cancer. |
| NA | ENSG00000001617 | SEMA3F | semaphorin 3F | 6405 | This gene encodes a member of the semaphorin III family of secreted signaling proteins that are involved in axon guidance during neuronal development. The encoded protein contains an N-terminal Sema domain, an immunoglobulin loop and a C-terminal basic domain. This gene is expressed by the endothelial cells where it was found to act in an autocrine fashion to induce apoptosis, inhibit cell proliferation and survival, and function as an anti-tumorigenic agent. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000114353 | GNAI2 | G protein subunit alpha i2 | 2771 | The protein encoded by this gene is an alpha subunit of guanine nucleotide binding proteins (G proteins). The encoded protein contains the guanine nucleotide binding site and is involved in the hormonal regulation of adenylate cyclase. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000114378 | HYAL1 | hyaluronoglucosaminidase 1 | 3373 | This gene encodes a lysosomal hyaluronidase. Hyaluronidases intracellularly degrade hyaluronan, one of the major glycosaminoglycans of the extracellular matrix. Hyaluronan is thought to be involved in cell proliferation, migration and differentiation. This enzyme is active at an acidic pH and is the major hyaluronidase in plasma. Mutations in this gene are associated with mucopolysaccharidosis type IX, or hyaluronidase deficiency. The gene is one of several related genes in a region of chromosome 3p21.3 associated with tumor suppression. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000068001 | HYAL2 | hyaluronoglucosaminidase 2 | 8692 | This gene encodes a weak acid-active hyaluronidase. The encoded protein is similar in structure to other more active hyaluronidases. Hyaluronidases degrade hyaluronan, one of the major glycosaminoglycans of the extracellular matrix. Hyaluronan and fragments of hyaluronan are thought to be involved in cell proliferation, migration and differentiation. Although it was previously thought to be a lysosomal hyaluronidase that is active at a pH below 4, the encoded protein is likely a GPI-anchored cell surface protein. This hyaluronidase serves as a receptor for the oncogenic virus Jaagsiekte sheep retrovirus. The gene is one of several related genes in a region of chromosome 3p21.3 associated with tumor suppression. This gene encodes two alternatively spliced transcript variants which differ only in the 5’ UTR. |
| NA | ENSG00000114383 | TUSC2 | tumor suppressor candidate 2 | 11334 | This gene is a highly conserved lung cancer candidate gene. No other information about this gene is currently available. |
| NA | ENSG00000068028 | RASSF1 | Ras association domain family member 1 | 11186 | This gene encodes a protein similar to the RAS effector proteins. Loss or altered expression of this gene has been associated with the pathogenesis of a variety of cancers, which suggests the tumor suppressor function of this gene. The inactivation of this gene was found to be correlated with the hypermethylation of its CpG-island promoter region. The encoded protein was found to interact with DNA repair protein XPA. The protein was also shown to inhibit the accumulation of cyclin D1, and thus induce cell cycle arrest. Several alternatively spliced transcript variants of this gene encoding distinct isoforms have been reported. |
| NA | ENSG00000114395 | CYB561D2 | cytochrome b561 family member D2 | 11068 | NA |
| NA | ENSG00000126062 | TMEM115 | transmembrane protein 115 | 11070 | NA |
| NA | ENSG00000007402 | CACNA2D2 | calcium voltage-gated channel auxiliary subunit alpha2delta 2 | 9254 | Calcium channels mediate the entry of calcium ions into the cell upon membrane polarization. This gene encodes the alpha-2/delta subunit of the voltage-dependent calcium channel complex. The complex consists of the main channel-forming subunit alpha-1, and auxiliary subunits alpha-2/delta, beta, and gamma. The auxiliary subunits function in the assembly and membrane localization of the complex, and modulate calcium currents and channel activation/inactivation kinetics. The subunit encoded by this gene undergoes post-translational cleavage to yield the extracellular alpha2 peptide and a membrane-anchored delta polypeptide. This subunit is a receptor for the antiepileptic drug, gabapentin. Mutations in this gene are associated with early infantile epileptic encephalopathy. Single nucleotide polymorphisms in this gene are correlated with increased sensitivity to opioid drugs. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000088543 | C3orf18 | chromosome 3 open reading frame 18 | 51161 | NA |
| NA | ENSG00000114735 | HEMK1 | HemK methyltransferase family member 1 | 51409 | NA |
| NA | ENSG00000114737 | CISH | cytokine inducible SH2-containing protein | 1154 | The protein encoded by this gene contains a SH2 domain and a SOCS box domain. The protein thus belongs to the cytokine-induced STAT inhibitor (CIS), also known as suppressor of cytokine signaling (SOCS) or STAT-induced STAT inhibitor (SSI), protein family. CIS family members are known to be cytokine-inducible negative regulators of cytokine signaling. The expression of this gene can be induced by IL2, IL3, GM-CSF and EPO in hematopoietic cells. Proteasome-mediated degradation of this protein has been shown to be involved in the inactivation of the erythropoietin receptor. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000088538 | DOCK3 | dedicator of cytokinesis 3 | 1795 | This gene is specifically expressed in the central nervous system (CNS). It encodes a member of the DOCK (dedicator of cytokinesis) family of guanine nucleotide exchange factors (GEFs). This protein, dedicator of cytokinesis 3 (DOCK3), is also known as modifier of cell adhesion (MOCA) and presenilin-binding protein (PBP). The DOCK3 and DOCK1, -2 and -4 share several conserved amino acids in their DHR-2 (DOCK homology region 2) domains that are required for GEF activity, and bind directly to WAVE proteins [Wiskott-Aldrich syndrome protein (WASP) family Verprolin-homologous proteins] via their DHR-1 domains. The DOCK3 induces axonal outgrowth in CNS by stimulating membrane recruitment of the WAVE complex and activating the small G protein Rac1. This gene is associated with an attention deficit hyperactivity disorder-like phenotype by a complex chromosomal rearrangement. |
| TRUE | ENSG00000179837 | NA | NA | NA | NA |
| NA | ENSG00000145041 | VPRBP | Vpr (HIV-1) binding protein | 9730 | NA |
| NA | ENSG00000164080 | RAD54L2 | RAD54-like 2 (S. cerevisiae) | 23132 | NA |
| NA | ENSG00000164081 | TEX264 | testis expressed 264 | 51368 | NA |
| NA | ENSG00000114767 | RRP9 | ribosomal RNA processing 9, small subunit (SSU) processome component, homolog (yeast) | 9136 | This gene encodes a member of the WD-repeat protein family. The encoded protein is a component of the nucleolar small nuclear ribonucleoprotein particle (snoRNP) and is essential for 18s rRNA processing during ribosome synthesis. It contains seven WD domains required for nucleolar localization and specific interaction with the U3 small nucleolar RNA (U3 snoRNA). |
| NA | ENSG00000090097 | PCBP4 | poly(rC) binding protein 4 | 57060 | This gene encodes a member of the KH-domain protein subfamily. Proteins of this subfamily, also referred to as alpha-CPs, bind to RNA with a specificity for C-rich pyrimidine regions. Alpha-CPs play important roles in post-transcriptional activities and have different cellular distributions. This gene is induced by the p53 tumor suppressor, and the encoded protein can suppress cell proliferation by inducing apoptosis and cell cycle arrest in G(2)-M. This gene’s protein is found in the cytoplasm, yet it lacks the nuclear localization signals found in other subfamily members. Multiple alternatively spliced transcript variants have been described, but the full-length nature for only some has been determined. |
| NA | ENSG00000114779 | ABHD14B | abhydrolase domain containing 14B | 84836 | NA |
| NA | ENSG00000248487 | ABHD14A | abhydrolase domain containing 14A | 25864 | NA |
| NA | ENSG00000243989 | ACY1 | aminoacylase 1 | 95 | This gene encodes a cytosolic, homodimeric, zinc-binding enzyme that catalyzes the hydrolysis of acylated L-amino acids to L-amino acids and an acyl group, and has been postulated to function in the catabolism and salvage of acylated amino acids. This gene is located on chromosome 3p21.1, a region reduced to homozygosity in small-cell lung cancer (SCLC), and its expression has been reported to be reduced or undetectable in SCLC cell lines and tumors. The amino acid sequence of human aminoacylase-1 is highly homologous to the porcine counterpart, and this enzyme is the first member of a new family of zinc-binding enzymes. Mutations in this gene cause aminoacylase-1 deficiency, a metabolic disorder characterized by central nervous system defects and increased urinary excretion of N-acetylated amino acids. Alternative splicing of this gene results in multiple transcript variants. Read-through transcription also exists between this gene and the upstream ABHD14A (abhydrolase domain containing 14A) gene, as represented in GeneID:100526760. A related pseudogene has been identified on chromosome 18. |
| NA | ENSG00000162244 | RPL29 | ribosomal protein L29 | 6159 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a cytoplasmic ribosomal protein that is a component of the 60S subunit. The protein belongs to the L29E family of ribosomal proteins. The protein is also a peripheral membrane protein expressed on the cell surface that directly binds heparin. Although this gene was previously reported to map to 3q29-qter, it is believed that it is located at 3p21.3-p21.2. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000164086 | DUSP7 | dual specificity phosphatase 7 | 1849 | Dual-specificity phosphatases (DUSPs) constitute a large heterogeneous subgroup of the type I cysteine-based protein-tyrosine phosphatase superfamily. DUSPs are characterized by their ability to dephosphorylate both tyrosine and serine/threonine residues. DUSP7 belongs to a class of DUSPs, designated MKPs, that dephosphorylate MAPK (mitogen-activated protein kinase) proteins ERK (see MIM 601795), JNK (see MIM 601158), and p38 (see MIM 600289) with specificity distinct from that of individual MKP proteins. MKPs contain a highly conserved C-terminal catalytic domain and an N-terminal Cdc25 (see MIM 116947)-like (CH2) domain. MAPK activation cascades mediate various physiologic processes, including cellular proliferation, apoptosis, differentiation, and stress responses (summary by Patterson et al., 2009 [PubMed 19228121]). |
| NA | ENSG00000164087 | POC1A | POC1 centriolar protein A | 25886 | POC1 proteins contain an N-terminal WD40 domain and a C-terminal coiled coil domain and are part of centrosomes. They play an important role in basal body and cilia formation. This gene encodes one of the two POC1 proteins found in humans. Mutations in this gene result in short stature, onychodysplasia, facial dysmorphism, and hypotrichosis (SOFT) syndrome. |
| NA | ENSG00000023330 | ALAS1 | 5’-aminolevulinate synthase 1 | 211 | This gene encodes the mitochondrial enzyme which is catalyzes the rate-limiting step in heme (iron-protoporphyrin) biosynthesis. The enzyme encoded by this gene is the housekeeping enzyme; a separate gene encodes a form of the enzyme that is specific for erythroid tissue. The level of the mature encoded protein is regulated by heme: high levels of heme down-regulate the mature enzyme in mitochondria while low heme levels up-regulate. A pseudogene of this gene is located on chromosome 12. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000247596 | TWF2 | twinfilin actin binding protein 2 | 11344 | The protein encoded by this gene was identified by its interaction with the catalytic domain of protein kinase C-zeta. The encoded protein contains an actin-binding site and an ATP-binding site. It is most closely related to twinfilin (PTK9), a conserved actin monomer-binding protein. |
| NA | ENSG00000164088 | PPM1M | protein phosphatase, Mg2+/Mn2+ dependent 1M | 132160 | NA |
| NA | ENSG00000164091 | WDR82 | WD repeat domain 82 | 80335 | TMEM113 (WDR82) is a component of the mammalian SET1A (MIM 611052)/SET1B (MIM 611055) histone H3-Lys4 methyltransferase complexes (Lee and Skalnik, 2005 [PubMed 16253997]; Lee et al., 2007 [PubMed 17355966]). |
| NA | ENSG00000168237 | GLYCTK | glycerate kinase | 132158 | This locus encodes a member of the glycerate kinase type-2 family. The encoded enzyme catalyzes the phosphorylation of (R)-glycerate and may be involved in serine degradation and fructose metabolism. Decreased activity of the encoded enzyme may be associated with the disease D-glyceric aciduria. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000163930 | BAP1 | BRCA1 associated protein 1 | 8314 | This gene belongs to the ubiquitin C-terminal hydrolase subfamily of deubiquitinating enzymes that are involved in the removal of ubiquitin from proteins. The encoded enzyme binds to the breast cancer type 1 susceptibility protein (BRCA1) via the RING finger domain of the latter and acts as a tumor suppressor. In addition, the enzyme may be involved in regulation of transcription, regulation of cell cycle and growth, response to DNA damage and chromatin dynamics. Germline mutations in this gene may be associated with tumor predisposition syndrome (TPDS), which involves increased risk of cancers including malignant mesothelioma, uveal melanoma and cutaneous melanoma. |
| NA | ENSG00000010318 | PHF7 | PHD finger protein 7 | 51533 | Spermatogenesis is a complex process regulated by extracellular and intracellular factors as well as cellular interactions among interstitial cells of the testis, Sertoli cells, and germ cells. This gene is expressed in the testis in Sertoli cells but not germ cells. The protein encoded by this gene contains plant homeodomain (PHD) finger domains, also known as leukemia associated protein (LAP) domains, believed to be involved in transcriptional regulation. The protein, which localizes to the nucleus of transfected cells, has been implicated in the transcriptional regulation of spermatogenesis. Alternate splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000010319 | SEMA3G | semaphorin 3G | 56920 | NA |
| NA | ENSG00000114854 | TNNC1 | troponin C1, slow skeletal and cardiac type | 7134 | Troponin is a central regulatory protein of striated muscle contraction, and together with tropomyosin, is located on the actin filament. Troponin consists of 3 subunits: TnI, which is the inhibitor of actomyosin ATPase; TnT, which contains the binding site for tropomyosin; and TnC, the protein encoded by this gene. The binding of calcium to TnC abolishes the inhibitory action of TnI, thus allowing the interaction of actin with myosin, the hydrolysis of ATP, and the generation of tension. Mutations in this gene are associated with cardiomyopathy dilated type 1Z. |
| NA | ENSG00000010322 | NISCH | nischarin | 11188 | This gene encodes a nonadrenergic imidazoline-1 receptor protein that localizes to the cytosol and anchors to the inner layer of the plasma membrane. The orthologous mouse protein has been shown to influence cytoskeletal organization and cell migration by binding to alpha-5-beta-1 integrin. In humans, this protein has been shown to bind to the adapter insulin receptor substrate 4 (IRS4) to mediate translocation of alpha-5 integrin from the cell membrane to endosomes. Expression of this protein was reduced in human breast cancers while its overexpression reduced tumor growth and metastasis; possibly by limiting the expression of alpha-5 integrin. In human cardiac tissue, this gene was found to affect cell growth and death while in neural tissue it affected neuronal growth and differentiation. Alternative splicing results in multiple transcript variants encoding differerent isoforms. Some isoforms lack the expected C-terminal domains of a functional imidazoline receptor. |
| NA | ENSG00000168268 | NT5DC2 | 5’-nucleotidase domain containing 2 | 64943 | NA |
| NA | ENSG00000168273 | SMIM4 | small integral membrane protein 4 | 440957 | NA |
| NA | ENSG00000163939 | PBRM1 | polybromo 1 | 55193 | This locus encodes a subunit of ATP-dependent chromatin-remodeling complexes. The encoded protein has been identified as in integral component of complexes necessary for ligand-dependent transcriptional activation by nuclear hormone receptors. Mutations at this locus have been associated with primary clear cell renal cell carcinoma. |
| NA | ENSG00000163938 | GNL3 | G protein nucleolar 3 | 26354 | The protein encoded by this gene may interact with p53 and may be involved in tumorigenesis. The encoded protein also appears to be important for stem cell proliferation. This protein is found in both the nucleus and nucleolus. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000016864 | GLT8D1 | glycosyltransferase 8 domain containing 1 | 55830 | This gene encodes a member of the glycosyltransferase family. The specific function of this protein has not been determined. Alternative splicing results in multiple transcript variants of this gene |
| NA | ENSG00000114902 | SPCS1 | signal peptidase complex subunit 1 | 28972 | NA |
| NA | ENSG00000114904 | NEK4 | NIMA related kinase 4 | 6787 | NA |
| NA | ENSG00000163935 | SFMBT1 | Scm-like with four mbt domains 1 | 51460 | This gene shares high similarity with the Drosophila Scm (sex comb on midleg) gene. It encodes a protein which contains four malignant brain tumor repeat (mbt) domains and may be involved in antigen recognition. |
| NA | ENSG00000163933 | RFT1 | RFT1 homolog | 91869 | This gene encodes an enzyme which catalyzes the translocation of the Man(5)GlcNAc (2)-PP-Dol intermediate from the cytoplasmic to the luminal side of the endoplasmic reticulum membrane in the pathway for the N-glycosylation of proteins. Mutations in this gene are associated with congenital disorder of glycosylation type In. |
| NA | ENSG00000163932 | PRKCD | protein kinase C delta | 5580 | Protein kinase C (PKC) is a family of serine- and threonine-specific protein kinases that can be activated by calcium and the second messenger diacylglycerol. PKC family members phosphorylate a wide variety of protein targets and are known to be involved in diverse cellular signaling pathways. PKC family members also serve as major receptors for phorbol esters, a class of tumor promoters. Each member of the PKC family has a specific expression profile and is believed to play distinct roles in cells. The protein encoded by this gene is one of the PKC family members. Studies both in human and mice demonstrate that this kinase is involved in B cell signaling and in the regulation of growth, apoptosis, and differentiation of a variety of cell types. Alternatively spliced transcript variants encoding the same protein have been observed. |
| NA | ENSG00000163931 | TKT | transketolase | 7086 | This gene encodes a thiamine-dependent enzyme which plays a role in the channeling of excess sugar phosphates to glycolysis in the pentose phosphate pathway. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| TRUE | ENSG00000162290 | NA | NA | NA | NA |
| NA | ENSG00000016391 | CHDH | choline dehydrogenase | 55349 | The protein encoded by this gene is a choline dehydrogenase that localizes to the mitochondrion. Variations in this gene can affect susceptibility to choline deficiency. A few transcript variants have been found for this gene, but the full-length nature of only one has been characterized to date. |
| NA | ENSG00000056736 | IL17RB | interleukin 17 receptor B | 55540 | The protein encoded by this gene is a cytokine receptor. This receptor specifically binds to IL17B and IL17E, but does not bind to IL17 and IL17C. This receptor has been shown to mediate the activation of NF-kappaB and the production of IL8 induced by IL17E. The expression of the rat counterpart of this gene was found to be significantly up-regulated during intestinal inflammation, which suggested the immunoregulatory activity of this receptor. |
| NA | ENSG00000113811 | SELK | selenoprotein K | 58515 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. This selenoprotein is localized to the endoplasmic reticulum and is highly expressed in the heart, where it may function as an antioxidant. |
| NA | ENSG00000157445 | CACNA2D3 | calcium voltage-gated channel auxiliary subunit alpha2delta 3 | 55799 | This gene encodes a member of the alpha-2/delta subunit family, a protein in the voltage-dependent calcium channel complex. Calcium channels mediate the influx of calcium ions into the cell upon membrane polarization and consist of a complex of alpha-1, alpha-2/delta, beta, and gamma subunits in a 1:1:1:1 ratio. Various versions of each of these subunits exist, either expressed from similar genes or the result of alternative splicing. Research on a highly similar protein in rabbit suggests the protein described in this record is cleaved into alpha-2 and delta subunits. Alternate transcriptional splice variants of this gene have been observed but have not been thoroughly characterized. |
| NA | ENSG00000114251 | WNT5A | Wnt family member 5A | 7474 | The WNT gene family consists of structurally related genes which encode secreted signaling proteins. These proteins have been implicated in oncogenesis and in several developmental processes, including regulation of cell fate and patterning during embryogenesis. This gene encodes a member of the WNT family that signals through both the canonical and non-canonical WNT pathways. This protein is a ligand for the seven transmembrane receptor frizzled-5 and the tyrosine kinase orphan receptor 2. This protein plays an essential role in regulating developmental pathways during embryogenesis. This protein may also play a role in oncogenesis. Mutations in this gene are the cause of autosomal dominant Robinow syndrome. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000187672 | ERC2 | ELKS/RAB6-interacting/CAST family member 2 | 26059 | This gene encodes a protein that belongs to the Rab3-interacting molecule (RIM)-binding protein family. Members of this protein family form part of the cytomatrix at the active zone (CAZ) complex and function as regulators of neurotransmitter release. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000163946 | FAM208A | family with sequence similarity 208 member A | 23272 | NA |
| NA | ENSG00000163947 | ARHGEF3 | Rho guanine nucleotide exchange factor 3 | 50650 | Rho-like GTPases are involved in a variety of cellular processes, and they are activated by binding GTP and inactivated by conversion of GTP to GDP by their intrinsic GTPase activity. Guanine nucleotide exchange factors (GEFs) accelerate the GTPase activity of Rho GTPases by catalyzing their release of bound GDP. This gene encodes a guanine nucleotide exchange factor, which specifically activates two members of the Rho GTPase family: RHOA and RHOB, both of which have a role in bone cell biology. It has been identified that genetic variation in this gene plays a role in the determination of bone mineral density (BMD), indicating the implication of this gene in postmenopausal osteoporosis. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000144730 | IL17RD | interleukin 17 receptor D | 54756 | This gene encodes a membrane protein belonging to the interleukin-17 receptor (IL-17R) protein family. The encoded protein is a component of the interleukin-17 receptor signaling complex, and the interaction between this protein and IL-17R does not require the interleukin. The gene product also affects fibroblast growth factor signaling, inhibiting or stimulating growth through MAPK/ERK signaling. Alternate splicing generates multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000157500 | APPL1 | adaptor protein, phosphotyrosine interacting with PH domain and leucine zipper 1 | 26060 | The protein encoded by this gene has been shown to be involved in the regulation of cell proliferation, and in the crosstalk between the adiponectin signalling and insulin signalling pathways. The encoded protein binds many other proteins, including RAB5A, DCC, AKT2, PIK3CA, adiponectin receptors, and proteins of the NuRD/MeCP1 complex. This protein is found associated with endosomal membranes, but can be released by EGF and translocated to the nucleus. |
| NA | ENSG00000174840 | PDE12 | phosphodiesterase 12 | 201626 | NA |
| NA | ENSG00000168374 | ARF4 | ADP ribosylation factor 4 | 378 | This gene is a member of the human ARF gene family whose members encode small guanine nucleotide-binding proteins that stimulate the ADP-ribosyltransferase activity of cholera toxin and play a role in vesicular trafficking and as activators of phospholipase D. The gene products include 5 ARF proteins and 11 ARF-like proteins and constitute one family of the RAS superfamily. The ARF proteins are categorized as class I, class II and class III; this gene is a class II member. The members of each class share a common gene organization. The ARF4 gene spans approximately 12kb and contains six exons and five introns. This gene is the most divergent member of the human ARFs. Conflicting map positions at 3p14 or 3p21 have been reported for this gene. |
| NA | ENSG00000174839 | DENND6A | DENN domain containing 6A | 201627 | NA |
| NA | ENSG00000163681 | SLMAP | sarcolemma associated protein | 7871 | This gene encodes a component of a conserved striatin-interacting phosphatase and kinase complex. Striatin family complexes participate in a variety of cellular processes including signaling, cell cycle control, cell migration, Golgi assembly, and apoptosis. The protein encoded by this gene is a coiled-coil, tail-anchored membrane protein with a single C-terminal transmembrane domain that is posttranslationally inserted into membranes. Mutations in this gene are associated with Brugada syndrome, a cardiac channelopathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136068 | FLNB | filamin B | 2317 | This gene encodes a member of the filamin family. The encoded protein interacts with glycoprotein Ib alpha as part of the process to repair vascular injuries. The platelet glycoprotein Ib complex includes glycoprotein Ib alpha, and it binds the actin cytoskeleton. Mutations in this gene have been found in several conditions: atelosteogenesis type 1 and type 3; boomerang dysplasia; autosomal dominant Larsen syndrome; and spondylocarpotarsal synostosis syndrome. Multiple alternatively spliced transcript variants that encode different protein isoforms have been described for this gene. |
| NA | ENSG00000163686 | ABHD6 | abhydrolase domain containing 6 | 57406 | NA |
| NA | ENSG00000168297 | PXK | PX domain containing serine/threonine kinase like | 54899 | This gene encodes a phox (PX) domain-containing protein which may be involved in synaptic transmission and the ligand-induced internalization and degradation of epidermal growth factors. Variations in this gene may be associated with susceptibility to systemic lupus erythematosus (SLE). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168301 | KCTD6 | potassium channel tetramerization domain containing 6 | 200845 | NA |
| NA | ENSG00000163689 | C3orf67 | chromosome 3 open reading frame 67 | 200844 | NA |
| NA | ENSG00000189283 | FHIT | fragile histidine triad | 2272 | This gene, a member of the histidine triad gene family, encodes a diadenosine 5’,5’’’-P1,P3-triphosphate hydrolase involved in purine metabolism. The gene encompasses the common fragile site FRA3B on chromosome 3, where carcinogen-induced damage can lead to translocations and aberrant transcripts of this gene. In fact, aberrant transcripts from this gene have been found in about half of all esophageal, stomach, and colon carcinomas. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000144724 | PTPRG | protein tyrosine phosphatase, receptor type G | 5793 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP possesses an extracellular region, a single transmembrane region, and two tandem intracytoplasmic catalytic domains, and thus represents a receptor-type PTP. The extracellular region of this PTP contains a carbonic anhydrase-like (CAH) domain, which is also found in the extracellular region of PTPRBETA/ZETA. This gene is located in a chromosomal region that is frequently deleted in renal cell carcinoma and lung carcinoma, thus is thought to be a candidate tumor suppressor gene. |
| NA | ENSG00000114405 | C3orf14 | chromosome 3 open reading frame 14 | 57415 | NA |
| NA | ENSG00000163618 | CADPS | Ca2+ dependent secretion activator | 8618 | This gene encodes a novel neural/endocrine-specific cytosolic and peripheral membrane protein required for the Ca2+-regulated exocytosis of secretory vesicles. The protein acts at a stage in exocytosis that follows ATP-dependent priming, which involves the essential synthesis of phosphatidylinositol 4,5-bisphosphate (PtdIns(4,5)P2). Alternative splicing has been observed at this locus and three variants, encoding distinct isoforms, are described. |
| NA | ENSG00000163634 | THOC7 | THO complex 7 | 80145 | NA |
| NA | ENSG00000163635 | ATXN7 | ataxin 7 | 6314 | The autosomal dominant cerebellar ataxias (ADCA) are a heterogeneous group of neurodegenerative disorders characterized by progressive degeneration of the cerebellum, brain stem and spinal cord. Clinically, ADCA has been divided into three groups: ADCA types I-III. ADCAI is genetically heterogeneous, with five genetic loci, designated spinocerebellar ataxia (SCA) 1, 2, 3, 4 and 6, being assigned to five different chromosomes. ADCAII, which always presents with retinal degeneration (SCA7), and ADCAIII often referred to as the ‘pure’ cerebellar syndrome (SCA5), are most likely homogeneous disorders. Several SCA genes have been cloned and shown to contain CAG repeats in their coding regions. ADCA is caused by the expansion of the CAG repeats, producing an elongated polyglutamine tract in the corresponding protein. The expanded repeats are variable in size and unstable, usually increasing in size when transmitted to successive generations. This locus has been mapped to chromosome 3, and it has been determined that the diseased allele associated with spinocerebellar ataxia-7 contains 38-130 CAG repeats (near the N-terminus), compared to 7-17 in the normal allele. The encoded protein is a component of the SPT3/TAF9/GCN5 acetyltransferase (STAGA) and TBP-free TAF-containing (TFTC) chromatin remodeling complexes, and it thus plays a role in transcriptional regulation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000163636 | PSMD6 | proteasome 26S subunit, non-ATPase 6 | 9861 | This gene encodes a member of the protease subunit S10 family. The encoded protein is a subunit of the 26S proteasome which colocalizes with DNA damage foci and is involved in the ATP-dependent degradation of ubiquinated proteins. Alternative splicing results in multiple transcript variants |
| NA | ENSG00000163637 | PRICKLE2 | prickle planar cell polarity protein 2 | 166336 | This gene encodes a homolog of Drosophila prickle. The exact function of this gene is not known, however, studies in mice suggest that it may be involved in seizure prevention. Mutations in this gene are associated with progressive myoclonic epilepsy type 5. |
| NA | ENSG00000151276 | MAGI1 | membrane associated guanylate kinase, WW and PDZ domain containing 1 | 9223 | The protein encoded by this gene is a member of the membrane-associated guanylate kinase homologue (MAGUK) family. MAGUK proteins participate in the assembly of multiprotein complexes on the inner surface of the plasma membrane at regions of cell-cell contact. The product of this gene may play a role as scaffolding protein at cell-cell junctions. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000144741 | SLC25A26 | solute carrier family 25 member 26 | 115286 | Mitochondrial carriers, including SLC25A26, are a family of transport proteins found mostly in the inner membranes of mitochondria. They shuttle metabolites and cofactors through the mitochondrial membrane (Agrimi et al., 2004 [PubMed 14674884]). |
| NA | ENSG00000144749 | LRIG1 | leucine-rich repeats and immunoglobulin like domains 1 | 26018 | NA |
| NA | ENSG00000163376 | KBTBD8 | kelch repeat and BTB domain containing 8 | 84541 | NA |
| NA | ENSG00000172340 | SUCLG2 | succinate-CoA ligase, GDP-forming, beta subunit | 8801 | This gene encodes a GTP-specific beta subunit of succinyl-CoA synthetase. Succinyl-CoA synthetase catalyzes the reversible reaction involving the formation of succinyl-CoA and succinate. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 5 and 12. |
| NA | ENSG00000163377 | FAM19A4 | family with sequence similarity 19 (chemokine (C-C motif)-like), member A4 | 151647 | This gene is a member of the TAFA family which is composed of five highly homologous genes that encode small secreted proteins. These proteins contain conserved cysteine residues at fixed positions, and are distantly related to MIP-1alpha, a member of the CC-chemokine family. The TAFA proteins are predominantly expressed in specific regions of the brain, and are postulated to function as brain-specific chemokines or neurokines, that act as regulators of immune and nervous cells. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000163378 | EOGT | EGF domain-specific O-linked N-acetylglucosamine (GlcNAc) transferase | 285203 | This gene encodes an enzyme that acts in the lumen of the endoplasmic reticulum to catalyze the transfer of N-acetylglucosamine to serine or threonine residues of extracellular-targeted proteins. This enzyme modifies proteins containing eukaryotic growth factor (EGF)-like domains, including the Notch receptor, thereby regulating developmental signalling. Mutations in this gene have been observed in individuals with Adams-Oliver syndrome 4. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000144747 | TMF1 | TATA element modulatory factor 1 | 7110 | NA |
| NA | ENSG00000144746 | ARL6IP5 | ADP ribosylation factor like GTPase 6 interacting protein 5 | 10550 | Expression of this gene is affected by vitamin A. The encoded protein of this gene may be associated with the cytoskeleton. A similar protein in rats may play a role in the regulation of cell differentiation. The rat protein binds and inhibits the cell membrane glutamate transporter EAAC1. The expression of the rat gene is upregulated by retinoic acid, which results in a specific reduction in EAAC1-mediated glutamate transport. |
| NA | ENSG00000114541 | FRMD4B | FERM domain containing 4B | 23150 | This gene encodes a GRP1-binding protein which contains a FERM protein interaction domain as well as two coiled coil domains. This protein may play a role as a scaffolding protein. |
| NA | ENSG00000187098 | MITF | microphthalmia-associated transcription factor | 4286 | This gene encodes a transcription factor that contains both basic helix-loop-helix and leucine zipper structural features. It regulates the differentiation and development of melanocytes retinal pigment epithelium and is also responsible for pigment cell-specific transcription of the melanogenesis enzyme genes. Heterozygous mutations in the this gene cause auditory-pigmentary syndromes, such as Waardenburg syndrome type 2 and Tietz syndrome. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000114861 | FOXP1 | forkhead box P1 | 27086 | This gene belongs to subfamily P of the forkhead box (FOX) transcription factor family. Forkhead box transcription factors play important roles in the regulation of tissue- and cell type-specific gene transcription during both development and adulthood. Forkhead box P1 protein contains both DNA-binding- and protein-protein binding-domains. This gene may act as a tumor suppressor as it is lost in several tumor types and maps to a chromosomal region (3p14.1) reported to contain a tumor suppressor gene(s). Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000163412 | EIF4E3 | eukaryotic translation initiation factor 4E family member 3 | 317649 | EIF4E3 belongs to the EIF4E family of translational initiation factors that interact with the 5-prime cap structure of mRNA and recruit mRNA to the ribosome (Joshi et al., 2004 [PubMed 15153109]). |
| NA | ENSG00000170837 | GPR27 | G protein-coupled receptor 27 | 2850 | GPR27 is a member of the G protein-coupled receptors (GPCRs), a large family of receptors that have a similar structure characterized by 7 transmembrane domains. Activation of GPCRs by extracellular stimuli such as neurotransmitters, hormones, or light induces an intracellular signaling cascade mediated by heterotrimeric GTP-binding proteins, or G proteins. |
| NA | ENSG00000163602 | RYBP | RING1 and YY1 binding protein | 23429 | NA |
| NA | ENSG00000144736 | SHQ1 | SHQ1, H/ACA ribonucleoprotein assembly factor | 55164 | SHQ1 assists in the assembly of H/ACA-box ribonucleoproteins that function in the processing of ribosomal RNAs, modification of spliceosomal small nuclear RNAs, and stabilization of telomerase (see MIM 602322) (Grozdanov et al., 2009 [PubMed 19383767]). |
| NA | ENSG00000172986 | GXYLT2 | glucoside xylosyltransferase 2 | 727936 | GXYLT2 is a xylosyltransferase (EC 2.4.2.-) that adds the first xylose to O-glucose-modified residues in the epidermal growth factor (EGF; MIM 131530) repeats of proteins such as NOTCH1 (MIM 190198) (Sethi et al., 2010 [PubMed 19940119]). |
| NA | ENSG00000163605 | PPP4R2 | protein phosphatase 4 regulatory subunit 2 | 151987 | The protein encoded by this gene is a regulatory subunit of the serine/threonine-protein phosphatase 4 complex. In addition to being required for efficient DNA double strand break repair, this complex plays a role in organization of microtubules at centrosomes and processing of spliceosomal snRNPs. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000255423 | EBLN2 | endogenous Bornavirus-like nucleoprotein 2 | 55096 | NA |
| NA | ENSG00000121440 | PDZRN3 | PDZ domain containing ring finger 3 | 23024 | This gene encodes a member of the LNX (Ligand of Numb Protein-X) family of RING-type ubiquitin E3 ligases. This protein may function in vascular morphogenesis and the differentiation of adipocytes, osteoblasts and myoblasts. This protein may be targeted for degradation by the human papilloma virus E6 protein. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000227124 | ZNF717 | zinc finger protein 717 | 100131827 | NA |
| NA | ENSG00000169855 | ROBO1 | roundabout guidance receptor 1 | 6091 | Bilateral symmetric nervous systems have special midline structures that establish a partition between the two mirror image halves. Some axons project toward and across the midline in response to long-range chemoattractants emanating from the midline. The product of this gene is a member of the immunoglobulin gene superfamily and encodes an integral membrane protein that functions in axon guidance and neuronal precursor cell migration. This receptor is activated by SLIT-family proteins, resulting in a repulsive effect on glioma cell guidance in the developing brain. A related gene is located at an adjacent region on chromosome 3. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000114480 | GBE1 | glucan (1,4-alpha-), branching enzyme 1 | 2632 | The protein encoded by this gene is a glycogen branching enzyme that catalyzes the transfer of alpha-1,4-linked glucosyl units from the outer end of a glycogen chain to an alpha-1,6 position on the same or a neighboring glycogen chain. Branching of the chains is essential to increase the solubility of the glycogen molecule and, consequently, in reducing the osmotic pressure within cells. Highest level of this enzyme are found in liver and muscle. Mutations in this gene are associated with glycogen storage disease IV (also known as Andersen’s disease). |
| NA | ENSG00000175161 | CADM2 | cell adhesion molecule 2 | 253559 | This gene encodes a member of the synaptic cell adhesion molecule 1 (SynCAM) family which belongs to the immunoglobulin (Ig) superfamily. The encoded protein has three Ig-like domains and a cytosolic protein 4.1 binding site near the C-terminus. Proteins belonging to the protein 4.1 family crosslink spectrin and interact with other cytoskeletal proteins. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000206538 | VGLL3 | vestigial like family member 3 | 389136 | NA |
| NA | ENSG00000083937 | CHMP2B | charged multivesicular body protein 2B | 25978 | This gene encodes a component of the heteromeric ESCRT-III complex (Endosomal Sorting Complex Required for Transport III) that functions in the recycling or degradation of cell surface receptors. ESCRT-III functions in the concentration and invagination of ubiquitinated endosomal cargos into intralumenal vesicles. The protein encoded by this gene is found as a monomer in the cytosol or as an oligomer in ESCRT-III complexes on endosomal membranes. It is expressed in neurons of all major regions of the brain. Mutations in this gene result in one form of familial frontotemporal lobar degeneration. |
| NA | ENSG00000163320 | CGGBP1 | CGG triplet repeat binding protein 1 | 8545 | CGGBP1 influences expression of the FMR1 gene (MIM 309550), which is associated with the fragile X mental retardation syndrome (MIM 300624), by specifically interacting with the 5-prime (CGG)n-3-prime repeat in its 5-prime UTR. |
| NA | ENSG00000229729 | RP11-159G9.5 | NA | ENSG00000229729 | NA |
| NA | ENSG00000175105 | ZNF654 | zinc finger protein 654 | 55279 | NA |
| NA | ENSG00000179021 | C3orf38 | chromosome 3 open reading frame 38 | 285237 | NA |
| NA | ENSG00000184500 | PROS1 | protein S (alpha) | 5627 | This gene encodes a vitamin K-dependent plasma protein that functions as a cofactor for the anticoagulant protease, activated protein C (APC) to inhibit blood coagulation. It is found in plasma in both a free, functionally active form and also in an inactive form complexed with C4b-binding protein. Mutations in this gene result in autosomal dominant hereditary thrombophilia. An inactive pseudogene of this locus is located at an adjacent region on chromosome 3. Alternative splicing results in multiple transcript variants encoding different isoforms that may undergo similar processing to generate mature protein. |
| NA | ENSG00000169379 | ARL13B | ADP ribosylation factor like GTPase 13B | 200894 | This gene encodes a member of the ADP-ribosylation factor-like family. The encoded protein is a small GTPase that contains both N-terminal and C-terminal guanine nucleotide-binding motifs. This protein is localized in the cilia and plays a role in cilia formation and in maintenance of cilia. Mutations in this gene are the cause of Joubert syndrome 8. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000178700 | DHFRL1 | dihydrofolate reductase like 1 | 200895 | NA |
| NA | ENSG00000178694 | NSUN3 | NOP2/Sun RNA methyltransferase family member 3 | 63899 | NA |
| NA | ENSG00000269028 | MTRNR2L2 | MT-RNR2-like 2 | 100462981 | NA |
| NA | ENSG00000113966 | ARL6 | ADP ribosylation factor like GTPase 6 | 84100 | The protein encoded by this gene belongs to the ARF-like (ADP ribosylation factor-like) sub-family of the ARF family of GTP-binding proteins which are involved in regulation of intracellular traffic. Mutations in this gene are associated with Bardet-Biedl syndrome (BBS). Alternative splicing results in multiple transcript variants of this gene. A vision-specific transcript encoding a different protein has been described (PMID: 20333246). |
| TRUE | ENSG00000233280 | NA | NA | NA | NA |
| NA | ENSG00000080200 | CRYBG3 | crystallin beta-gamma domain containing 3 | 131544 | NA |
| NA | ENSG00000170854 | MINA | MYC induced nuclear antigen | 84864 | MINA is a c-Myc (MYC; MIM 190080) target gene that may play a role in cell proliferation or regulation of cell growth. (Tsuneoka et al., 2002 [PubMed 12091391]; Zhang et al., 2005 [PubMed 15897898]). |
| NA | ENSG00000080822 | CLDND1 | claudin domain containing 1 | 56650 | NA |
| NA | ENSG00000080819 | CPOX | coproporphyrinogen oxidase | 1371 | The protein encoded by this gene is the sixth enzyme of the heme biosynthetic pathway. The encoded enzyme is soluble and found in the intermembrane space of mitochondria. This enzyme catalyzes the stepwise oxidative decarboxylation of coproporphyrinogen III to protoporphyrinogen IX, a precursor of heme. Defects in this gene are a cause of hereditary coproporphyria (HCP). |
| NA | ENSG00000064225 | ST3GAL6 | ST3 beta-galactoside alpha-2,3-sialyltransferase 6 | 10402 | The protein encoded by this gene is a member of the sialyltransferase family. Members of this family are enzymes that transfer sialic acid from the activated cytidine 5’-monophospho-N-acetylneuraminic acid to terminal positions on sialylated glycolipids (gangliosides) or to the N- or O-linked sugar chains of glycoproteins. This protein has high specificity for neolactotetraosylceramide and neolactohexaosylceramide as glycolipid substrates and may contribute to the formation of selectin ligands and sialyl Lewis X, a carbohydrate important for cell-to-cell recognition and a blood group antigen. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000057019 | DCBLD2 | discoidin, CUB and LCCL domain containing 2 | 131566 | NA |
| NA | ENSG00000184220 | CMSS1 | cms1 ribosomal small subunit homolog (yeast) | 84319 | NA |
| NA | ENSG00000036054 | TBC1D23 | TBC1 domain family member 23 | 55773 | NA |
| NA | ENSG00000114021 | NIT2 | nitrilase family member 2 | 56954 | NA |
| NA | ENSG00000154174 | TOMM70 | translocase of outer mitochondrial membrane 70 | 9868 | This gene encodes an import receptor of the outer mitochondrial membrane that is part of the translocase of the outer membrane complex. This protein is involved in the import of mitochondrial precursor proteins. |
| NA | ENSG00000206535 | LNP1 | leukemia NUP98 fusion partner 1 | 348801 | NA |
| NA | ENSG00000181458 | TMEM45A | transmembrane protein 45A | 55076 | NA |
| NA | ENSG00000114354 | TFG | TRK-fused gene | 10342 | There are several documented fusion oncoproteins encoded partially by this gene. This gene also participates in several oncogenic rearrangements resulting in anaplastic lymphoma and mixoid chondrosarcoma, and may play a role in the NF-kappaB pathway. Multiple transcript variants have been found for this gene. |
| NA | ENSG00000138468 | SENP7 | SUMO1/sentrin specific peptidase 7 | 57337 | The reversible posttranslational modification of proteins by the addition of small ubiquitin-like SUMO proteins (see SUMO1; MIM 601912) is required for many cellular processes. SUMO-specific proteases, such as SENP7, process SUMO precursors to generate a C-terminal diglycine motif required for the conjugation reaction. They also display isopeptidase activity for deconjugation of SUMO-conjugated substrates (Lima and Reverter, 2008 [PubMed 18799455]). |
| NA | ENSG00000174173 | TRMT10C | tRNA methyltransferase 10C, mitochondrial RNase P subunit | 54931 | This gene encodes the precursor of a subunit of the mitochondrial ribonuclease P, which is involved in 5’ processing of mitochondrial tRNAs. The encoded protein may confer RNA-binding capacity to mitochondrial ribonuclease P and may be essential for transcript processing, RNA modification, translation and mitochondrial respiration. |
| NA | ENSG00000081154 | PCNP | PEST proteolytic signal containing nuclear protein | 57092 | NA |
| NA | ENSG00000066422 | ZBTB11 | zinc finger and BTB domain containing 11 | 27107 | NA |
| NA | ENSG00000114391 | RPL24 | ribosomal protein L24 | 6152 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L24E family of ribosomal proteins. It is located in the cytoplasm. This gene has been referred to as ribosomal protein L30 because the encoded protein shares amino acid identity with the L30 ribosomal proteins from S. cerevisiae; however, its official name is ribosomal protein L24. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000182504 | CEP97 | centrosomal protein 97kDa | 79598 | NA |
| NA | ENSG00000144802 | NFKBIZ | NFKB inhibitor zeta | 64332 | This gene is a member of the ankyrin-repeat family and is induced by lipopolysaccharide (LPS). The C-terminal portion of the encoded product which contains the ankyrin repeats, shares high sequence similarity with the I kappa B family of proteins. The latter are known to play a role in inflammatory responses to LPS by their interaction with NF-B proteins through ankyrin-repeat domains. Studies in mouse indicate that this gene product is one of the nuclear I kappa B proteins and an activator of IL-6 production. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000170017 | ALCAM | activated leukocyte cell adhesion molecule | 214 | This gene encodes activated leukocyte cell adhesion molecule (ALCAM), also known as CD166 (cluster of differentiation 166), which is a member of a subfamily of immunoglobulin receptors with five immunoglobulin-like domains (VVC2C2C2) in the extracellular domain. This protein binds to T-cell differentiation antigene CD6, and is implicated in the processes of cell adhesion and migration. Multiple alternatively spliced transcript variants encoding different isoforms have been found. |
| NA | ENSG00000114423 | CBLB | Cbl proto-oncogene B, E3 ubiquitin protein ligase | 868 | NA |
| NA | ENSG00000196776 | CD47 | CD47 molecule | 961 | This gene encodes a membrane protein, which is involved in the increase in intracellular calcium concentration that occurs upon cell adhesion to extracellular matrix. The encoded protein is also a receptor for the C-terminal cell binding domain of thrombospondin, and it may play a role in membrane transport and signal transduction. This gene has broad tissue distribution, and is reduced in expression on Rh erythrocytes. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000114446 | IFT57 | intraflagellar transport 57 | 55081 | NA |
| NA | ENSG00000163507 | KIAA1524 | KIAA1524 | 57650 | NA |
| NA | ENSG00000198919 | DZIP3 | DAZ interacting zinc finger protein 3 | 9666 | NA |
| NA | ENSG00000163530 | DPPA2 | developmental pluripotency associated 2 | 151871 | NA |
| NA | ENSG00000121570 | DPPA4 | developmental pluripotency associated 4 | 55211 | NA |
| NA | ENSG00000177707 | NECTIN3 | nectin cell adhesion molecule 3 | 25945 | This gene encodes a member of the nectin family of proteins, which function as adhesion molecules at adherens junctions. This family member interacts with other nectin-like proteins and with afadin, a filamentous actin-binding protein involved in the regulation of directional motility, cell proliferation and survival. This gene plays a role in ocular development involving the ciliary body. Mutations in this gene are believed to result in congenital ocular defects. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000144824 | PHLDB2 | pleckstrin homology like domain family B member 2 | 90102 | NA |
| NA | ENSG00000144827 | ABHD10 | abhydrolase domain containing 10 | 55347 | This gene encodes a mitochondrially-localized enzyme that acts in liver cells as a hydrolase. The encoded protein removes glucuronide from mycophenolic acid acyl-glucuronide. There is a pseudogene for this gene on chromosome 6. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000144834 | TAGLN3 | transgelin 3 | 29114 | NA |
| NA | ENSG00000114529 | C3orf52 | chromosome 3 open reading frame 52 | 79669 | NA |
| NA | ENSG00000172139 | SLC9C1 | solute carrier family 9 member C1 | 285335 | SLC9A10 is a member of the sodium-hydrogen exchanger (NHE) family (see SLC9A1, MIM 107310) and is required for male fertility and sperm motility (Wang et al., 2003 [PubMed 14634667]). |
| NA | ENSG00000091972 | CD200 | CD200 molecule | 4345 | This gene encodes a type I membrane glycoprotein containing two extracellular immunoglobulin domains, a transmembrane and a cytoplasmic domain. This gene is expressed by various cell types, including B cells, a subset of T cells, thymocytes, endothelial cells, and neurons. The encoded protein plays an important role in immunosuppression and regulation of anti-tumor activity. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000138459 | SLC35A5 | solute carrier family 35 member A5 | 55032 | NA |
| NA | ENSG00000144857 | BOC | BOC cell adhesion associated, oncogene regulated | 91653 | The protein encoded by this gene is a member of the immunoglobulin/fibronectin type III repeat family. It is a component of a cell-surface receptor complex that mediates cell-cell interactions between muscle precursor cells, and promotes myogenic differentiation. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000206530 | CFAP44 | cilia and flagella associated protein 44 | 55779 | NA |
| NA | ENSG00000163611 | SPICE1 | spindle and centriole associated protein 1 | 152185 | NA |
| NA | ENSG00000176542 | USF3 | upstream transcription factor family member 3 | 205717 | NA |
| NA | ENSG00000121579 | NAA50 | N(alpha)-acetyltransferase 50, NatE catalytic subunit | 80218 | NA |
| NA | ENSG00000114573 | ATP6V1A | ATPase H+ transporting V1 subunit A | 523 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A and three B subunits, two G subunits plus the C, D, E, F, and H subunits. The V1 domain contains the ATP catalytic site. The V0 domain consists of five different subunits: a, c, c’, c’, and d. Additional isoforms of many of the V1 and V0 subunit proteins are encoded by multiple genes or alternatively spliced transcript variants. This encoded protein is one of two V1 domain A subunit isoforms and is found in all tissues. Transcript variants derived from alternative polyadenylation exist. |
| NA | ENSG00000178075 | GRAMD1C | GRAM domain containing 1C | 54762 | NA |
| NA | ENSG00000184307 | ZDHHC23 | zinc finger DHHC-type containing 23 | 254887 | NA |
| NA | ENSG00000163617 | CCDC191 | coiled-coil domain containing 191 | 57577 | NA |
| NA | ENSG00000151576 | QTRT2 | queuine tRNA-ribosyltransferase accessory subunit 2 | 79691 | This gene encodes a subunit of tRNA-guanine transglycosylase. tRNA-guanine transglycosylase is a heterodimeric enzyme complex that plays a critical role in tRNA modification by synthesizing the 7-deazaguanosine queuosine, which is found in tRNAs that code for asparagine, aspartic acid, histidine, and tyrosine. The encoded protein may play a role in the queuosine 5’-monophosphate salvage pathway. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000181722 | ZBTB20 | zinc finger and BTB domain containing 20 | 26137 | NA |
| NA | ENSG00000172020 | GAP43 | growth associated protein 43 | 2596 | The protein encoded by this gene has been termed a ‘growth’ or ‘plasticity’ protein because it is expressed at high levels in neuronal growth cones during development and axonal regeneration. This protein is considered a crucial component of an effective regenerative response in the nervous system. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000185565 | LSAMP | limbic system-associated membrane protein | 4045 | This gene encodes a member of the immunoglobulin LAMP, OBCAM and neurotrimin (IgLON) family of proteins. The encoded preproprotein is proteolytically processed to generate a neuronal surface glycoprotein. This protein may act as a selective homophilic adhesion molecule during axon guidance and neuronal growth in the developing limbic system. The encoded protein may also function as a tumor suppressor and may play a role in neuropsychiatric disorders. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed. |
| NA | ENSG00000031081 | ARHGAP31 | Rho GTPase activating protein 31 | 57514 | This gene encodes a GTPase-activating protein (GAP). A variety of cellular processes are regulated by Rho GTPases which cycle between an inactive form bound to GDP and an active form bound to GTP. This cycling between inactive and active forms is regulated by guanine nucleotide exchange factors and GAPs. The encoded protein is a GAP shown to regulate two GTPases involved in protein trafficking and cell growth. |
| NA | ENSG00000176142 | TMEM39A | transmembrane protein 39A | 55254 | NA |
| NA | ENSG00000163389 | POGLUT1 | protein O-glucosyltransferase 1 | 56983 | This gene encodes a protein with both O-glucosyltransferase and O-xylosyltransferase activity which localizes to the lumen of the endoplasmic reticulum. This protein has a carboxy-terminal KTEL motif which is predicted to function as an endoplasmic reticulum retention signal. This gene is an essential regulator of Notch signalling and likely plays a role in cell fate and tissue formation during development. It may also play a role in the pathogenesis of leukemia. Mutations in this gene have been associated with the autosomal dominant genodermatosis Dowling-Degos disease 4. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000113845 | TIMMDC1 | translocase of inner mitochondrial membrane domain containing 1 | 51300 | NA |
| NA | ENSG00000144843 | ADPRH | ADP-ribosylarginine hydrolase | 141 | The enzyme encoded by this gene catalyzes removal of mono-ADP-ribose from arginine residues of proteins in the ADP-ribosylation cycle. Unlike the rat and mouse enzymes that require DTT for maximal activity, the human enzyme is DTT-independent. Alternatively spliced transcript variants that encode different protein isoforms have been described. |
| NA | ENSG00000138495 | COX17 | COX17 cytochrome c oxidase copper chaperone | 10063 | Cytochrome c oxidase (COX), the terminal component of the mitochondrial respiratory chain, catalyzes the electron transfer from reduced cytochrome c to oxygen. This component is a heteromeric complex consisting of 3 catalytic subunits encoded by mitochondrial genes and multiple structural subunits encoded by nuclear genes. The mitochondrially-encoded subunits function in electron transfer, and the nuclear-encoded subunits may function in the regulation and assembly of the complex. This nuclear gene encodes a protein which is not a structural subunit, but may be involved in the recruitment of copper to mitochondria for incorporation into the COX apoenzyme. This protein shares 92% amino acid sequence identity with mouse and rat Cox17 proteins. This gene is no longer considered to be a candidate gene for COX deficiency. A pseudogene COX17P has been found on chromosome 13. |
| NA | ENSG00000183833 | MAATS1 | MYCBP-associated, testis expressed 1 | 89876 | NA |
| NA | ENSG00000082701 | GSK3B | glycogen synthase kinase 3 beta | 2932 | The protein encoded by this gene is a serine-threonine kinase, belonging to the glycogen synthase kinase subfamily. It is involved in energy metabolism, neuronal cell development, and body pattern formation. Polymorphisms in this gene have been implicated in modifying risk of Parkinson disease, and studies in mice show that overexpression of this gene may be relevant to the pathogenesis of Alzheimer disease. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000145087 | STXBP5L | syntaxin binding protein 5 like | 9515 | NA |
| NA | ENSG00000051341 | POLQ | polymerase (DNA) theta | 10721 | NA |
| NA | ENSG00000173230 | GOLGB1 | golgin B1 | 2804 | NA |
| NA | ENSG00000173226 | IQCB1 | IQ motif containing B1 | 9657 | This gene encodes a nephrocystin protein that interacts with calmodulin and the retinitis pigmentosa GTPase regulator protein. The encoded protein has a central coiled-coil region and two calmodulin-binding IQ domains. It is localized to the primary cilia of renal epithelial cells and connecting cilia of photoreceptor cells. The protein is thought to play a role in ciliary function. Defects in this gene result in Senior-Loken syndrome type 5. Alternative splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 6. |
| NA | ENSG00000145088 | EAF2 | ELL associated factor 2 | 55840 | NA |
| NA | ENSG00000163406 | SLC15A2 | solute carrier family 15 member 2 | 6565 | The mammalian kidney expresses a proton-coupled peptide transporter that is responsible for the absorption of small peptides, as well as beta-lactam antibiotics and other peptide-like drugs, from the tubular filtrate. This transporter, SLC15A2, belongs to the same gene family as SLC15A1 (MIM 600544), the proton-coupled peptide transporter found in the small intestine (Liu et al, 1995 [PubMed 7756356]). |
| NA | ENSG00000160124 | CCDC58 | coiled-coil domain containing 58 | 131076 | NA |
| NA | ENSG00000114023 | FAM162A | family with sequence similarity 162 member A | 26355 | NA |
| NA | ENSG00000196981 | WDR5B | WD repeat domain 5B | 54554 | This intronless gene encodes a protein containing several WD40 repeats. WD repeats are approximately 30- to 40-amino acid domains containing several conserved residues, including a trp-asp at the C-terminal end. The encoded protein may mediate protein-protein interactions. |
| NA | ENSG00000138496 | PARP9 | poly(ADP-ribose) polymerase family member 9 | 83666 | NA |
| NA | ENSG00000163840 | DTX3L | deltex 3 like, E3 ubiquitin ligase | 151636 | DTX3L functions as an E3 ubiquitin ligase (Takeyama et al., 2003 [PubMed 12670957]). |
| NA | ENSG00000173193 | PARP14 | poly(ADP-ribose) polymerase family member 14 | 54625 | Poly(ADP-ribosyl)ation is an immediate DNA damage-dependent posttranslational modification of histones and other nuclear proteins that contributes to the survival of injured proliferating cells. PARP14 belongs to the superfamily of enzymes that perform this modification (Ame et al., 2004 [PubMed 15273990]). |
| NA | ENSG00000169087 | HSPBAP1 | HSPB1 associated protein 1 | 79663 | This gene encodes a protein that binds to one of the small heat shock proteins, specifically hsp27. Hsp27 is involved with cell growth and differentiation. This encoded protein was found to be abnormally expressed in patients with intractable epilepsy, although how brain function is affected remains unknown. |
| NA | ENSG00000138463 | DIRC2 | disrupted in renal carcinoma 2 | 84925 | This gene encodes a membrane-bound protein from the major facilitator superfamily of transporters. Disruption of this gene by translocation has been associated with haplo-insufficiency and renal cell carcinomas. Alternatively spliced transcript variants have been described, but their biological validity has not yet been determined. |
| NA | ENSG00000082684 | SEMA5B | semaphorin 5B | 54437 | This gene encodes a member of the semaphorin protein family which regulates axon growth during development of the nervous system. The encoded protein has a characteristic Sema domain near the N-terminus, through which semaphorins bind to plexin, and five thrombospondin type 1 repeats in the C-terminal region of the protein. The protein product may be cleaved and exist as a secreted molecule (PMID: 19463192). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000065485 | PDIA5 | protein disulfide isomerase family A member 5 | 10954 | NA |
| NA | ENSG00000121542 | SEC22A | SEC22 homolog A, vesicle trafficking protein | 26984 | The protein encoded by this gene belongs to the member of the SEC22 family of vesicle trafficking proteins. This protein has similarity to rat SEC22 and may act in the early stages of the secretory pathway. |
| NA | ENSG00000173175 | ADCY5 | adenylate cyclase 5 | 111 | This gene encodes a member of the membrane-bound adenylyl cyclase enzymes. Adenylyl cyclases mediate G protein-coupled receptor signaling through the synthesis of the second messenger cAMP. Activity of the encoded protein is stimulated by the Gs alpha subunit of G protein-coupled receptors and is inhibited by protein kinase A, calcium and Gi alpha subunits. Single nucleotide polymorphisms in this gene may be associated with low birth weight and type 2 diabetes. Alternatively spliced transcript variants that encode different isoforms have been observed for this gene. |
| NA | ENSG00000065534 | MYLK | myosin light chain kinase | 4638 | This gene, a muscle member of the immunoglobulin gene superfamily, encodes myosin light chain kinase which is a calcium/calmodulin dependent enzyme. This kinase phosphorylates myosin regulatory light chains to facilitate myosin interaction with actin filaments to produce contractile activity. This gene encodes both smooth muscle and nonmuscle isoforms. In addition, using a separate promoter in an intron in the 3’ region, it encodes telokin, a small protein identical in sequence to the C-terminus of myosin light chain kinase, that is independently expressed in smooth muscle and functions to stabilize unphosphorylated myosin filaments. A pseudogene is located on the p arm of chromosome 3. Four transcript variants that produce four isoforms of the calcium/calmodulin dependent enzyme have been identified as well as two transcripts that produce two isoforms of telokin. Additional variants have been identified but lack full length transcripts. |
| NA | ENSG00000175455 | CCDC14 | coiled-coil domain containing 14 | 64770 | NA |
| NA | ENSG00000160145 | KALRN | kalirin, RhoGEF kinase | 8997 | Huntington’s disease (HD), a neurodegenerative disorder characterized by loss of striatal neurons, is caused by an expansion of a polyglutamine tract in the HD protein huntingtin. This gene encodes a protein that interacts with the huntingtin-associated protein 1, which is a huntingtin binding protein that may function in vesicle trafficking. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000114491 | UMPS | uridine monophosphate synthetase | 7372 | This gene encodes a uridine 5’-monophosphate synthase. The encoded protein is a bifunctional enzyme that catalyzes the final two steps of the de novo pyrimidine biosynthetic pathway. The first reaction is carried out by the N-terminal enzyme orotate phosphoribosyltransferase which converts orotic acid to orotidine-5’-monophosphate. The terminal reaction is carried out by the C-terminal enzyme OMP decarboxylase which converts orotidine-5’-monophosphate to uridine monophosphate. Defects in this gene are the cause of hereditary orotic aciduria. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000082781 | ITGB5 | integrin subunit beta 5 | 3693 | NA |
| NA | ENSG00000221955 | SLC12A8 | solute carrier family 12 member 8 | 84561 | This gene is thought to be a candidate for psoriasis susceptibility. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000163848 | ZNF148 | zinc finger protein 148 | 7707 | NA |
| NA | ENSG00000114520 | SNX4 | sorting nexin 4 | 8723 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein associated with the long isoform of the leptin receptor and with receptor tyrosine kinases for platelet-derived growth factor, insulin, and epidermal growth factor in cell cultures, but its function is unknown. This protein may form oligomeric complexes with family members. Two transcript variants, one protein coding and the other non-protein coding, have been found for this gene. |
| NA | ENSG00000144909 | OSBPL11 | oxysterol binding protein like 11 | 114885 | This gene encodes a member of the oxysterol-binding protein (OSBP) family, a group of intracellular lipid receptors. Like most members, the encoded protein contains an N-terminal pleckstrin homology domain and a highly conserved C-terminal OSBP-like sterol-binding domain. |
| NA | ENSG00000114544 | SLC41A3 | solute carrier family 41 member 3 | 54946 | NA |
| NA | ENSG00000163884 | KLF15 | Kruppel-like factor 15 | 28999 | NA |
| NA | ENSG00000070476 | ZXDC | ZXD family zinc finger C | 79364 | NA |
| NA | ENSG00000180767 | CHST13 | carbohydrate (chondroitin 4) sulfotransferase 13 | 166012 | The protein encoded by this gene belongs to the sulfotransferase 2 family. It is localized to the golgi membrane, and catalyzes the transfer of sulfate to the C4 hydroxyl of beta-1,4-linked N-acetylgalactosamine (GalNAc) flanked by glucuronic acid residue in chondroitin. Chondroitin sulfate constitutes the predominant proteoglycan present in cartilage and is distributed on the surfaces of many cells and extracellular matrices. |
| NA | ENSG00000197763 | TXNRD3NB | thioredoxin reductase 3 neighbor | 645840 | NA |
| NA | ENSG00000197763 | TXNRD3 | thioredoxin reductase 3 | 114112 | This gene encodes a member of the family of pyridine nucleotide oxidoreductases. This protein catalyzes the reduction of thioredoxin, and is implicated in the defense against oxidative stress. It contains a selenocysteine (Sec) residue (which is essential for catalytic activity), encoded by a UGA codon, at the penultimate C-terminal position. The 3’ UTR of Sec-containing genes have a common stem-loop structure, the sec insertion sequence (SECIS), which is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000159685 | CHCHD6 | coiled-coil-helix-coiled-coil-helix domain containing 6 | 84303 | NA |
| NA | ENSG00000114554 | PLXNA1 | plexin A1 | 5361 | NA |
| NA | ENSG00000163870 | TPRA1 | transmembrane protein adipocyte associated 1 | 131601 | NA |
| NA | ENSG00000073111 | MCM2 | minichromosome maintenance complex component 2 | 4171 | The protein encoded by this gene is one of the highly conserved mini-chromosome maintenance proteins (MCM) that are involved in the initiation of eukaryotic genome replication. The hexameric protein complex formed by MCM proteins is a key component of the pre-replication complex (pre_RC) and may be involved in the formation of replication forks and in the recruitment of other DNA replication related proteins. This protein forms a complex with MCM4, 6, and 7, and has been shown to regulate the helicase activity of the complex. This protein is phosphorylated, and thus regulated by, protein kinases CDC2 and CDC7. Multiple alternatively spliced transcript variants have been found, but the full-length nature of some variants has not been defined. |
| NA | ENSG00000114631 | PODXL2 | podocalyxin like 2 | 50512 | This gene is a member of the CD34 family of cell surface transmembrane proteins, which are characterized by an N-terminal extracellular mucin domain, globular and stalk domains, a single pass transmembrane region, and a charged cytoplasmic tail. The encoded protein is a ligand for vascular selectins. |
| NA | ENSG00000114626 | ABTB1 | ankyrin repeat and BTB domain containing 1 | 80325 | This gene encodes a protein with an ankyrin repeat region and two BTB/POZ domains, which are thought to be involved in protein-protein interactions. Expression of this gene is activated by the phosphatase and tensin homolog, a tumor suppressor. Alternate splicing results in three transcript variants. |
| NA | ENSG00000058262 | SEC61A1 | Sec61 translocon alpha 1 subunit | 29927 | The protein encoded by this gene belongs to the SECY/SEC61- alpha family. It appears to play a crucial role in the insertion of secretory and membrane polypeptides into the endoplasmic reticulum. This protein found to be tightly associated with membrane-bound ribosomes, either directly or through adaptor proteins. This gene encodes an alpha subunit of the heteromeric SEC61 complex, which also contains beta and gamma subunits. |
| NA | ENSG00000175792 | RUVBL1 | RuvB like AAA ATPase 1 | 8607 | This gene encodes a protein that has both DNA-dependent ATPase and DNA helicase activities and belongs to the ATPases associated with diverse cellular activities (AAA+) protein family. The encoded protein associates with several multisubunit transcriptional complexes and with protein complexes involved in both ATP-dependent remodeling and histone modification. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000132394 | EEFSEC | eukaryotic elongation factor, selenocysteine-tRNA-specific | 60678 | NA |
| NA | ENSG00000163902 | RPN1 | ribophorin I | 6184 | This gene encodes a type I integral membrane protein found only in the rough endoplasmic reticulum. The encoded protein is part of an N-oligosaccharyl transferase complex that links high mannose oligosaccharides to asparagine residues found in the Asn-X-Ser/Thr consensus motif of nascent polypeptide chains. This protein forms part of the regulatory subunit of the 26S proteasome and may mediate binding of ubiquitin-like domains to this proteasome. |
| NA | ENSG00000075785 | RAB7A | RAB7A, member RAS oncogene family | 7879 | RAB family members are small, RAS-related GTP-binding proteins that are important regulators of vesicular transport. Each RAB protein targets multiple proteins that act in exocytic / endocytic pathways. This gene encodes a RAB family member that regulates vesicle traffic in the late endosomes and also from late endosomes to lysosomes. This encoded protein is also involved in the cellular vacuolation of the VacA cytotoxin of Helicobacter pylori. Mutations at highly conserved amino acid residues in this gene have caused some forms of Charcot-Marie-Tooth (CMT) type 2 neuropathies. |
| NA | ENSG00000177646 | ACAD9 | acyl-CoA dehydrogenase family member 9 | 28976 | This gene encodes a member of the acyl-CoA dehydrogenase family. Members of this family of proteins localize to the mitochondria and catalyze the rate-limiting step in the beta-oxidation of fatty acyl-CoA. The encoded protein is specifically active toward palmitoyl-CoA and long-chain unsaturated substrates. Mutations in this gene cause acyl-CoA dehydrogenase family member type 9 deficiency. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000114656 | KIAA1257 | KIAA1257 | 57501 | NA |
| NA | ENSG00000240682 | ISY1 | ISY1 splicing factor homolog | 57461 | NA |
| NA | ENSG00000169714 | CNBP | CCHC-type zinc finger, nucleic acid binding protein | 7555 | This gene encodes a nucleic-acid binding protein with seven zinc-finger domains. The protein has a preference for binding single stranded DNA and RNA. The protein functions in cap-independent translation of ornithine decarboxylase mRNA, and may also function in sterol-mediated transcriptional regulation. A CCTG expansion in the first intron of this gene results in myotonic dystrophy type 2. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000181789 | COPG1 | coatomer protein complex subunit gamma 1 | 22820 | NA |
| NA | ENSG00000183624 | HMCES | 5-hydroxymethylcytosine (hmC) binding, ES cell-specific | 56941 | NA |
| NA | ENSG00000184897 | H1FX | H1 histone family member X | 8971 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene encodes a replication-independent histone that is a member of the histone H1 family. |
| NA | ENSG00000163913 | IFT122 | intraflagellar transport 122 | 55764 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This cytoplasmic protein contains seven WD repeats and an AF-2 domain which function by recruiting coregulatory molecules and in transcriptional activation. Mutations in this gene cause cranioectodermal dysplasia-1. A related pseudogene is located on chromosome 3. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000004399 | PLXND1 | plexin D1 | 23129 | NA |
| NA | ENSG00000172765 | TMCC1 | transmembrane and coiled-coil domain family 1 | 23023 | NA |
| NA | ENSG00000196455 | PIK3R4 | phosphoinositide-3-kinase regulatory subunit 4 | 30849 | NA |
| NA | ENSG00000017260 | ATP2C1 | ATPase secretory pathway Ca2+ transporting 1 | 27032 | The protein encoded by this gene belongs to the family of P-type cation transport ATPases. This magnesium-dependent enzyme catalyzes the hydrolysis of ATP coupled with the transport of calcium ions. Defects in this gene cause Hailey-Hailey disease, an autosomal dominant disorder. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000034533 | ASTE1 | asteroid homolog 1 (Drosophila) | 28990 | NA |
| NA | ENSG00000198585 | NUDT16 | nudix hydrolase 16 | 131870 | NA |
| NA | ENSG00000114686 | MRPL3 | mitochondrial ribosomal protein L3 | 11222 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein that belongs to the L3P ribosomal protein family. A pseudogene corresponding to this gene is found on chromosome 13q. |
| NA | ENSG00000196353 | CPNE4 | copine 4 | 131034 | This gene belongs to the highly conserved copine family. It encodes a calcium-dependent, phospholipid-binding protein, which may be involved in membrane trafficking, mitogenesis and development. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000138246 | DNAJC13 | DnaJ heat shock protein family (Hsp40) member C13 | 23317 | NA |
| NA | ENSG00000240303 | ACAD11 | acyl-CoA dehydrogenase family member 11 | 84129 | This gene encodes an acyl-CoA dehydrogenase enzyme with a preference for carbon chain lengths between 20 and 26. Naturally occurring read-through transcription occurs between the upstream gene NPHP3 (nephronophthisis 3 (adolescent)) and this gene. |
| NA | ENSG00000113971 | NPHP3 | nephronophthisis 3 (adolescent) | 27031 | This gene encodes a protein containing a coiled-coil (CC) domain, a tubulin-tyrosine ligase (TTL) domain, and a tetratrico peptide repeat (TPR) domain. The encoded protein interacts with nephrocystin, it is required for normal ciliary development, and it functions in renal tubular development. Mutations in this gene are associated with nephronophthisis type 3, and also with renal-hepatic-pancreatic dysplasia, and Meckel syndrome type 7. Naturally occurring read-through transcripts exist between this gene and the downstream ACAD11 (acyl-CoA dehydrogenase family, member 11) gene. |
| NA | ENSG00000081307 | UBA5 | ubiquitin like modifier activating enzyme 5 | 79876 | This gene encodes a member of the E1-like ubiquitin-activating enzyme family. This protein activates ubiquitin-fold modifier 1, a ubiquitin-like post-translational modifier protein, via the formation of a high-energy thioester bond. Alternative splicing results in multiple transcript variants. A pseudogene of this gene has been identified on chromosome 1. |
| NA | ENSG00000091527 | CDV3 | CDV3 homolog (mouse) | 55573 | NA |
| NA | ENSG00000163781 | TOPBP1 | topoisomerase (DNA) II binding protein 1 | 11073 | This gene encodes a binding protein which interacts with the C-terminal region of topoisomerase II beta. This interaction suggests a supportive role for this protein in the catalytic reactions of topoisomerase II beta through transient breakages of DNA strands. |
| NA | ENSG00000154917 | RAB6B | RAB6B, member RAS oncogene family | 51560 | NA |
| NA | ENSG00000163785 | RYK | receptor-like tyrosine kinase | 6259 | The protein encoded by this gene is an atypical member of the family of growth factor receptor protein tyrosine kinases, differing from other members at a number of conserved residues in the activation and nucleotide binding domains. This gene product belongs to a subfamily whose members do not appear to be regulated by phosphorylation in the activation segment. It has been suggested that mediation of biological activity by recruitment of a signaling-competent auxiliary protein may occur through an as yet uncharacterized mechanism. The encoded protein has a leucine-rich extracellular domain with a WIF-type Wnt binding region, a single transmembrane domain, and an intracellular tyrosine kinase domain. This protein is involved in stimulating Wnt signaling pathways such as the regulation of axon pathfinding. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000114019 | AMOTL2 | angiomotin like 2 | 51421 | Angiomotin is a protein that binds angiostatin, a circulating inhibitor of the formation of new blood vessels (angiogenesis). Angiomotin mediates angiostatin inhibition of endothelial cell migration and tube formation in vitro. The protein encoded by this gene is related to angiomotin and is a member of the motin protein family. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000154928 | EPHB1 | EPH receptor B1 | 2047 | Ephrin receptors and their ligands, the ephrins, mediate numerous developmental processes, particularly in the nervous system. Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. The Eph family of receptors are divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. Ephrin receptors make up the largest subgroup of the receptor tyrosine kinase (RTK) family. The protein encoded by this gene is a receptor for ephrin-B family members. |
| NA | ENSG00000073711 | PPP2R3A | protein phosphatase 2 regulatory subunit B’’, alpha | 5523 | This gene encodes one of the regulatory subunits of the protein phosphatase 2. Protein phosphatase 2 (formerly named type 2A) is one of the four major Ser/Thr phosphatases and is implicated in the negative control of cell growth and division. Protein phosphatase 2 holoenzymes are heterotrimeric proteins composed of a structural subunit A, a catalytic subunit C, and a regulatory subunit B. The regulatory subunit is encoded by a diverse set of genes that have been grouped into the B/PR55, B’/PR61, and B’‘/PR72 families. These different regulatory subunits confer distinct enzymatic specificities and intracellular localizations to the holozenzyme. The product of this gene belongs to the B’‘family. The B’‘family has been further divided into subfamilies. The product of this gene belongs to the alpha subfamily of regulatory subunit B’’. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000174579 | MSL2 | male-specific lethal 2 homolog (Drosophila) | 55167 | NA |
| NA | ENSG00000118007 | STAG1 | stromal antigen 1 | 10274 | This gene is a member of the SCC3 family and is expressed in the nucleus. It encodes a component of cohesin, a multisubunit protein complex that provides sister chromatid cohesion along the length of a chromosome from DNA replication through prophase and prometaphase, after which it is dissociated in preparation for segregation during anaphase. |
| NA | ENSG00000168917 | SLC35G2 | solute carrier family 35 member G2 | 80723 | NA |
| NA | ENSG00000158092 | NCK1 | NCK adaptor protein 1 | 4690 | The protein encoded by this gene is one of the signaling and transforming proteins containing Src homology 2 and 3 (SH2 and SH3) domains. It is located in the cytoplasm and is an adaptor protein involved in transducing signals from receptor tyrosine kinases to downstream signal recipients such as RAS. Alternatively spliced transcript variants encoding different isoforms have been found. |
| NA | ENSG00000158163 | DZIP1L | DAZ interacting zinc finger protein 1 like | 199221 | NA |
| NA | ENSG00000138231 | DBR1 | debranching RNA lariats 1 | 51163 | The protein encoded by this gene is an RNA lariat debranching enzyme that hydrolyzes 2’-5’ prime branched phosphodiester bonds. The encoded protein specifically targets the bonds at the branch point of excised lariat intron RNA, converting them to linear molecules that are then degraded. This protein may also be involved in retroviral replication. |
| NA | ENSG00000114098 | ARMC8 | armadillo repeat containing 8 | 25852 | NA |
| NA | ENSG00000158186 | MRAS | muscle RAS oncogene homolog | 22808 | This gene encodes a member of the Ras family of small GTPases. These membrane-associated proteins function as signal transducers in multiple processes including cell growth and differentiation, and dysregulation of Ras signaling has been associated with many types of cancer. The encoded protein may play a role in the tumor necrosis factor-alpha and MAP kinase signaling pathways. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000158220 | ESYT3 | extended synaptotagmin protein 3 | 83850 | NA |
| NA | ENSG00000114107 | CEP70 | centrosomal protein 70kDa | 80321 | NA |
| NA | ENSG00000158234 | FAIM | Fas apoptotic inhibitory molecule | 55179 | The protein encoded by this gene protects against death receptor-triggered apoptosis and regulates B-cell signaling and differentiation. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000051382 | PIK3CB | phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit beta | 5291 | This gene encodes an isoform of the catalytic subunit of phosphoinositide 3-kinase (PI3K). These kinases are important in signaling pathways involving receptors on the outer membrane of eukaryotic cells and are named for their catalytic subunit. The encoded protein is the catalytic subunit for PI3Kbeta (PI3KB). PI3KB has been shown to be part of the activation pathway in neutrophils which have bound immune complexes at sites of injury or infection. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000114115 | RBP1 | retinol binding protein 1 | 5947 | This gene encodes the carrier protein involved in the transport of retinol (vitamin A alcohol) from the liver storage site to peripheral tissue. Vitamin A is a fat-soluble vitamin necessary for growth, reproduction, differentiation of epithelial tissues, and vision. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000114120 | SLC25A36 | solute carrier family 25 member 36 | 55186 | NA |
| NA | ENSG00000175093 | SPSB4 | splA/ryanodine receptor domain and SOCS box containing 4 | 92369 | NA |
| NA | ENSG00000155893 | PXYLP1 | 2-phosphoxylose phosphatase 1 | 92370 | NA |
| NA | ENSG00000177311 | ZBTB38 | zinc finger and BTB domain containing 38 | 253461 | The protein encoded by this gene is a zinc finger transcriptional activator that binds methylated DNA. The encoded protein can form homodimers or heterodimers through the zinc finger domains. In mouse, inhibition of this protein has been associated with apoptosis in some cell types. |
| NA | ENSG00000155903 | RASA2 | RAS p21 protein activator 2 | 5922 | The protein encoded by this gene is member of the GAP1 family of GTPase-activating proteins. The gene product stimulates the GTPase activity of normal RAS p21 but not its oncogenic counterpart. Acting as a suppressor of RAS function, the protein enhances the weak intrinsic GTPase activity of RAS proteins resulting in the inactive GDP-bound form of RAS, thereby allowing control of cellular proliferation and differentiation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000114125 | RNF7 | ring finger protein 7 | 9616 | The protein encoded by this gene is a highly conserved ring finger protein. It is an essential subunit of SKP1-cullin/CDC53-F box protein ubiquitin ligases, which are a part of the protein degradation machinery important for cell cycle progression and signal transduction. This protein interacts with, and is a substrate of, casein kinase II (CSNK2A1/CKII). The phosphorylation of this protein by CSNK2A1 has been shown to promote the degradation of IkappaBalpha (CHUK/IKK-alpha/IKBKA) and p27Kip1(CDKN1B). Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000069849 | ATP1B3 | ATPase Na+/K+ transporting subunit beta 3 | 483 | The protein encoded by this gene belongs to the family of Na+/K+ and H+/K+ ATPases beta chain proteins, and to the subfamily of Na+/K+ -ATPases. Na+/K+ -ATPase is an integral membrane protein responsible for establishing and maintaining the electrochemical gradients of Na and K ions across the plasma membrane. These gradients are essential for osmoregulation, for sodium-coupled transport of a variety of organic and inorganic molecules, and for electrical excitability of nerve and muscle. This enzyme is composed of two subunits, a large catalytic subunit (alpha) and a smaller glycoprotein subunit (beta). The beta subunit regulates, through assembly of alpha/beta heterodimers, the number of sodium pumps transported to the plasma membrane. The glycoprotein subunit of Na+/K+ -ATPase is encoded by multiple genes. This gene encodes a beta 3 subunit. This gene encodes a beta 3 subunit. A pseudogene exists for this gene, and it is located on chromosome 2. |
| NA | ENSG00000114126 | TFDP2 | transcription factor Dp-2 (E2F dimerization partner 2) | 7029 | The gene is a member of the transcription factor DP family. The encoded protein forms heterodimers with the E2F transcription factors resulting in transcriptional activation of cell cycle regulated genes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175066 | GK5 | glycerol kinase 5 (putative) | 256356 | NA |
| NA | ENSG00000114127 | XRN1 | 5’-3’ exoribonuclease 1 | 54464 | This gene encodes a member of the 5’-3’ exonuclease family. The encoded protein may be involved in replication-dependent histone mRNA degradation, and interacts directly with the enhancer of mRNA-decapping protein 4. In addition to mRNA metabolism, a similar protein in yeast has been implicated in a variety of nuclear and cytoplasmic functions, including homologous recombination, meiosis, telomere maintenance, and microtubule assembly. Mutations in this gene are associated with osteosarcoma, suggesting that the encoded protein may also play a role in bone formation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175054 | ATR | ATR serine/threonine kinase | 545 | The protein encoded by this gene belongs the PI3/PI4-kinase family, and is most closely related to ATM, a protein kinase encoded by the gene mutated in ataxia telangiectasia. This protein and ATM share similarity with Schizosaccharomyces pombe rad3, a cell cycle checkpoint gene required for cell cycle arrest and DNA damage repair in response to DNA damage. This kinase has been shown to phosphorylate checkpoint kinase CHK1, checkpoint proteins RAD17, and RAD9, as well as tumor suppressor protein BRCA1. Mutations of this gene are associated with Seckel syndrome. An alternatively spliced transcript variant of this gene has been reported, however, its full length nature is not known. Transcript variants utilizing alternative polyA sites exist. |
| NA | ENSG00000120756 | PLS1 | plastin 1 | 5357 | Plastins are a family of actin-binding proteins that are conserved throughout eukaryote evolution and expressed in most tissues of higher eukaryotes. In humans, two ubiquitous plastin isoforms (L and T) have been identified. The protein encoded by this gene is a third distinct plastin isoform, which is specifically expressed at high levels in the small intestine. Alternatively spliced transcript variants varying in the 5’ UTR, but encoding the same protein, have been found for this gene. A pseudogene of this gene is found on chromosome 11. |
| NA | ENSG00000144935 | TRPC1 | transient receptor potential cation channel subfamily C member 1 | 7220 | The protein encoded by this gene is a membrane protein that can form a non-selective channel permeable to calcium and other cations. The encoded protein appears to be induced to form channels by a receptor tyrosine kinase-activated phosphatidylinositol second messenger system and also by depletion of intracellular calcium stores. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163710 | PCOLCE2 | procollagen C-endopeptidase enhancer 2 | 26577 | NA |
| NA | ENSG00000163714 | U2SURP | U2 snRNP-associated SURP domain containing | 23350 | NA |
| NA | ENSG00000175040 | CHST2 | carbohydrate (N-acetylglucosamine-6-O) sulfotransferase 2 | 9435 | This locus encodes a sulfotransferase protein. The encoded enzyme catalyzes the sulfation of a nonreducing N-acetylglucosamine residue, and may play a role in biosynthesis of 6-sulfosialyl Lewis X antigen. |
| NA | ENSG00000181744 | C3orf58 | chromosome 3 open reading frame 58 | 205428 | NA |
| NA | ENSG00000152952 | PLOD2 | procollagen-lysine, 2-oxoglutarate 5-dioxygenase 2 | 5352 | The protein encoded by this gene is a membrane-bound homodimeric enzyme that is localized to the cisternae of the rough endoplasmic reticulum. The enzyme (cofactors iron and ascorbate) catalyzes the hydroxylation of lysyl residues in collagen-like peptides. The resultant hydroxylysyl groups are attachment sites for carbohydrates in collagen and thus are critical for the stability of intermolecular crosslinks. Some patients with Ehlers-Danlos syndrome type VIB have deficiencies in lysyl hydroxylase activity. Mutations in the coding region of this gene are associated with Bruck syndrome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000188313 | PLSCR1 | phospholipid scramblase 1 | 5359 | NA |
| NA | ENSG00000163754 | GYG1 | glycogenin 1 | 2992 | This gene encodes a member of the glycogenin family. Glycogenin is a glycosyltransferase that catalyzes the formation of a short glucose polymer from uridine diphosphate glucose in an autoglucosylation reaction. This reaction is followed by elongation and branching of the polymer, catalyzed by glycogen synthase and branching enzyme, to form glycogen. This gene is expressed in muscle and other tissues. Mutations in this gene result in glycogen storage disease XV. This gene has pseudogenes on chromosomes 1, 8 and 13 respectively. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000163755 | HPS3 | HPS3, biogenesis of lysosomal organelles complex 2 subunit 1 | 84343 | This gene encodes a protein containing a potential clathrin-binding motif, consensus dileucine signals, and tyrosine-based sorting signals for targeting to vesicles of lysosomal lineage. The encoded protein may play a role in organelle biogenesis associated with melanosomes, platelet dense granules, and lysosomes. Mutations in this gene are associated with Hermansky-Pudlak syndrome type 3. |
| NA | ENSG00000169908 | TM4SF1 | transmembrane 4 L six family member 1 | 4071 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. This encoded protein is a cell surface antigen and is highly expressed in different carcinomas. |
| NA | ENSG00000018408 | WWTR1 | WW domain containing transcription regulator 1 | 25937 | NA |
| NA | ENSG00000082996 | RNF13 | ring finger protein 13 | 11342 | The protein encoded by this gene contains a RING zinc finger, a motif known to be involved in protein-protein interactions. The specific function of this gene has not yet been determined. Alternatively spliced transcript variants that encode the same protein have been reported. A pseudogene, which is also located on chromosome 3, has been defined for this gene. |
| NA | ENSG00000070087 | PFN2 | profilin 2 | 5217 | The protein encoded by this gene is a ubiquitous actin monomer-binding protein belonging to the profilin family. It is thought to regulate actin polymerization in response to extracellular signals. There are two alternatively spliced transcript variants encoding different isoforms described for this gene. |
| TRUE | ENSG00000268175 | NA | NA | NA | NA |
| NA | ENSG00000196428 | TSC22D2 | TSC22 domain family member 2 | 9819 | NA |
| NA | ENSG00000120742 | SERP1 | stress-associated endoplasmic reticulum protein 1 | 27230 | NA |
| NA | ENSG00000144895 | EIF2A | eukaryotic translation initiation factor 2A | 83939 | This gene encodes a eukaryotic translation initiation factor that catalyzes the formation of puromycin-sensitive 80 S preinitiation complexes and the poly(U)-directed synthesis of polyphenylalanine at low concentrations of Mg2+. This gene should not be confused with eIF2-alpha (EIF2S1, Gene ID: 1965), the alpha subunit of the eIF2 translation initiation complex. Although both of these proteins function in binding initiator tRNA to the 40 S ribosomal subunit, the encoded protein does so in a codon-dependent manner, whereas eIF2 complex requires GTP. Alternative splicing of this gene results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000198843 | SELT | selenoprotein T | 51714 | This gene encodes a selenoprotein, which contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), that is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. |
| NA | ENSG00000181788 | SIAH2 | siah E3 ubiquitin protein ligase 2 | 6478 | This gene encodes a protein that is a member of the seven in absentia homolog (SIAH) family. The protein is an E3 ligase and is involved in ubiquitination and proteasome-mediated degradation of specific proteins. The activity of this ubiquitin ligase has been implicated in regulating cellular response to hypoxia. |
| NA | ENSG00000144893 | MED12L | mediator complex subunit 12 like | 116931 | The protein encoded by this gene is part of the Mediator complex, which is involved in transcriptional coactivation of nearly all RNA polymerase II-dependent genes. The Mediator complex links gene-specific transcriptional activators with the basal transcription machinery. |
| NA | ENSG00000152601 | MBNL1 | muscleblind like splicing regulator 1 | 4154 | This gene encodes a member of the muscleblind protein family which was initially described in Drosophila melanogaster. The encoded protein is a C3H-type zinc finger protein that modulates alternative splicing of pre-mRNAs. Muscleblind proteins bind specifically to expanded dsCUG RNA but not to normal size CUG repeats and may thereby play a role in the pathophysiology of myotonic dystrophy. Mice lacking this gene exhibited muscle abnormalities and cataracts. Several alternatively spliced transcript variants have been described but the full-length natures of only some have been determined. The different isoforms are thought to have different binding specificities and/or splicing activities. |
| NA | ENSG00000169860 | P2RY1 | purinergic receptor P2Y1 | 5028 | The product of this gene belongs to the family of G-protein coupled receptors. This family has several receptor subtypes with different pharmacological selectivity, which overlaps in some cases, for various adenosine and uridine nucleotides. This receptor functions as a receptor for extracellular ATP and ADP. In platelets binding to ADP leads to mobilization of intracellular calcium ions via activation of phospholipase C, a change in platelet shape, and probably to platelet aggregation. |
| NA | ENSG00000181467 | RAP2B | RAP2B, member of RAS oncogene family | 5912 | This intronless gene belongs to a family of RAS-related genes. The proteins encoded by these genes share approximately 50% amino acid identity with the classical RAS proteins and have numerous structural features in common. The most striking difference between the RAP and RAS proteins resides in their 61st amino acid: glutamine in RAS is replaced by threonine in RAP proteins. Evidence suggests that this protein may be polyisoprenylated and palmitoylated. |
| NA | ENSG00000174953 | DHX36 | DEAH-box helicase 36 | 170506 | This gene is a member of the DEAH-box family of RNA-dependent NTPases which are named after the conserved amino acid sequence Asp-Glu-Ala-His in motif II. The protein encoded by this gene has been shown to enhance the deadenylation and decay of mRNAs with 3’-UTR AU-rich elements (ARE-mRNA). The protein has also been shown to resolve into single strands the highly stable tetramolecular DNA configuration (G4) that can form spontaneously in guanine-rich regions of DNA. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000196549 | MME | membrane metallo-endopeptidase | 4311 | This gene encodes a common acute lymphocytic leukemia antigen that is an important cell surface marker in the diagnosis of human acute lymphocytic leukemia (ALL). This protein is present on leukemic cells of pre-B phenotype, which represent 85% of cases of ALL. This protein is not restricted to leukemic cells, however, and is found on a variety of normal tissues. It is a glycoprotein that is particularly abundant in kidney, where it is present on the brush border of proximal tubules and on glomerular epithelium. The protein is a neutral endopeptidase that cleaves peptides at the amino side of hydrophobic residues and inactivates several peptide hormones including glucagon, enkephalins, substance P, neurotensin, oxytocin, and bradykinin. This gene, which encodes a 100-kD type II transmembrane glycoprotein, exists in a single copy of greater than 45 kb. The 5’ untranslated region of this gene is alternatively spliced, resulting in four separate mRNA transcripts. The coding region is not affected by alternative splicing. |
| NA | ENSG00000114805 | PLCH1 | phospholipase C eta 1 | 23007 | PLCH1 is a member of the PLC-eta family of the phosphoinositide-specific phospholipase C (PLC) superfamily of enzymes that cleave phosphatidylinositol 4,5-bisphosphate (PtdIns(4,5)P2) to generate second messengers inositol 1,4,5-trisphosphate (IP3) and diacylglycerol (DAG) (Hwang et al., 2005 [PubMed 15702972]). |
| NA | ENSG00000174928 | C3orf33 | chromosome 3 open reading frame 33 | 285315 | NA |
| NA | ENSG00000169359 | SLC33A1 | solute carrier family 33 member 1 | 9197 | The protein encoded by this gene is required for the formation of O-acetylated (Ac) gangliosides. The encoded protein is predicted to contain 6 to 10 transmembrane domains, and a leucine zipper motif in transmembrane domain III. Defects in this gene have been reported to cause spastic paraplegia autosomal dominant type 42 (SPG42) in one Chinese family, but not in similar patients of European descent. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000163655 | GMPS | guanine monophosphate synthase | 8833 | In the de novo synthesis of purine nucleotides, IMP is the branch point metabolite at which point the pathway diverges to the synthesis of either guanine or adenine nucleotides. In the guanine nucleotide pathway, there are 2 enzymes involved in converting IMP to GMP, namely IMP dehydrogenase (IMPD1), which catalyzes the oxidation of IMP to XMP, and GMP synthetase, which catalyzes the amination of XMP to GMP. |
| NA | ENSG00000169282 | KCNAB1 | potassium voltage-gated channel subfamily A member regulatory beta subunit 1 | 7881 | Potassium channels represent the most complex class of voltage-gated ion channels from both functional and structural standpoints. Their diverse functions include regulating neurotransmitter release, heart rate, insulin secretion, neuronal excitability, epithelial electrolyte transport, smooth muscle contraction, and cell volume. Four sequence-related potassium channel genes - shaker, shaw, shab, and shal - have been identified in Drosophila, and each has been shown to have human homolog(s). This gene encodes a member of the potassium channel, voltage-gated, shaker-related subfamily. This member includes distinct isoforms which are encoded by alternatively spliced transcript variants of this gene. Some of these isoforms are beta subunits, which form heteromultimeric complexes with alpha subunits and modulate the activity of the pore-forming alpha subunits. |
| NA | ENSG00000114850 | SSR3 | signal sequence receptor, gamma (translocon-associated protein gamma) | 6747 | The signal sequence receptor (SSR) is a glycosylated endoplasmic reticulum (ER) membrane receptor associated with protein translocation across the ER membrane. The SSR is comprised of four membrane proteins/subunits: alpha, beta, gamma, and delta. The first two are glycosylated subunits and the latter two are non-glycosylated subunits. This gene encodes the gamma subunit, which is predicted to span the membrane four times. |
| NA | ENSG00000163659 | TIPARP | TCDD-inducible poly(ADP-ribose) polymerase | 25976 | This gene encodes a member of the poly(ADP-ribose) polymerase superfamily. Studies of the mouse ortholog have shown that the encoded protein catalyzes histone poly(ADP-ribosyl)ation and may be involved in T-cell function. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000163660 | CCNL1 | cyclin L1 | 57018 | NA |
| NA | ENSG00000197415 | VEPH1 | ventricular zone expressed PH domain containing 1 | 79674 | NA |
| NA | ENSG00000174899 | PQLC2L | PQ loop repeat containing 2-like | 152078 | NA |
| NA | ENSG00000174891 | RSRC1 | arginine/serine-rich coiled-coil 1 | 51319 | This gene encodes a member of the serine and arginine rich-related protein family. The encoded protein is involved in both constitutive and alternative mRNA splicing. This gene may be associated with schizophrenia. A pseudogene of this gene is located on chromosome 9. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000178053 | MLF1 | myeloid leukemia factor 1 | 4291 | This gene encodes an oncoprotein which is thought to play a role in the phenotypic determination of hemopoetic cells. Translocations between this gene and nucleophosmin have been associated with myelodysplastic syndrome and acute myeloid leukemia. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000168827 | GFM1 | G elongation factor, mitochondrial 1 | 85476 | Eukaryotes contain two protein translational systems, one in the cytoplasm and one in the mitochondria. Mitochondrial translation is crucial for maintaining mitochondrial function and mutations in this system lead to a breakdown in the respiratory chain-oxidative phosphorylation system and to impaired maintenance of mitochondrial DNA. This gene encodes one of the mitochondrial translation elongation factors. Its role in the regulation of normal mitochondrial function and in different disease states attributed to mitochondrial dysfunction is not known. |
| NA | ENSG00000079257 | LXN | latexin | 56925 | This gene encodes the only known protein inhibitor of zinc-dependent metallocarboxypeptidases. |
| NA | ENSG00000118855 | MFSD1 | major facilitator superfamily domain containing 1 | 64747 | NA |
| NA | ENSG00000151967 | SCHIP1 | schwannomin interacting protein 1 | 29970 | NA |
| NA | ENSG00000068885 | IFT80 | intraflagellar transport 80 | 57560 | The protein encoded by this gene is part of the intraflagellar transport complex B and is necessary for the function of motile and sensory cilia. Defects in this gene are a cause of asphyxiating thoracic dystrophy 2 (ATD2). Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000113810 | SMC4 | structural maintenance of chromosomes 4 | 10051 | Members of the structural maintenance of chromosomes, or SMC, family (e.g., SMC1A; MIM 300040) are critical for mitotic chromosome condensation in frogs and for DNA repair in mammals. |
| NA | ENSG00000213186 | TRIM59 | tripartite motif containing 59 | 286827 | NA |
| NA | ENSG00000186432 | KPNA4 | karyopherin subunit alpha 4 | 3840 | The nuclear import of karyophilic proteins is directed by short amino acid sequences termed nuclear localization signals (NLSs). Karyopherins, or importins, are cytoplasmic proteins that recognize NLSs and dock NLS-containing proteins to the nuclear pore complex. The protein encoded by this gene shares the sequence similarity with Xenopus importin-alpha and Saccharomyces cerevisiae Srp1. This protein is found to interact with the NLSs of DNA helicase Q1 and SV40 T antigen. |
| NA | ENSG00000163590 | PPM1L | protein phosphatase, Mg2+/Mn2+ dependent 1L | 151742 | The protein encoded by this gene is a magnesium or manganese-requiring phosphatase that is involved in several signaling pathways. The encoded protein downregulates apoptosis signal-regulating kinase 1, a protein that initiates a signaling cascade that leads to apoptosis when cells are subjected to cytotoxic stresses. This protein also is an endoplasmic reticulum transmembrane protein that helps regulate ceramide transport from the endoplasmic reticulum to the Golgi apparatus. Finally, this gene may be involved in adiposity since it is upregulated in adipose tissues. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169255 | B3GALNT1 | beta-1,3-N-acetylgalactosaminyltransferase 1 (globoside blood group) | 8706 | This gene is a member of the beta-1,3-galactosyltransferase (beta3GalT) gene family. This family encodes type II membrane-bound glycoproteins with diverse enzymatic functions using different donor substrates (UDP-galactose and UDP-N-acetylglucosamine) and different acceptor sugars (N-acetylglucosamine, galactose, N-acetylgalactosamine). The beta3GalT genes are distantly related to the Drosophila Brainiac gene and have the protein coding sequence contained in a single exon. The beta3GalT proteins also contain conserved sequences not found in the beta4GalT or alpha3GalT proteins. The carbohydrate chains synthesized by these enzymes are designated as type 1, whereas beta4GalT enzymes synthesize type 2 carbohydrate chains. The ratio of type 1:type 2 chains changes during embryogenesis. By sequence similarity, the beta3GalT genes fall into at least two groups: beta3GalT4 and 4 other beta3GalT genes (beta3GalT1-3, beta3GalT5). The encoded protein of this gene does not use N-acetylglucosamine as an acceptor sugar at all. Multiple transcript variants that are alternatively spliced in the 5’ UTR have been described; they all encode the same protein. |
| NA | ENSG00000169251 | NMD3 | NMD3 ribosome export adaptor | 51068 | Ribosomal 40S and 60S subunits associate in the nucleolus and are exported to the cytoplasm. The protein encoded by this gene is involved in the passage of the 60S subunit through the nuclear pore complex and into the cytoplasm. Several transcript variants exist for this gene, but the full-length natures of only two have been described to date. |
| NA | ENSG00000196542 | SPTSSB | serine palmitoyltransferase small subunit B | 165679 | Serine palmitoyltransferase (SPT; EC 2.3.1.50) catalyzes the first committed and rate-limiting step in sphingolipid biosynthesis. SSSPTB is a small SPT subunit that stimulates SPT activity and confers acyl-CoA preference to the SPT catalytic heterodimer of SPTLC1 (MIM 605712) and either SPTLC2 (MIM 605713) or SPTLC3 (MIM 611120) (Han et al., 2009 [PubMed 19416851]). |
| NA | ENSG00000121871 | SLITRK3 | SLIT and NTRK like family member 3 | 22865 | This gene encodes a member of the Slitrk family of structurally related transmembrane proteins that are involved in controlling neurite outgrowth. The encoded protein contains two leucine-rich repeat (LRR) domains and a C-terminal domain that is partially similar to Trk neurotrophin receptor protein. Enhanced expression of this gene was found in tissue from several different types of tumors. Alternative splicing results in multiple transcript variants, all encoding the same protein. |
| NA | ENSG00000114209 | PDCD10 | programmed cell death 10 | 11235 | This gene encodes an evolutionarily conserved protein associated with cell apoptosis. The protein interacts with the serine/threonine protein kinase MST4 to modulate the extracellular signal-regulated kinase (ERK) pathway. It also interacts with and is phosphoryated by serine/threonine kinase 25, and is thought to function in a signaling pathway essential for vascular developent. Mutations in this gene are one cause of cerebral cavernous malformations, which are vascular malformations that cause seizures and cerebral hemorrhages. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000163536 | SERPINI1 | serpin peptidase inhibitor, clade I (neuroserpin), member 1 | 5274 | This gene encodes a member of the serpin superfamily of serine proteinase inhibitors. The protein is primarily secreted by axons in the brain, and preferentially reacts with and inhibits tissue-type plasminogen activator. It is thought to play a role in the regulation of axonal growth and the development of synaptic plasticity. Mutations in this gene result in familial encephalopathy with neuroserpin inclusion bodies (FENIB), which is a dominantly inherited form of familial encephalopathy and epilepsy characterized by the accumulation of mutant neuroserpin polymers. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000173905 | GOLIM4 | golgi integral membrane protein 4 | 27333 | The Golgi complex plays a key role in the sorting and modification of proteins exported from the endoplasmic reticulum. The protein encoded by this gene is a type II Golgi-resident protein. It may process proteins synthesized in the rough endoplasmic reticulum and assist in the transport of protein cargo through the Golgi apparatus. |
| NA | ENSG00000184378 | ACTRT3 | actin related protein T3 | 84517 | NA |
| NA | ENSG00000171757 | LRRC34 | leucine rich repeat containing 34 | 151827 | NA |
| NA | ENSG00000008952 | SEC62 | SEC62 homolog, preprotein translocation factor | 7095 | The Sec61 complex is the central component of the protein translocation apparatus of the endoplasmic reticulum (ER) membrane. The protein encoded by this gene and SEC63 protein are found to be associated with ribosome-free SEC61 complex. It is speculated that Sec61-Sec62-Sec63 may perform post-translational protein translocation into the ER. The Sec61-Sec62-Sec63 complex might also perform the backward transport of ER proteins that are subject to the ubiquitin-proteasome-dependent degradation pathway. The encoded protein is an integral membrane protein located in the rough ER. |
| NA | ENSG00000173890 | GPR160 | G protein-coupled receptor 160 | 26996 | NA |
| NA | ENSG00000173889 | PHC3 | polyhomeotic homolog 3 | 80012 | NA |
| NA | ENSG00000163558 | PRKCI | protein kinase C iota | 5584 | This gene encodes a member of the protein kinase C (PKC) family of serine/threonine protein kinases. The PKC family comprises at least eight members, which are differentially expressed and are involved in a wide variety of cellular processes. This protein kinase is calcium-independent and phospholipid-dependent. It is not activated by phorbolesters or diacylglycerol. This kinase can be recruited to vesicle tubular clusters (VTCs) by direct interaction with the small GTPase RAB2, where this kinase phosphorylates glyceraldehyde-3-phosphate dehydrogenase (GAPD/GAPDH) and plays a role in microtubule dynamics in the early secretory pathway. This kinase is found to be necessary for BCL-ABL-mediated resistance to drug-induced apoptosis and therefore protects leukemia cells against drug-induced apoptosis. There is a single exon pseudogene mapped on chromosome X. |
| NA | ENSG00000136603 | SKIL | SKI-like proto-oncogene | 6498 | The protein encoded by this gene is a component of the SMAD pathway, which regulates cell growth and differentiation through transforming growth factor-beta (TGFB). In the absence of ligand, the encoded protein binds to the promoter region of TGFB-responsive genes and recruits a nuclear repressor complex. TGFB signaling causes SMAD3 to enter the nucleus and degrade this protein, allowing these genes to be activated. Four transcript variants encoding three different isoforms have been found for this gene. |
| NA | ENSG00000013297 | CLDN11 | claudin 11 | 5010 | This gene encodes a member of the claudin family. Claudins are integral membrane proteins and components of tight junction strands. Tight junction strands serve as a physical barrier to prevent solutes and water from passing freely through the paracellular space between epithelial or endothelial cell sheets, and also play critical roles in maintaining cell polarity and signal transductions. The protein encoded by this gene is a major component of central nervous system (CNS) myelin and plays an important role in regulating proliferation and migration of oligodendrocytes. Mouse studies showed that the gene deficiency results in deafness and loss of the Sertoli cell epithelial phenotype in the testis. This protein is a tight junction protein at the human blood-testis barrier (BTB), and the BTB disruption is related to a dysfunction of this gene. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000163584 | RPL22L1 | ribosomal protein L22 like 1 | 200916 | NA |
| NA | ENSG00000163577 | EIF5A2 | eukaryotic translation initiation factor 5A2 | 56648 | NA |
| NA | ENSG00000075420 | FNDC3B | fibronectin type III domain containing 3B | 64778 | NA |
| NA | ENSG00000144959 | NCEH1 | neutral cholesterol ester hydrolase 1 | 57552 | NA |
| NA | ENSG00000114346 | ECT2 | epithelial cell transforming 2 | 1894 | The protein encoded by this gene is a guanine nucleotide exchange factor and transforming protein that is related to Rho-specific exchange factors and yeast cell cycle regulators. The expression of this gene is elevated with the onset of DNA synthesis and remains elevated during G2 and M phases. In situ hybridization analysis showed that expression is at a high level in cells undergoing mitosis in regenerating liver. Thus, this protein is expressed in a cell cycle-dependent manner during liver regeneration, and is thought to have an important role in the regulation of cytokinesis. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000169760 | NLGN1 | neuroligin 1 | 22871 | This gene encodes a member of a family of neuronal cell surface proteins. Members of this family may act as splice site-specific ligands for beta-neurexins and may be involved in the formation and remodeling of central nervous system synapses. |
| NA | ENSG00000177565 | TBL1XR1 | transducin (beta)-like 1 X-linked receptor 1 | 79718 | This gene is a member of the WD40 repeat-containing gene family and shares sequence similarity with transducin (beta)-like 1X-linked (TBL1X). The protein encoded by this gene is thought to be a component of both nuclear receptor corepressor (N-CoR) and histone deacetylase 3 (HDAC 3) complexes, and is required for transcriptional activation by a variety of transcription factors. Mutations in these gene have been associated with some autism spectrum disorders, and one finding suggests that haploinsufficiency of this gene may be a cause of intellectual disability with dysmorphism. Mutations in this gene as well as recurrent translocations involving this gene have also been observed in some tumors. |
| NA | ENSG00000172667 | ZMAT3 | zinc finger matrin-type 3 | 64393 | This gene encodes a protein containing three zinc finger domains and a nuclear localization signal. The mRNA and the protein of this gene are upregulated by wildtype p53 and overexpression of this gene inhibits tumor cell growth, suggesting that this gene may have a role in the p53-dependent growth regulatory pathway. Alternative splicing of this gene results in two transcript variants encoding two isoforms differing in only one amino acid. |
| NA | ENSG00000121879 | PIK3CA | phosphatidylinositol-4,5-bisphosphate 3-kinase catalytic subunit alpha | 5290 | Phosphatidylinositol 3-kinase is composed of an 85 kDa regulatory subunit and a 110 kDa catalytic subunit. The protein encoded by this gene represents the catalytic subunit, which uses ATP to phosphorylate PtdIns, PtdIns4P and PtdIns(4,5)P2. This gene has been found to be oncogenic and has been implicated in cervical cancers. |
| NA | ENSG00000171121 | KCNMB3 | potassium calcium-activated channel subfamily M regulatory beta subunit 3 | 27094 | MaxiK channels are large conductance, voltage and calcium-sensitive potassium channels which are fundamental to the control of smooth muscle tone and neuronal excitability. MaxiK channels can be formed by 2 subunits: the pore-forming alpha subunit and the modulatory beta subunit. The protein encoded by this gene is an auxiliary beta subunit which may partially inactivate or slightly decrease the activation time of MaxiK alpha subunit currents. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 22. |
| NA | ENSG00000121864 | ZNF639 | zinc finger protein 639 | 51193 | This gene encodes a member of the Kruppel-like zinc finger family of proteins. Amplification and overexpression of this gene have been observed in esophageal squamous cell carcinoma. The encoded protein has been shown to bind DNA in a sequence-specific manner and may regulate HIV-1 gene expression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171109 | MFN1 | mitofusin 1 | 55669 | The protein encoded by this gene is a mediator of mitochondrial fusion. This protein and mitofusin 2 are homologs of the Drosophila protein fuzzy onion (Fzo). They are mitochondrial membrane proteins that interact with each other to facilitate mitochondrial targeting. |
| NA | ENSG00000114450 | GNB4 | G protein subunit beta 4 | 59345 | Heterotrimeric guanine nucleotide-binding proteins (G proteins), which integrate signals between receptors and effector proteins, are composed of an alpha, a beta, and a gamma subunit. These subunits are encoded by families of related genes. This gene encodes a beta subunit. Beta subunits are important regulators of alpha subunits, as well as of certain signal transduction receptors and effectors. |
| NA | ENSG00000136518 | ACTL6A | actin like 6A | 86 | This gene encodes a family member of actin-related proteins (ARPs), which share significant amino acid sequence identity to conventional actins. Both actins and ARPs have an actin fold, which is an ATP-binding cleft, as a common feature. The ARPs are involved in diverse cellular processes, including vesicular transport, spindle orientation, nuclear migration and chromatin remodeling. This gene encodes a 53 kDa subunit protein of the BAF (BRG1/brm-associated factor) complex in mammals, which is functionally related to SWI/SNF complex in S. cerevisiae and Drosophila; the latter is thought to facilitate transcriptional activation of specific genes by antagonizing chromatin-mediated transcriptional repression. Together with beta-actin, it is required for maximal ATPase activity of BRG1, and for the association of the BAF complex with chromatin/matrix. Three transcript variants that encode two different protein isoforms have been described. |
| NA | ENSG00000136522 | MRPL47 | mitochondrial ribosomal protein L47 | 57129 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. This gene is immediately adjacent to the gene for BAF complex 53 kDa subunit protein a (BAF53a), in a tail-to-tail orientation. Two transcript variants encoding different protein isoforms have been identified. |
| NA | ENSG00000058056 | USP13 | ubiquitin specific peptidase 13 (isopeptidase T-3) | 8975 | NA |
| NA | ENSG00000163728 | TTC14 | tetratricopeptide repeat domain 14 | 151613 | NA |
| NA | ENSG00000145075 | LOC101928882 | uncharacterized LOC101928882 | 101928882 | NA |
| NA | ENSG00000145075 | CCDC39 | coiled-coil domain containing 39 | 339829 | The protein encoded by this gene is involved in the motility of cilia and flagella. The encoded protein is essential for the assembly of dynein regulatory and inner dynein arm complexes, which regulate ciliary beat. Defects in this gene are a cause of primary ciliary dyskinesia type 14 (CILD14). |
| NA | ENSG00000114416 | FXR1 | FMR1 autosomal homolog 1 | 8087 | The protein encoded by this gene is an RNA binding protein that interacts with the functionally-similar proteins FMR1 and FXR2. These proteins shuttle between the nucleus and cytoplasm and associate with polyribosomes, predominantly with the 60S ribosomal subunit. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000181449 | SOX2 | SRY-box 2 | 6657 | This intronless gene encodes a member of the SRY-related HMG-box (SOX) family of transcription factors involved in the regulation of embryonic development and in the determination of cell fate. The product of this gene is required for stem-cell maintenance in the central nervous system, and also regulates gene expression in the stomach. Mutations in this gene have been associated with optic nerve hypoplasia and with syndromic microphthalmia, a severe form of structural eye malformation. This gene lies within an intron of another gene called SOX2 overlapping transcript (SOX2OT). |
| NA | ENSG00000058063 | ATP11B | ATPase phospholipid transporting 11B (putative) | 23200 | P-type ATPases, such as ATP11B, are phosphorylated in their intermediate state and drive uphill transport of ions across membranes. Several subfamilies of P-type ATPases have been identified. One subfamily transports heavy metal ions, such as Cu(2+) or Cd(2+). Another subfamily transports non-heavy metal ions, such as H(+), Na(+), K(+), or Ca(+). A third subfamily transports amphipaths, such as phosphatidylserine. |
| NA | ENSG00000043093 | DCUN1D1 | defective in cullin neddylation 1 domain containing 1 | 54165 | NA |
| NA | ENSG00000078070 | MCCC1 | methylcrotonoyl-CoA carboxylase 1 | 56922 | This gene encodes the large subunit of 3-methylcrotonyl-CoA carboxylase. This enzyme functions as a heterodimer and catalyzes the carboxylation of 3-methylcrotonyl-CoA to form 3-methylglutaconyl-CoA. Mutations in this gene are associated with 3-Methylcrotonylglycinuria, an autosomal recessive disorder of leucine catabolism. |
| NA | ENSG00000053524 | MCF2L2 | MCF.2 cell line derived transforming sequence-like 2 | 23101 | NA |
| NA | ENSG00000114796 | KLHL24 | kelch like family member 24 | 54800 | NA |
| NA | ENSG00000163872 | YEATS2 | YEATS domain containing 2 | 55689 | YEATS2 is a scaffolding subunit of the ADA2A (TADA2A; MIM 602276)-containing (ATAC) histone acetyltransferase complex (Wang et al., 2008 [PubMed 18838386]). |
| NA | ENSG00000180834 | MAP6D1 | MAP6 domain containing 1 | 79929 | This gene encodes a protein highly similar to the mouse MAP6 domain containing 1 protein, which is related to the STOP proteins. Based on the study of the mouse protein, the encoded protein may function as a calmodulin-regulated neuronal protein that binds and stabilizes microtubules but also associates with the Golgi membranes through N-terminal palmitoylation. |
| NA | ENSG00000175193 | PARL | presenilin associated, rhomboid-like | 55486 | This gene encodes a mitochondrial integral membrane protein. Following proteolytic processing of this protein, a small peptide (P-beta) is formed and translocated to the nucleus. This gene may be involved in signal transduction via regulated intramembrane proteolysis of membrane-tethered precursor proteins. Variation in this gene has been associated with increased risk for type 2 diabetes. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000114770 | ABCC5 | ATP binding cassette subfamily C member 5 | 10057 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MRP subfamily which is involved in multi-drug resistance. This protein functions in the cellular export of its substrate, cyclic nucleotides. This export contributes to the degradation of phosphodiesterases and possibly an elimination pathway for cyclic nucleotides. Studies show that this protein provides resistance to thiopurine anticancer drugs, 6-mercatopurine and thioguanine, and the anti-HIV drug 9-(2-phosphonylmethoxyethyl)adenine. This protein may be involved in resistance to thiopurines in acute lymphoblastic leukemia and antiretroviral nucleoside analogs in HIV-infected patients. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145191 | EIF2B5 | eukaryotic translation initiation factor 2B subunit epsilon | 8893 | This gene encodes one of five subunits of eukaryotic translation initiation factor 2B (EIF2B), a GTP exchange factor for eukaryotic initiation factor 2 and an essential regulator for protein synthesis. Mutations in this gene and the genes encoding other EIF2B subunits have been associated with leukoencephalopathy with vanishing white matter. |
| NA | ENSG00000161202 | DVL3 | dishevelled segment polarity protein 3 | 1857 | This gene is a member of a multi-gene family which shares strong similarity with the Drosophila dishevelled gene, dsh. The Drosophila dishevelled gene encodes a cytoplasmic phosphoprotein that regulates cell proliferation. |
| NA | ENSG00000161203 | AP2M1 | adaptor related protein complex 2 mu 1 subunit | 1173 | This gene encodes a subunit of the heterotetrameric coat assembly protein complex 2 (AP2), which belongs to the adaptor complexes medium subunits family. The encoded protein is required for the activity of a vacuolar ATPase, which is responsible for proton pumping occurring in the acidification of endosomes and lysosomes. The encoded protein may also play an important role in regulating the intracellular trafficking and function of CTLA-4 protein. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000161204 | ABCF3 | ATP binding cassette subfamily F member 3 | 55324 | NA |
| NA | ENSG00000214160 | ALG3 | ALG3, alpha-1,3- mannosyltransferase | 10195 | This gene encodes a member of the ALG3 family. The encoded protein catalyses the addition of the first dol-P-Man derived mannose in an alpha 1,3 linkage to Man5GlcNAc2-PP-Dol. Defects in this gene have been associated with congenital disorder of glycosylation type Id (CDG-Id) characterized by abnormal N-glycosylation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163888 | CAMK2N2 | calcium/calmodulin-dependent protein kinase II inhibitor 2 | 94032 | This gene encodes a protein that is highly similar to the rat CaM-KII inhibitory protein, an inhibitor of calcium/calmodulin-dependent protein kinase II (CAMKII). CAMKII regulates numerous physiological functions, including neuronal synaptic plasticity through the phosphorylation of alpha-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid-type glutamate (AMPA) receptors. Studies of the similar protein in rat suggest that this protein may function as a negative regulator of CaM-KII and may act to inhibit the phosphorylation of AMPA receptors. |
| NA | ENSG00000175166 | PSMD2 | proteasome 26S subunit, non-ATPase 2 | 5708 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes one of the non-ATPase subunits of the 19S regulator lid. In addition to participation in proteasome function, this subunit may also participate in the TNF signalling pathway since it interacts with the tumor necrosis factor type 1 receptor. A pseudogene has been identified on chromosome 1. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000114867 | EIF4G1 | eukaryotic translation initiation factor 4 gamma 1 | 1981 | The protein encoded by this gene is a component of the multi-subunit protein complex EIF4F. This complex facilitates the recruitment of mRNA to the ribosome, which is a rate-limiting step during the initiation phase of protein synthesis. The recognition of the mRNA cap and the ATP-dependent unwinding of 5’-terminal secondary structure is catalyzed by factors in this complex. The subunit encoded by this gene is a large scaffolding protein that contains binding sites for other members of the EIF4F complex. A domain at its N-terminus can also interact with the poly(A)-binding protein, which may mediate the circularization of mRNA during translation. Alternative splicing results in multiple transcript variants, some of which are derived from alternative promoter usage. |
| NA | ENSG00000175182 | FAM131A | family with sequence similarity 131 member A | 131408 | NA |
| NA | ENSG00000114859 | CLCN2 | chloride voltage-gated channel 2 | 1181 | This gene encodes a voltage-gated chloride channel. The encoded protein is a transmembrane protein that maintains chloride ion homeostasis in various cells. Defects in this gene may be a cause of certain epilepsies. Four transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163882 | POLR2H | polymerase (RNA) II subunit H | 5437 | The three eukaryotic RNA polymerases are complex multisubunit enzymes that play a central role in the transcription of nuclear genes. This gene encodes an essential and highly conserved subunit of RNA polymerase II that is shared by the other two eukaryotic DNA-directed RNA polymerases, I and III. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000182580 | EPHB3 | EPH receptor B3 | 2049 | Ephrin receptors and their ligands, the ephrins, mediate numerous developmental processes, particularly in the nervous system. Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. The Eph family of receptors are divided into two groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. Ephrin receptors make up the largest subgroup of the receptor tyrosine kinase (RTK) family. This gene encodes a receptor for ephrin-B family members. |
| NA | ENSG00000177383 | MAGEF1 | MAGE family member F1 | 64110 | This intronless gene encodes a member of the MAGE superfamily. It is ubiquitously expressed in normal tissues and in tumor cells. This gene includes a microsatellite repeat in the coding region. |
| NA | ENSG00000156931 | VPS8 | VPS8, CORVET complex subunit | 23355 | NA |
| NA | ENSG00000187068 | C3orf70 | chromosome 3 open reading frame 70 | 285382 | NA |
| NA | ENSG00000113790 | EHHADH | enoyl-CoA, hydratase/3-hydroxyacyl CoA dehydrogenase | 1962 | The protein encoded by this gene is a bifunctional enzyme and is one of the four enzymes of the peroxisomal beta-oxidation pathway. The N-terminal region of the encoded protein contains enoyl-CoA hydratase activity while the C-terminal region contains 3-hydroxyacyl-CoA dehydrogenase activity. Defects in this gene are a cause of peroxisomal disorders such as Zellweger syndrome. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000073803 | MAP3K13 | mitogen-activated protein kinase kinase kinase 13 | 9175 | The protein encoded by this gene is a member of serine/threonine protein kinase family. This kinase contains a dual leucine-zipper motif, and has been shown to form dimers/oligomers through its leucine-zipper motif. This kinase can phosphorylate and activate MAPK8/JNK, MAP2K7/MKK7, which suggests a role in the JNK signaling pathway. |
| NA | ENSG00000163900 | TMEM41A | transmembrane protein 41A | 90407 | NA |
| NA | ENSG00000163904 | SENP2 | SUMO1/sentrin/SMT3 specific peptidase 2 | 59343 | SUMO1 (UBL1; MIM 601912) is a small ubiquitin-like protein that can be covalently conjugated to other proteins. SENP2 is one of a group of enzymes that process newly synthesized SUMO1 into the conjugatable form and catalyze the deconjugation of SUMO1-containing species. |
| NA | ENSG00000073792 | IGF2BP2 | insulin like growth factor 2 mRNA binding protein 2 | 10644 | This gene encodes a member of the IGF-II mRNA-binding protein (IMP) family. The protein encoded by this gene contains four KH domains and two RRM domains. It functions by binding to the 5’ UTR of the insulin-like growth factor 2 (IGF2) mRNA and regulating IGF2 translation. Alternative promoter usage and alternate splicing result in multiple variants encoding different isoforms. |
| NA | ENSG00000136527 | TRA2B | transformer 2 beta homolog (Drosophila) | 6434 | This gene encodes a nuclear protein which functions as sequence-specific serine/arginine splicing factor which plays a role in mRNA processing, splicing patterns, and gene expression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000244405 | ETV5 | ETS variant 5 | 2119 | NA |
| NA | ENSG00000113838 | TBCCD1 | TBCC domain containing 1 | 55171 | NA |
| NA | ENSG00000090520 | DNAJB11 | DnaJ heat shock protein family (Hsp40) member B11 | 51726 | This gene encodes a soluble glycoprotein of the endoplasmic reticulum (ER) lumen that functions as a co-chaperone of binding immunoglobulin protein, a 70 kilodalton heat shock protein chaperone required for the proper folding and assembly of proteins in the ER. The encoded protein contains a highly conserved J domain of about 70 amino acids with a characteristic His-Pro-Asp (HPD) motif and may regulate the activity of binding immunoglobulin protein by stimulating ATPase activity. |
| NA | ENSG00000156976 | EIF4A2 | eukaryotic translation initiation factor 4A2 | 1974 | NA |
| NA | ENSG00000113916 | BCL6 | B-cell CLL/lymphoma 6 | 604 | The protein encoded by this gene is a zinc finger transcription factor and contains an N-terminal POZ domain. This protein acts as a sequence-specific repressor of transcription, and has been shown to modulate the transcription of STAT-dependent IL-4 responses of B cells. This protein can interact with a variety of POZ-containing proteins that function as transcription corepressors. This gene is found to be frequently translocated and hypermutated in diffuse large-cell lymphoma (DLCL), and may be involved in the pathogenesis of DLCL. Alternatively spliced transcript variants encoding different protein isoforms have been found for this gene. |
| NA | ENSG00000145012 | LPP | LIM domain containing preferred translocation partner in lipoma | 4026 | This gene encodes a member of a subfamily of LIM domain proteins that are characterized by an N-terminal proline-rich region and three C-terminal LIM domains. The encoded protein localizes to the cell periphery in focal adhesions and may be involved in cell-cell adhesion and cell motility. This protein also shuttles through the nucleus and may function as a transcriptional co-activator. This gene is located at the junction of certain disease-related chromosomal translocations, which result in the expression of chimeric proteins that may promote tumor growth. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000090530 | P3H2 | prolyl 3-hydroxylase 2 | 55214 | This gene encodes a member of the prolyl 3-hydroxylase subfamily of 2-oxo-glutarate-dependent dioxygenases. These enzymes play a critical role in collagen chain assembly, stability and cross-linking by catalyzing post-translational 3-hydroxylation of proline residues. Mutations in this gene are associated with nonsyndromic severe myopia with cataract and vitreoretinal degeneration, and downregulation of this gene may play a role in breast cancer. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000163347 | CLDN1 | claudin 1 | 9076 | Tight junctions represent one mode of cell-to-cell adhesion in epithelial or endothelial cell sheets, forming continuous seals around cells and serving as a physical barrier to prevent solutes and water from passing freely through the paracellular space. These junctions are comprised of sets of continuous networking strands in the outwardly facing cytoplasmic leaflet, with complementary grooves in the inwardly facing extracytoplasmic leaflet. The protein encoded by this gene, a member of the claudin family, is an integral membrane protein and a component of tight junction strands. Loss of function mutations result in neonatal ichthyosis-sclerosing cholangitis syndrome. |
| NA | ENSG00000196083 | IL1RAP | interleukin 1 receptor accessory protein | 3556 | Interleukin 1 induces synthesis of acute phase and proinflammatory proteins during infection, tissue damage, or stress, by forming a complex at the cell membrane with an interleukin 1 receptor and an accessory protein. This gene encodes the interleukin 1 receptor accessory protein. The protein is a necessary part of the interleukin 1 receptor complex which initiates signalling events that result in the activation of interleukin 1-responsive genes. Alternative splicing of this gene results in two transcript variants encoding two different isoforms, one membrane-bound and one soluble. The ratio of soluble to membrane-bound forms increases during acute-phase induction or stress. |
| NA | ENSG00000152492 | CCDC50 | coiled-coil domain containing 50 | 152137 | This gene encodes a soluble, cytoplasmic, tyrosine-phosphorylated protein with multiple ubiquitin-interacting domains. Mutations in this gene cause nonsyndromic, postlingual, progressive sensorineural DFNA44 hearing loss. In mouse, the protein is expressed in the inner ear during development and postnatal maturation and associates with microtubule-based structures. This protein may also function as a negative regulator of NF-kB signaling and as an effector of epidermal growth factor (EGF)-mediated cell signaling. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000114279 | FGF12 | fibroblast growth factor 12 | 2257 | The protein encoded by this gene is a member of the fibroblast growth factor (FGF) family. FGF family members possess broad mitogenic and cell survival activities, and are involved in a variety of biological processes, including embryonic development, cell growth, morphogenesis, tissue repair, tumor growth, and invasion. This growth factor lacks the N-terminal signal sequence present in most of the FGF family members, but it contains clusters of basic residues that have been demonstrated to act as a nuclear localization signal. When transfected into mammalian cells, this protein accumulated in the nucleus, but was not secreted. The specific function of this gene has not yet been determined. Two alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000180611 | MB21D2 | Mab-21 domain containing 2 | 151963 | NA |
| NA | ENSG00000127252 | HRASLS | HRAS like suppressor | 57110 | NA |
| NA | ENSG00000198836 | OPA1 | OPA1, mitochondrial dynamin like GTPase | 4976 | This gene product is a nuclear-encoded mitochondrial protein with similarity to dynamin-related GTPases. It is a component of the mitochondrial network. Mutations in this gene have been associated with optic atrophy type 1, which is a dominantly inherited optic neuropathy resulting in progressive loss of visual acuity, leading in many cases to legal blindness. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000114315 | HES1 | hes family bHLH transcription factor 1 | 3280 | This protein belongs to the basic helix-loop-helix family of transcription factors. It is a transcriptional repressor of genes that require a bHLH protein for their transcription. The protein has a particular type of basic domain that contains a helix interrupting protein that binds to the N-box rather than the canonical E-box. |
| NA | ENSG00000133657 | ATP13A3 | ATPase 13A3 | 79572 | ATP13A3 is a member of the P-type ATPase family of proteins that transport a variety of cations across membranes. Other P-type ATPases include ATP7B (MIM 606882) and ATP7A (MIM 300011). |
| NA | ENSG00000145014 | TMEM44 | transmembrane protein 44 | 93109 | NA |
| NA | ENSG00000041802 | LSG1 | large 60S subunit nuclear export GTPase 1 | 55341 | This gene encodes a protein related to the yeast large subunit GTPase 1. The encoded protein is necessary for cell viability and may localize in the endoplasmic reticulum, nucleus and cytoplasm. |
| NA | ENSG00000185112 | FAM43A | family with sequence similarity 43 member A | 131583 | NA |
| NA | ENSG00000114331 | ACAP2 | ArfGAP with coiled-coil, ankyrin repeat and PH domains 2 | 23527 | NA |
| NA | ENSG00000184203 | PPP1R2 | protein phosphatase 1 regulatory inhibitor subunit 2 | 5504 | Protein phosphatase-1 (PP1) is one of the main eukaryotic serine/threonine phosphatases. The protein encoded by this gene binds to the catalytic subunit of PP1, strongly inhibiting its activity. Ten related pseudogenes have been found throughout the human genome. Several splice variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000145113 | MUC4 | mucin 4, cell surface associated | 4585 | The major constituents of mucus, the viscous secretion that covers epithelial surfaces such as those in the trachea, colon, and cervix, are highly glycosylated proteins called mucins. These glycoproteins play important roles in the protection of the epithelial cells and have been implicated in epithelial renewal and differentiation. This gene encodes an integral membrane glycoprotein found on the cell surface, although secreted isoforms may exist. At least two dozen transcript variants of this gene have been found, although for many of them the full-length transcript has not been determined or they are found only in tumor tissues. This gene contains a region in the coding sequence which has a variable number (>100) of 48 nt tandem repeats. |
| NA | ENSG00000061938 | TNK2 | tyrosine kinase, non-receptor, 2 | 10188 | This gene encodes a tyrosine kinase that binds Cdc42Hs in its GTP-bound form and inhibits both the intrinsic and GTPase-activating protein (GAP)-stimulated GTPase activity of Cdc42Hs. This binding is mediated by a unique sequence of 47 amino acids C-terminal to an SH3 domain. The protein may be involved in a regulatory mechanism that sustains the GTP-bound active form of Cdc42Hs and which is directly linked to a tyrosine phosphorylation signal transduction pathway. Several alternatively spliced transcript variants have been identified from this gene, but the full-length nature of only two transcript variants has been determined. |
| NA | ENSG00000072274 | TFRC | transferrin receptor | 7037 | This gene encodes a cell surface receptor necessary for cellular iron uptake by the process of receptor-mediated endocytosis. This receptor is required for erythropoiesis and neurologic development. Multiple alternatively spliced variants have been identified. |
| NA | ENSG00000163959 | SLC51A | solute carrier family 51 alpha subunit | 200931 | NA |
| NA | ENSG00000161217 | PCYT1A | phosphate cytidylyltransferase 1, choline, alpha | 5130 | This gene belongs to the cytidylyltransferase family and is involved in the regulation of phosphatidylcholine biosynthesis. Mutations in this gene are associated with spondylometaphyseal dysplasia with cone-rod dystrophy. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000213123 | TCTEX1D2 | Tctex1 domain containing 2 | 255758 | NA |
| NA | ENSG00000163960 | UBXN7 | UBX domain protein 7 | 26043 | NA |
| NA | ENSG00000163961 | RNF168 | ring finger protein 168, E3 ubiquitin protein ligase | 165918 | This gene encodes an E3 ubiquitin ligase protein that contains a RING finger, a motif present in a variety of functionally distinct proteins and known to be involved in protein-DNA and protein-protein interactions. The protein is involved in DNA double-strand break (DSB) repair. Mutations in this gene result in Riddle syndrome. |
| NA | ENSG00000185798 | WDR53 | WD repeat domain 53 | 348793 | This gene encodes a protein containing WD domains. The function of this gene is unknown. |
| NA | ENSG00000174013 | FBXO45 | F-box protein 45 | 200933 | Members of the F-box protein family, such as FBXO45, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (summary by Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000163964 | PIGX | phosphatidylinositol glycan anchor biosynthesis class X | 54965 | This gene encodes a type I transmembrane protein in the endoplasmic reticulum (ER). The protein is an essential component of glycosylphosphatidylinositol-mannosyltransferase I, which transfers the first of the four mannoses in the GPI-anchor precursors during GPI-anchor biosynthesis. Studies in rat indicate that the protein is translated from a non-AUG translation initiation site. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000174007 | CEP19 | centrosomal protein 19kDa | 84984 | The protein encoded by this gene localizes to centrosomes and primary cilia and co-localizes with a marker for the mother centriole. This gene resides in a region of human chromosome 3 that is linked to morbid obesity. A homozygous knockout of the orthologous gene in mouse resulted in mice with morbid obesity, hyperphagy, glucose intolerance, and insulin resistance. Mutations in this gene cause morbid obesity and spermatogenic failure (MOSPGF). This gene has a pseudogene on human chromosome 2. |
| NA | ENSG00000180370 | PAK2 | p21 protein (Cdc42/Rac)-activated kinase 2 | 5062 | The p21 activated kinases (PAK) are critical effectors that link Rho GTPases to cytoskeleton reorganization and nuclear signaling. The PAK proteins are a family of serine/threonine kinases that serve as targets for the small GTP binding proteins, CDC42 and RAC1, and have been implicated in a wide range of biological activities. The protein encoded by this gene is activated by proteolytic cleavage during caspase-mediated apoptosis, and may play a role in regulating the apoptotic events in the dying cell. |
| NA | ENSG00000119231 | SENP5 | SUMO1/sentrin specific peptidase 5 | 205564 | The reversible posttranslational modification of proteins by the addition of small ubiquitin-like SUMO proteins (see SUMO1; MIM 601912) is required for numerous biologic processes. SUMO-specific proteases, such as SENP5, are responsible for the initial processing of SUMO precursors to generate a C-terminal diglycine motif required for the conjugation reaction. They also have isopeptidase activity for the removal of SUMO from high molecular mass SUMO conjugates (Di Bacco et al., 2006 [PubMed 16738315]). |
| NA | ENSG00000114503 | NCBP2 | nuclear cap binding protein subunit 2 | 22916 | The product of this gene is a component of the nuclear cap-binding protein complex (CBC), which binds to the monomethylated 5’ cap of nascent pre-mRNA in the nucleoplasm. The encoded protein has an RNP domain commonly found in RNA binding proteins, and contains the cap-binding activity. The CBC promotes pre-mRNA splicing, 3’-end processing, RNA nuclear export, and nonsense-mediated mRNA decay. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000075711 | DLG1 | discs large homolog 1, scribble cell polarity complex component | 1739 | This gene encodes a multi-domain scaffolding protein that is required for normal development. This protein may have a role in septate junction formation, signal transduction, cell proliferation, synaptogenesis and lymphocyte activation. Several alternatively spliced transcript variants encoding different isoforms have been described for this gene, but the full-length nature of some of the variants is not known. |
| NA | ENSG00000161267 | BDH1 | 3-hydroxybutyrate dehydrogenase, type 1 | 622 | This gene encodes a member of the short-chain dehydrogenase/reductase gene family. The encoded protein forms a homotetrameric lipid-requiring enzyme of the mitochondrial membrane and has a specific requirement for phosphatidylcholine for optimal enzymatic activity. The encoded protein catalyzes the interconversion of acetoacetate and (R)-3-hydroxybutyrate, the two major ketone bodies produced during fatty acid catabolism. Alternatively spliced transcript variants encoding the same protein have been described. |
| NA | ENSG00000145016 | RUBCN | RUN and cysteine rich domain containing beclin 1 interacting protein | 9711 | The protein encoded by this gene is a negative regulator of autophagy and endocytic trafficking and controls endosome maturation. This protein contains two conserved domains, an N-terminal RUN domain and a C-terminal DUF4206 domain. The RUN domain is involved in Ras-like GTPase signaling, and the DUF4206 domain contains a diacylglycerol (DAG) binding-like motif. Mutation in this gene results in deletion of the DAG binding-like motif and causes a recessive ataxia. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000122068 | FYTTD1 | forty-two-three domain containing 1 | 84248 | NA |
| NA | ENSG00000186001 | LRCH3 | leucine-rich repeats and calponin homology (CH) domain containing 3 | 84859 | NA |
| NA | ENSG00000114473 | IQCG | IQ motif containing G | 84223 | NA |
| NA | ENSG00000182899 | RPL35A | ribosomal protein L35a | 6165 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L35AE family of ribosomal proteins. It is located in the cytoplasm. The rat protein has been shown to bind to both initiator and elongator tRNAs, and thus, it is located at the P site, or P and A sites, of the ribosome. Although this gene was originally mapped to chromosome 18, it has been established that it is located at 3q29-qter. Alternative splicing results in multiple transcript variants. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000185621 | LMLN | leishmanolysin like peptidase | 89782 | This gene encodes a zinc-metallopeptidase. The encoded protein may play a role in cell migration and invasion. Studies of a similar protein in Drosophila indicate a potential role in mitotic progression. Alternatively spliced transcript variants have been described. |
| TRUE | ENSG00000197701 | NA | NA | NA | NA |
| NA | ENSG00000186777 | ZNF732 | zinc finger protein 732 | 654254 | NA |
| NA | ENSG00000131127 | ZNF141 | zinc finger protein 141 | 7700 | NA |
| NA | ENSG00000182903 | ZNF721 | zinc finger protein 721 | 170960 | NA |
| NA | ENSG00000174227 | PIGG | phosphatidylinositol glycan anchor biosynthesis class G | 54872 | NA |
| NA | ENSG00000133256 | PDE6B | phosphodiesterase 6B | 5158 | Photon absorption triggers a signaling cascade in rod photoreceptors that activates cGMP phosphodiesterase (PDE), resulting in the rapid hydrolysis of cGMP, closure of cGMP-gated cation channels, and hyperpolarization of the cell. PDE is a peripheral membrane heterotrimeric enzyme made up of alpha, beta, and gamma subunits. This gene encodes the beta subunit. Mutations in this gene result in retinitis pigmentosa and autosomal dominant congenital stationary night blindness. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169020 | ATP5I | ATP synthase, H+ transporting, mitochondrial Fo complex subunit E | 521 | Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. It is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, which comprises the proton channel. The F1 complex consists of 5 different subunits (alpha, beta, gamma, delta, and epsilon) assembled in a ratio of 3 alpha, 3 beta, and a single representative of the other 3. The Fo seems to have nine subunits (a, b, c, d, e, f, g, F6 and 8). This gene encodes the e subunit of the Fo complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000215375 | MYL5 | myosin light chain 5 | 4636 | This gene encodes one of the myosin light chains, a component of the hexameric ATPase cellular motor protein myosin. Myosin is composed of two heavy chains, two nonphosphorylatable alkali light chains, and two phosphorylatable regulatory light chains. This gene product, one of the regulatory light chains, is expressed in fetal muscle and in adult retina, cerebellum, and basal ganglia. |
| NA | ENSG00000185619 | PCGF3 | polycomb group ring finger 3 | 10336 | The protein encoded by this gene contains a C3HC4 type RING finger, which is a motif known to be involved in protein-protein interactions. The specific function of this protein has not yet been determined. |
| NA | ENSG00000178950 | GAK | cyclin G associated kinase | 2580 | In all eukaryotes, the cell cycle is governed by cyclin-dependent protein kinases (CDKs), whose activities are regulated by cyclins and CDK inhibitors in a diverse array of mechanisms that involve the control of phosphorylation and dephosphorylation of Ser, Thr or Tyr residues. Cyclins are molecules that possess a consensus domain called the ‘cyclin box.’ In mammalian cells, 9 cyclin species have been identified, and they are referred to as cyclins A through I. Cyclin G is a direct transcriptional target of the p53 tumor suppressor gene product and thus functions downstream of p53. GAK is an association partner of cyclin G and CDK5. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000127419 | TMEM175 | transmembrane protein 175 | 84286 | NA |
| NA | ENSG00000145214 | DGKQ | diacylglycerol kinase theta | 1609 | The protein encoded by this gene contains three cysteine-rich domains, a proline-rich region, and a pleckstrin homology domain with an overlapping Ras-associating domain. It is localized in the speckle domains of the nucleus, and mediates the regeneration of phosphatidylinositol (PI) from diacylglycerol in the PI-cycle during cell signal transduction. |
| NA | ENSG00000127418 | FGFRL1 | fibroblast growth factor receptor-like 1 | 53834 | The protein encoded by this gene is a member of the fibroblast growth factor receptor (FGFR) family, where amino acid sequence is highly conserved between members and throughout evolution. FGFR family members differ from one another in their ligand affinities and tissue distribution. A full-length representative protein would consist of an extracellular region, composed of three immunoglobulin-like domains, a single hydrophobic membrane-spanning segment and a cytoplasmic tyrosine kinase domain. The extracellular portion of the protein interacts with fibroblast growth factors, setting in motion a cascade of downstream signals, ultimately influencing mitogenesis and differentiation. A marked difference between this gene product and the other family members is its lack of a cytoplasmic tyrosine kinase domain. The result is a transmembrane receptor that could interact with other family members and potentially inhibit signaling. Multiple alternatively spliced transcript variants encoding the same isoform have been found for this gene. |
| NA | ENSG00000178222 | RNF212 | ring finger protein 212 | 285498 | This gene encodes a RING finger protein that may function as a ubiquitin ligase. The encoded protein may be involved in meiotic recombination. This gene is located within a linkage disequilibrium block and polymorphisms in this gene may influence recombination rates. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000159692 | CTBP1 | C-terminal binding protein 1 | 1487 | This gene encodes a protein that binds to the C-terminus of adenovirus E1A proteins. This phosphoprotein is a transcriptional repressor and may play a role during cellular proliferation. This protein and the product of a second closely related gene, CTBP2, can dimerize. Both proteins can also interact with a polycomb group protein complex which participates in regulation of gene expression during development. Alternative splicing of transcripts from this gene results in multiple transcript variants. |
| NA | ENSG00000090316 | MAEA | macrophage erythroblast attacher | 10296 | This gene encodes a protein that mediates the attachment of erythroblasts to macrophages. This attachment promotes terminal maturation and enucleation of erythroblasts, presumably by suppressing apoptosis. The encoded protein is an integral membrane protein with the N-terminus on the extracellular side and the C-terminus on the cytoplasmic side of the cell. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000163945 | UVSSA | UV stimulated scaffold protein A | 57654 | The protein encoded by this gene appears to be involved in ubiquitination and dephosphorylation of RNA polymerase II subunits that stall after UV irradiation. The encoded protein interacts with several members of the nucleotide excision repair complex, and is thought to be involved in the transcription-coupled nucleotide excision repair (TC-NER) pathway to help remove lesions in the DNA that block transcription. Defects in this gene can cause UV-sensitive syndrome 3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000179979 | CRIPAK | cysteine rich PAK1 inhibitor | 285464 | CRIPAK is a negative regulator of PAK1 (MIM 602590) that is upregulated by estrogen (Talukder et al., 2006 [PubMed 16278681]). |
| NA | ENSG00000163950 | SLBP | stem-loop binding protein | 7884 | This gene encodes a protein that binds to the stem-loop structure in replication-dependent histone mRNAs. Histone mRNAs do not contain introns or polyadenylation signals, and are processed by endonucleolytic cleavage. The stem-loop structure is essential for efficient processing but this structure also controls the transport, translation and stability of histone mRNAs. Expression of the protein is regulated during the cell cycle, increasing more than 10-fold during the latter part of G1. |
| NA | ENSG00000168936 | TMEM129 | transmembrane protein 129 | 92305 | NA |
| NA | ENSG00000013810 | TACC3 | transforming acidic coiled-coil containing protein 3 | 10460 | This gene encodes a member of the transforming acidic colied-coil protein family. The encoded protein is a motor spindle protein that may play a role in stabilization of the mitotic spindle. This protein may also play a role in growth a differentiation of certain cancer cells. |
| NA | ENSG00000068078 | FGFR3 | fibroblast growth factor receptor 3 | 2261 | This gene encodes a member of the fibroblast growth factor receptor (FGFR) family, with its amino acid sequence being highly conserved between members and among divergent species. FGFR family members differ from one another in their ligand affinities and tissue distribution. A full-length representative protein would consist of an extracellular region, composed of three immunoglobulin-like domains, a single hydrophobic membrane-spanning segment and a cytoplasmic tyrosine kinase domain. The extracellular portion of the protein interacts with fibroblast growth factors, setting in motion a cascade of downstream signals, ultimately influencing mitogenesis and differentiation. This particular family member binds acidic and basic fibroblast growth hormone and plays a role in bone development and maintenance. Mutations in this gene lead to craniosynostosis and multiple types of skeletal dysplasia. Three alternatively spliced transcript variants that encode different protein isoforms have been described. |
| NA | ENSG00000168924 | LETM1 | leucine zipper and EF-hand containing transmembrane protein 1 | 3954 | This gene encodes a protein that is localized to the inner mitochondrial membrane. The protein functions to maintain the mitochondrial tubular shapes and is required for normal mitochondrial morphology and cellular viability. Mutations in this gene cause Wolf-Hirschhorn syndrome, a complex malformation syndrome caused by the deletion of parts of the distal short arm of chromosome 4. Related pseudogenes have been identified on chromosomes 8, 15 and 19. |
| NA | ENSG00000109685 | WHSC1 | Wolf-Hirschhorn syndrome candidate 1 | 7468 | This gene encodes a protein that contains four domains present in other developmental proteins: a PWWP domain, an HMG box, a SET domain, and a PHD-type zinc finger. It is expressed ubiquitously in early development. Wolf-Hirschhorn syndrome (WHS) is a malformation syndrome associated with a hemizygous deletion of the distal short arm of chromosome 4. This gene maps to the 165 kb WHS critical region and has also been involved in the chromosomal translocation t(4;14)(p16.3;q32.3) in multiple myelomas. Alternative splicing of this gene results in multiple transcript variants encoding different isoforms. Some transcript variants are nonsense-mediated mRNA (NMD) decay candidates, hence not represented as reference sequences. |
| NA | ENSG00000185049 | NELFA | negative elongation factor complex member A | 7469 | This gene is expressed ubiquitously with higher levels in fetal than in adult tissues. It encodes a protein sharing 93% sequence identity with the mouse protein. Wolf-Hirschhorn syndrome (WHS) is a malformation syndrome associated with a hemizygous deletion of the distal short arm of chromosome 4. This gene is mapped to the 165 kb WHS critical region, and may play a role in the phenotype of the WHS or Pitt-Rogers-Danks syndrome. The encoded protein is found to be capable of reacting with HLA-A2-restricted and tumor-specific cytotoxic T lymphocytes, suggesting a target for use in specific immunotherapy for a large number of cancer patients. This protein has also been shown to be a member of the NELF (negative elongation factor) protein complex that participates in the regulation of RNA polymerase II transcription elongation. |
| NA | ENSG00000243449 | C4orf48 | chromosome 4 open reading frame 48 | 401115 | NA |
| NA | ENSG00000185818 | NAT8L | N-acetyltransferase 8 like | 339983 | This gene encodes a single-pass membrane protein, which contains a conserved sequence of the GCN5 or NAT superfamily of N-acetyltransferases and is a member of the N-acyltransferase (NAT) superfamily. This protein is a neuron-specific protein and is the N-acetylaspartate (NAA) biosynthetic enzyme, catalyzing the NAA synthesis from L-aspartate and acetyl-CoA. NAA is a major storage and transport form of acetyl coenzyme A specific to the nervous system. The gene mutation results in primary NAA deficiency (hypoacetylaspartia). |
| NA | ENSG00000214367 | HAUS3 | HAUS augmin like complex subunit 3 | 79441 | This gene encodes a component of the HAUS augmin-like protein complex, which plays a key role in cytokinesis and mitosis. Disruption of the encoded protein causes mitotic defects resulting from fragmentation of centrosomes and microtubule destabilization. This gene shares its 5’ exons with some transcripts from overlapping GeneID: 353497, which encodes a DNA polymerase. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000123933 | MXD4 | MAX dimerization protein 4 | 10608 | This gene is a member of the MAD gene family . The MAD genes encode basic helix-loop-helix-leucine zipper proteins that heterodimerize with MAX protein, forming a transcriptional repression complex. The MAD proteins compete for MAX binding with MYC, which heterodimerizes with MAX forming a transcriptional activation complex. Studies in rodents suggest that the MAD genes are tumor suppressors and contribute to the regulation of cell growth in differentiating tissues. |
| NA | ENSG00000063978 | RNF4 | ring finger protein 4 | 6047 | The protein encoded by this gene contains a RING finger motif and acts as a transcription regulator. This protein has been shown to interact with, and inhibit the activity of, TRPS1, a transcription suppressor of GATA-mediated transcription. Transcription repressor ZNF278/PATZ is found to interact with this protein, and thus reduce the enhancement of androgen receptor-dependent transcription mediated by this protein. Studies of the mouse and rat counterparts suggested a role of this protein in spermatogenesis. A pseudogene of this gene is found on chromosome 1. |
| NA | ENSG00000125386 | FAM193A | family with sequence similarity 193 member A | 8603 | NA |
| NA | ENSG00000168884 | TNIP2 | TNFAIP3 interacting protein 2 | 79155 | This gene encodes a protein which acts as an inhibitor of NFkappaB activation. The encoded protein is also involved in MAP/ERK signaling pathway in specific cell types. It may be involved in apoptosis of endothelial cells. Alternative splicing results in multiple transcript variants. A pseudogene related to this gene is located on the X chromosome. |
| NA | ENSG00000087266 | SH3BP2 | SH3-domain binding protein 2 | 6452 | The protein encoded by this gene has an N-terminal pleckstrin homology (PH) domain, an SH3-binding proline-rich region, and a C-terminal SH2 domain. The protein binds to the SH3 domains of several proteins including the ABL1 and SYK protein tyrosine kinases , and functions as a cytoplasmic adaptor protein to positively regulate transcriptional activity in T, natural killer (NK), and basophilic cells. Mutations in this gene result in cherubism. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000087274 | ADD1 | adducin 1 | 118 | Adducins are a family of cytoskeleton proteins encoded by three genes (alpha, beta, gamma). Adducin is a heterodimeric protein that consists of related subunits, which are produced from distinct genes but share a similar structure. Alpha- and beta-adducin include a protease-resistant N-terminal region and a protease-sensitive, hydrophilic C-terminal region. Alpha- and gamma-adducins are ubiquitously expressed. In contrast, beta-adducin is expressed at high levels in brain and hematopoietic tissues. Adducin binds with high affinity to Ca(2+)/calmodulin and is a substrate for protein kinases A and C. Alternative splicing results in multiple variants encoding distinct isoforms; however, not all variants have been fully described. |
| NA | ENSG00000109736 | MFSD10 | major facilitator superfamily domain containing 10 | 10227 | This gene encodes a member of the major facilitator superfamily of transporter proteins. The encoded protein likely functions in efflux of organic anions, including the non-steroidal anti-inflammatory drugs indomethacin and diclofenac. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000087269 | NOP14 | NOP14 nucleolar protein | 8602 | This gene encodes a protein that plays a role in pre-18s rRNA processing and small ribosomal subunit assembly. The encoded protein may be involved in the regulation of pancreatic cancer cell proliferation and migration. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197386 | HTT | huntingtin | 3064 | Huntingtin is a disease gene linked to Huntington’s disease, a neurodegenerative disorder characterized by loss of striatal neurons. This is thought to be caused by an expanded, unstable trinucleotide repeat in the huntingtin gene, which translates as a polyglutamine repeat in the protein product. A fairly broad range in the number of trinucleotide repeats has been identified in normal controls, and repeat numbers in excess of 40 have been described as pathological. The huntingtin locus is large, spanning 180 kb and consisting of 67 exons. The huntingtin gene is widely expressed and is required for normal development. It is expressed as 2 alternatively polyadenylated forms displaying different relative abundance in various fetal and adult tissues. The larger transcript is approximately 13.7 kb and is expressed predominantly in adult and fetal brain whereas the smaller transcript of approximately 10.3 kb is more widely expressed. The genetic defect leading to Huntington’s disease may not necessarily eliminate transcription, but may confer a new property on the mRNA or alter the function of the protein. One candidate is the huntingtin-associated protein-1, highly expressed in brain, which has increased affinity for huntingtin protein with expanded polyglutamine repeats. This gene contains an upstream open reading frame in the 5’ UTR that inhibits expression of the huntingtin gene product through translational repression. |
| NA | ENSG00000159788 | RGS12 | regulator of G-protein signaling 12 | 6002 | This gene encodes a member of the ‘regulator of G protein signaling’ (RGS) gene family. The encoded protein may function as a guanosine triphosphatase (GTPase)-activating protein as well as a transcriptional repressor. This protein may play a role in tumorigenesis. Multiple transcript variants encoding distinct isoforms have been identified for this gene. Other alternative splice variants have been described but their biological nature has not been determined. |
| NA | ENSG00000184160 | ADRA2C | adrenoceptor alpha 2C | 152 | Alpha-2-adrenergic receptors are members of the G protein-coupled receptor superfamily. They include 3 highly homologous subtypes: alpha2A, alpha2B, and alpha2C. These receptors have a critical role in regulating neurotransmitter release from sympathetic nerves and from adrenergic neurons in the central nervous system. The mouse studies revealed that both the alpha2A and alpha2C subtypes were required for normal presynaptic control of transmitter release from sympathetic nerves in the heart and from central noradrenergic neurons. The alpha2A subtype inhibited transmitter release at high stimulation frequencies, whereas the alpha2C subtype modulated neurotransmission at lower levels of nerve activity. This gene encodes the alpha2C subtype, which contains no introns in either its coding or untranslated sequences. |
| NA | ENSG00000132406 | TMEM128 | transmembrane protein 128 | 85013 | NA |
| NA | ENSG00000145220 | LYAR | Ly1 antibody reactive | 55646 | NA |
| NA | ENSG00000168826 | ZBTB49 | zinc finger and BTB domain containing 49 | 166793 | NA |
| NA | ENSG00000168818 | STX18 | syntaxin 18 | 53407 | NA |
| NA | ENSG00000163132 | MSX1 | msh homeobox 1 | 4487 | This gene encodes a member of the muscle segment homeobox gene family. The encoded protein functions as a transcriptional repressor during embryogenesis through interactions with components of the core transcription complex and other homeoproteins. It may also have roles in limb-pattern formation, craniofacial development, particularly odontogenesis, and tumor growth inhibition. Mutations in this gene, which was once known as homeobox 7, have been associated with nonsyndromic cleft lip with or without cleft palate 5, Witkop syndrome, Wolf-Hirschom syndrome, and autosomoal dominant hypodontia. |
| NA | ENSG00000170891 | CYTL1 | cytokine like 1 | 54360 | C17 is a cytokine-like protein specifically expressed in bone marrow and cord blood mononuclear cells that bear the CD34 (MIM 142230) surface marker (Liu et al., 2000 [PubMed 10857752]). |
| NA | ENSG00000152953 | STK32B | serine/threonine kinase 32B | 55351 | NA |
| NA | ENSG00000173040 | EVC2 | EvC ciliary complex subunit 2 | 132884 | This gene encodes a protein that functions in bone formation and skeletal development. Mutations in this gene, as well as in a neighboring gene that lies in a head-to-head configuration, cause Ellis-van Creveld syndrome, an autosomal recessive skeletal dysplasia that is also known as chondroectodermal dysplasia. Mutations in this gene also cause acrofacial dysostosis Weyers type, also referred to as Curry-Hall syndrome, a disease that combines limb and facial abnormalities. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000072840 | EVC | EvC ciliary complex subunit 1 | 2121 | This gene encodes a protein containing a leucine zipper and a transmembrane domain. This gene has been implicated in both Ellis-van Creveld syndrome (EvC) and Weyers acrodental dysostosis. |
| NA | ENSG00000072832 | CRMP1 | collapsin response mediator protein 1 | 1400 | This gene encodes a member of a family of cytosolic phosphoproteins expressed exclusively in the nervous system. The encoded protein is thought to be a part of the semaphorin signal transduction pathway implicated in semaphorin-induced growth cone collapse during neural development. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000109501 | WFS1 | wolframin ER transmembrane glycoprotein | 7466 | This gene encodes a transmembrane protein, which is located primarily in the endoplasmic reticulum and ubiquitously expressed with highest levels in brain, pancreas, heart, and insulinoma beta-cell lines. Mutations in this gene are associated with Wolfram syndrome, also called DIDMOAD (Diabetes Insipidus, Diabetes Mellitus, Optic Atrophy, and Deafness), an autosomal recessive disorder. The disease affects the brain and central nervous system. Mutations in this gene can also cause autosomal dominant deafness 6 (DFNA6), also known as DFNA14 or DFNA38. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000074211 | PPP2R2C | protein phosphatase 2 regulatory subunit B, gamma | 5522 | The product of this gene belongs to the phosphatase 2 regulatory subunit B family. Protein phosphatase 2 is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The B regulatory subunit might modulate substrate selectivity and catalytic activity. This gene encodes a gamma isoform of the regulatory subunit B55 subfamily. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000013288 | MAN2B2 | mannosidase alpha class 2B member 2 | 23324 | NA |
| NA | ENSG00000179010 | MRFAP1 | Morf4 family associated protein 1 | 93621 | This gene encodes an intracellular protein that interacts with members of the MORF4/MRG (mortality factor on chromosome 4/MORF4 related gene) family and the tumor suppressor Rb (retinoblastoma protein.) The protein may play a role in senescence, cell growth and immortalization. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000178988 | MRFAP1L1 | Morf4 family associated protein 1 like 1 | 114932 | NA |
| NA | ENSG00000186222 | BLOC1S4 | biogenesis of lysosomal organelles complex 1 subunit 4 | 55330 | This intronless gene encodes a protein that may play a role in organelle biogenesis associated with melanosomes, platelet dense granules, and lysosomes. A similar protein in mouse is a component of a protein complex termed biogenesis of lysosome-related organelles complex 1 (BLOC-1), and is a model for Hermansky-Pudlak syndrome. The encoded protein may play a role in intracellular vesicular trafficking. |
| NA | ENSG00000170871 | KIAA0232 | KIAA0232 | 9778 | NA |
| NA | ENSG00000132405 | TBC1D14 | TBC1 domain family member 14 | 57533 | NA |
| NA | ENSG00000173011 | TADA2B | transcriptional adaptor 2B | 93624 | TADA2B functions as a transcriptional adaptor protein that potentiates transcription through coordination of histone acetyltransferase (HAT) activity and by linking activation factors to basal transcriptional machinery (Barlev et al., 2003 [PubMed 12972612]). |
| NA | ENSG00000109519 | GRPEL1 | GrpE like 1, mitochondrial | 80273 | NA |
| NA | ENSG00000196526 | AFAP1 | actin filament associated protein 1 | 60312 | The protein encoded by this gene is a Src binding partner. It may represent a potential modulator of actin filament integrity in response to cellular signals, and may function as an adaptor protein by linking Src family members and/or other signaling proteins to actin filaments. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000170801 | HTRA3 | HtrA serine peptidase 3 | 94031 | NA |
| NA | ENSG00000087008 | ACOX3 | acyl-CoA oxidase 3, pristanoyl | 8310 | Acyl-Coenzyme A oxidase 3 also know as pristanoyl -CoA oxidase (ACOX3)is involved in the desaturation of 2-methyl branched fatty acids in peroxisomes. Unlike the rat homolog, the human gene is expressed in very low amounts in liver such that its mRNA was undetectable by routine Northern-blot analysis or its product by immunoblotting or by enzyme activity measurements. However the human cDNA encoding a 700 amino acid protein with a peroxisomal targeting C-terminal tripeptide S-K-L was isolated and is thought to be expressed under special conditions such as specific developmental stages or in a tissue specific manner in tissues that have not yet been examined. |
| NA | ENSG00000155275 | TRMT44 | tRNA methyltransferase 44 homolog (S. cerevisiae) | 152992 | The protein encoded by this gene is a putative tRNA methyltransferase found in the cytoplasm. Defects in this gene may be a cause of partial epilepsy with pericentral spikes (PEPS), but that has not been proven definitively. |
| NA | ENSG00000071127 | WDR1 | WD repeat domain 1 | 9948 | This gene encodes a protein containing 9 WD repeats. WD repeats are approximately 30- to 40-amino acid domains containing several conserved residues, mostly including a trp-asp at the C-terminal end. WD domains are involved in protein-protein interactions. The encoded protein may help induce the disassembly of actin filaments. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000178163 | ZNF518B | zinc finger protein 518B | 85460 | NA |
| NA | ENSG00000157869 | RAB28 | RAB28, member RAS oncogene family | 9364 | This gene encodes a member of the Rab subfamily of Ras-related small GTPases. The encoded protein may be involved in regulating intracellular trafficking. Alternative splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 9 and X. |
| NA | ENSG00000038219 | BOD1L1 | biorientation of chromosomes in cell division 1 like 1 | 259282 | NA |
| NA | ENSG00000048342 | CC2D2A | coiled-coil and C2 domain containing 2A | 57545 | This gene encodes a coiled-coil and calcium binding domain protein that appears to play a critical role in cilia formation. Mutations in this gene cause Meckel syndrome type 6, as well as Joubert syndrome type 9. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000118564 | FBXL5 | F-box and leucine-rich repeat protein 5 | 26234 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbls class and, in addition to an F-box, contains several tandem leucine-rich repeats. Alternatively spliced transcript variants have been described for this locus. |
| NA | ENSG00000237765 | FAM200B | family with sequence similarity 200 member B | 285550 | NA |
| NA | ENSG00000007062 | PROM1 | prominin 1 | 8842 | This gene encodes a pentaspan transmembrane glycoprotein. The protein localizes to membrane protrusions and is often expressed on adult stem cells, where it is thought to function in maintaining stem cell properties by suppressing differentiation. Mutations in this gene have been shown to result in retinitis pigmentosa and Stargardt disease. Expression of this gene is also associated with several types of cancer. This gene is expressed from at least five alternative promoters that are expressed in a tissue-dependent manner. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169762 | TAPT1 | transmembrane anterior posterior transformation 1 | 202018 | This gene encodes a highly conserved, putative transmembrane protein. A mutation in the mouse ortholog of this gene results in homeotic, posterior-to-anterior transformations of the axial skeleton which are similar to the phenotype of mouse homeobox C8 gene mutants. This gene is proposed to function downstream of homeobox C8 to transduce extracellular patterning information during axial skeleton development. An alternatively spliced transcript variant encoding a substantially different isoform has been described, but its biological validity has not been determined. |
| NA | ENSG00000151552 | QDPR | quinoid dihydropteridine reductase | 5860 | This gene encodes the enzyme dihydropteridine reductase, which catalyzes the NADH-mediated reduction of quinonoid dihydrobiopterin. This enzyme is an essential component of the pterin-dependent aromatic amino acid hydroxylating systems. Mutations in this gene resulting in QDPR deficiency include aberrant splicing, amino acid substitutions, insertions, or premature terminations. Dihydropteridine reductase deficiency presents as atypical phenylketonuria due to insufficient production of biopterin, a cofactor for phenylalanine hydroxylase. |
| NA | ENSG00000002549 | LAP3 | leucine aminopeptidase 3 | 51056 | NA |
| NA | ENSG00000118579 | MED28 | mediator complex subunit 28 | 80306 | NA |
| NA | ENSG00000047662 | FAM184B | family with sequence similarity 184 member B | 27146 | NA |
| NA | ENSG00000163257 | DCAF16 | DDB1 and CUL4 associated factor 16 | 54876 | NA |
| NA | ENSG00000109805 | NCAPG | non-SMC condensin I complex subunit G | 64151 | This gene encodes a subunit of the condensin complex, which is responsible for the condensation and stabilization of chromosomes during mitosis and meiosis. Phosphorylation of the encoded protein activates the condensin complex. There are pseudogenes for this gene on chromosomes 8 and 15. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000178177 | LCORL | ligand dependent nuclear receptor corepressor like | 254251 | This gene encodes a transcription factor that appears to function in spermatogenesis. Polymorphisms in this gene are associated with measures of skeletal frame size and adult height. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145147 | SLIT2 | slit guidance ligand 2 | 9353 | This gene encodes a member of the slit family of secreted glycoproteins, which are ligands for the Robo family of immunoglobulin receptors. Slit proteins play highly conserved roles in axon guidance and neuronal migration and may also have functions during other cell migration processes including leukocyte migration. Members of the slit family are characterized by an N-terminal signal peptide, four leucine-rich repeats, nine epidermal growth factor repeats, and a C-terminal cysteine knot. Proteolytic processing of this protein gives rise to an N-terminal fragment that contains the four leucine-rich repeats and five epidermal growth factor repeats and a C-terminal fragment that contains four epidermal growth factor repeats and the cysteine knot. Both full length and cleaved proteins are secreted extracellularly and can function in axon repulsion as well as other specific processes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000163138 | PACRGL | PARK2 co-regulated like | 133015 | NA |
| NA | ENSG00000152990 | ADGRA3 | adhesion G protein-coupled receptor A3 | 166647 | This gene encodes a member of the G protein-coupled receptor superfamily. This membrane protein may play a role in tumor angiogenesis through its interaction with the human homolog of the Drosophila disc large tumor suppressor gene. This gene is mapped to a candidate region of chromosome 4 which may be associated with bipolar disorder and schizophrenia. |
| NA | ENSG00000109606 | DHX15 | DEAH-box helicase 15 | 1665 | The protein encoded by this gene is a putative ATP-dependent RNA helicase implicated in pre-mRNA splicing. |
| NA | ENSG00000181982 | CCDC149 | coiled-coil domain containing 149 | 91050 | NA |
| NA | ENSG00000109618 | SEPSECS | Sep (O-phosphoserine) tRNA:Sec (selenocysteine) tRNA synthase | 51091 | The amino acid selenocysteine is the only amino acid that does not have its own tRNA synthetase. Instead, this amino acid is synthesized on its cognate tRNA in a three step process. The protein encoded by this gene catalyzes the third step in the process, the conversion of O-phosphoseryl-tRNA(Sec) to selenocysteinyl-tRNA(Sec). |
| NA | ENSG00000168228 | ZCCHC4 | zinc finger CCHC-type containing 4 | 29063 | NA |
| NA | ENSG00000053900 | ANAPC4 | anaphase promoting complex subunit 4 | 29945 | A large protein complex, termed the anaphase-promoting complex (APC), or the cyclosome, promotes metaphase-anaphase transition by ubiquitinating its specific substrates such as mitotic cyclins and anaphase inhibitor, which are subsequently degraded by the 26S proteasome. Biochemical studies have shown that the vertebrate APC contains eight subunits. The composition of the APC is highly conserved in organisms from yeast to humans. The exact function of this gene product is not known. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000091490 | SEL1L3 | SEL1L family member 3 | 23231 | NA |
| NA | ENSG00000168214 | RBPJ | recombination signal binding protein for immunoglobulin kappa J region | 3516 | The protein encoded by this gene is a transcriptional regulator important in the Notch signaling pathway. The encoded protein acts as a repressor when not bound to Notch proteins and an activator when bound to Notch proteins. It is thought to function by recruiting chromatin remodeling complexes containing histone deacetylase or histone acetylase proteins to Notch signaling pathway genes. Several transcript variants encoding different isoforms have been found for this gene, and several pseudogenes of this gene exist on chromosome 9. |
| NA | ENSG00000109680 | TBC1D19 | TBC1 domain family member 19 | 55296 | NA |
| NA | ENSG00000109689 | STIM2 | stromal interaction molecule 2 | 57620 | This gene is a member of the stromal interaction molecule (STIM) family and likely arose, along with related family member STIM1, from a common ancestral gene. The encoded protein functions to regulate calcium concentrations in the cytosol and endoplasmic reticulum, and is involved in the activation of plasma membrane Orai Ca(2+) entry channels. This gene initiates translation from a non-AUG (UUG) start site. A signal peptide is cleaved from the resulting protein. Multiple transcript variants result from alternative splicing. |
| NA | ENSG00000169851 | PCDH7 | protocadherin 7 | 5099 | This gene belongs to the protocadherin gene family, a subfamily of the cadherin superfamily. The gene encodes a protein with an extracellular domain containing 7 cadherin repeats. The gene product is an integral membrane protein that is thought to function in cell-cell recognition and adhesion. Alternative splicing yields isoforms with unique cytoplasmic tails. |
| NA | ENSG00000169299 | PGM2 | phosphoglucomutase 2 | 55276 | NA |
| NA | ENSG00000065882 | TBC1D1 | TBC1 domain family member 1 | 23216 | TBC1D1 is the founding member of a family of proteins sharing a 180- to 200-amino acid TBC domain presumed to have a role in regulating cell growth and differentiation. These proteins share significant homology with TRE2 (USP6; MIM 604334), yeast Bub2, and CDC16 (MIM 603461) (White et al., 2000 [PubMed 10965142]). |
| NA | ENSG00000250254 | PTTG2 | pituitary tumor-transforming 2 | 10744 | NA |
| NA | ENSG00000197712 | FAM114A1 | family with sequence similarity 114 member A1 | 92689 | NA |
| NA | ENSG00000109790 | KLHL5 | kelch like family member 5 | 51088 | NA |
| NA | ENSG00000157796 | WDR19 | WD repeat domain 19 | 57728 | The protein encoded by this gene is a member of the WD (tryptophan-aspartic acid) repeat family, which is a large family of structurally-related proteins known to participate in a wide range of cellular processes. Each WD repeat typically contains about 40 amino acids that are usually bracketed by glycine-histidine and tryptophan-aspartic acid (WD) dipeptides. This protein contains six WD repeats, three transmembrane domains, and a clathrin heavy-chain repeat. Mutations in this gene have been described in individuals with a wide range of disorders affecting function of the cilium. These disorders are known as ciliopathies, and include Jeune syndrome, Sensenbrenner syndromes, Senior-Loken syndrome, combined or isolated nephronophthisis (NPHP), and retinitis pigmentosa (RP). Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000035928 | RFC1 | replication factor C subunit 1 | 5981 | This gene encodes the large subunit of replication factor C, a five subunit DNA polymerase accessory protein, which is a DNA-dependent ATPase required for eukaryotic DNA replication and repair. The large subunit acts as an activator of DNA polymerases, binds to the 3’ end of primers, and promotes coordinated synthesis of both strands. It may also have a role in telomere stability. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000163682 | RPL9 | ribosomal protein L9 | 6133 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L6P family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000121897 | LIAS | lipoic acid synthetase | 11019 | The protein encoded by this gene belongs to the biotin and lipoic acid synthetases family. It localizes in mitochondrion and plays an important role in alpha-(+)-lipoic acid synthesis. It may also function in the sulfur insertion chemistry in lipoate biosynthesis. Alternative splicing occurs at this locus and two transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000109814 | UGDH | UDP-glucose 6-dehydrogenase | 7358 | The protein encoded by this gene converts UDP-glucose to UDP-glucuronate and thereby participates in the biosynthesis of glycosaminoglycans such as hyaluronan, chondroitin sulfate, and heparan sulfate. These glycosylated compounds are common components of the extracellular matrix and likely play roles in signal transduction, cell migration, and cancer growth and metastasis. The expression of this gene is up-regulated by transforming growth factor beta and down-regulated by hypoxia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000078140 | UBE2K | ubiquitin conjugating enzyme E2 K | 3093 | The protein encoded by this gene belongs to the ubiquitin-conjugating enzyme family. This protein interacts with RING finger proteins, and it can ubiquitinate huntingtin, the gene product for Huntington’s disease. Known functions for this protein include a role in aggregate formation of expanded polyglutamine proteins and the suppression of apoptosis in polyglutamine diseases, a role in the dislocation of newly synthesized MHC class I heavy chains from the endoplasmic reticulum, and involvement in foam cell formation. Multiple transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000078177 | N4BP2 | NEDD4 binding protein 2 | 55728 | This gene encodes a protein containing a polynucleotide kinase domain (PNK) near the N-terminal region, and a Small MutS Related (Smr) domain near the C-terminal region. The encoded protein can bind to both B-cell leukemia/lymphoma 3 (BCL-3) and neural precursor cell expressed, developmentally downregulated 4, (Nedd4) proteins. This protein binds and hydrolyzes ATP, may function as a 5’-polynucleotide kinase, and has the capacity to be a ubiquitylation substrate. This protein may play a role in transcription-coupled DNA repair or genetic recombination. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000168421 | RHOH | ras homolog family member H | 399 | The protein encoded by this gene is a member of the Ras superfamily of guanosine triphosphate (GTP)-metabolizing enzymes. The encoded protein is expressed in hematopoietic cells, where it functions as a negative regulator of cell growth and survival. This gene may be hypermutated or misexpressed in leukemias and lymphomas. Chromosomal translocations in non-Hodgkin’s lymphoma occur between this locus and B-cell CLL/lymphoma 6 (BCL6) on chromosome 3, leading to the production of fusion transcripts. Alternative splicing in the 5’ untranslated region results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000174343 | CHRNA9 | cholinergic receptor nicotinic alpha 9 subunit | 55584 | This gene is a member of the ligand-gated ionic channel family and nicotinic acetylcholine receptor gene superfamily. It encodes a plasma membrane protein that forms homo- or hetero-oligomeric divalent cation channels. This protein is involved in cochlea hair cell development and is also expressed in the outer hair cells (OHCs) of the adult cochlea. |
| NA | ENSG00000179299 | NSUN7 | NOP2/Sun RNA methyltransferase family member 7 | 79730 | NA |
| NA | ENSG00000163697 | APBB2 | amyloid beta precursor protein binding family B member 2 | 323 | The protein encoded by this gene interacts with the cytoplasmic domains of amyloid beta (A4) precursor protein and amyloid beta (A4) precursor-like protein 2. This protein contains two phosphotyrosine binding (PTB) domains, which are thought to function in signal transduction. Polymorphisms in this gene have been associated with Alzheimer’s disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000154277 | UCHL1 | ubiquitin C-terminal hydrolase L1 | 7345 | The protein encoded by this gene belongs to the peptidase C12 family. This enzyme is a thiol protease that hydrolyzes a peptide bond at the C-terminal glycine of ubiquitin. This gene is specifically expressed in the neurons and in cells of the diffuse neuroendocrine system. Mutations in this gene may be associated with Parkinson disease. |
| NA | ENSG00000064042 | LIMCH1 | LIM and calponin homology domains 1 | 22998 | NA |
| NA | ENSG00000109133 | TMEM33 | transmembrane protein 33 | 55161 | NA |
| NA | ENSG00000014824 | SLC30A9 | solute carrier family 30 member 9 | 10463 | NA |
| NA | ENSG00000188848 | BEND4 | BEN domain containing 4 | 389206 | NA |
| NA | ENSG00000178343 | SHISA3 | shisa family member 3 | 152573 | NA |
| NA | ENSG00000124406 | ATP8A1 | ATPase phospholipid transporting 8A1 | 10396 | The P-type adenosinetriphosphatases (P-type ATPases) are a family of proteins which use the free energy of ATP hydrolysis to drive uphill transport of ions across membranes. Several subfamilies of P-type ATPases have been identified. One subfamily catalyzes transport of heavy metal ions. Another subfamily transports non-heavy metal ions (NMHI). The protein encoded by this gene is a member of the third subfamily of P-type ATPases and acts to transport amphipaths, such as phosphatidylserine. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000183783 | KCTD8 | potassium channel tetramerization domain containing 8 | 386617 | NA |
| NA | ENSG00000151806 | GUF1 | GUF1 homolog, GTPase | 60558 | NA |
| NA | ENSG00000163281 | GNPDA2 | glucosamine-6-phosphate deaminase 2 | 132789 | The protein encoded by this gene is an allosteric enzyme that catalyzes the reversible reaction converting D-glucosamine-6-phosphate into D-fructose-6-phosphate and ammonium. Variations of this gene have been reported to be associated with influencing body mass index and susceptibility to obesity. A pseudogene of this gene is located on chromosome 9. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000169019 | COMMD8 | COMM domain containing 8 | 54951 | NA |
| NA | ENSG00000145246 | ATP10D | ATPase phospholipid transporting 10D (putative) | 57205 | NA |
| NA | ENSG00000170448 | NFXL1 | nuclear transcription factor, X-box binding like 1 | 152518 | NA |
| NA | ENSG00000163293 | NIPAL1 | NIPA like domain containing 1 | 152519 | NA |
| NA | ENSG00000135605 | TEC | tec protein tyrosine kinase | 7006 | The protein encoded by this gene belongs to the Tec family of non-receptor protein-tyrosine kinases containing a pleckstrin homology domain. Tec family kinases are involved in the intracellular signaling mechanisms of cytokine receptors, lymphocyte surface antigens, heterotrimeric G-protein coupled receptors, and integrin molecules. They are also key players in the regulation of the immune functions. Tec kinase is an integral component of T cell signaling and has a distinct role in T cell activation. This gene may be associated with myelodysplastic syndrome. |
| NA | ENSG00000109171 | SLAIN2 | SLAIN motif family member 2 | 57606 | NA |
| NA | ENSG00000145248 | SLC10A4 | solute carrier family 10 member 4 | 201780 | NA |
| NA | ENSG00000075539 | FRYL | FRY like transcription coactivator | 285527 | NA |
| NA | ENSG00000109180 | OCIAD1 | OCIA domain containing 1 | 54940 | NA |
| NA | ENSG00000109184 | DCUN1D4 | defective in cullin neddylation 1 domain containing 4 | 23142 | NA |
| NA | ENSG00000226887 | ERVMER34-1 | endogenous retrovirus group MER34 member 1 | 100288413 | NA |
| NA | ENSG00000128045 | RASL11B | RAS like family 11 member B | 65997 | RASL11B is a member of the small GTPase protein family with a high degree of similarity to RAS (see HRAS, MIM 190020) proteins. |
| NA | ENSG00000184178 | SCFD2 | sec1 family domain containing 2 | 152579 | NA |
| NA | ENSG00000145216 | FIP1L1 | factor interacting with PAPOLA and CPSF1 | 81608 | This gene encodes a subunit of the CPSF (cleavage and polyadenylation specificity factor) complex that polyadenylates the 3’ end of mRNA precursors. This gene, the homolog of yeast Fip1 (factor interacting with PAP), binds to U-rich sequences of pre-mRNA and stimulates poly(A) polymerase activity. Its N-terminus contains a PAP-binding site and its C-terminus an RNA-binding domain. An interstitial chromosomal deletion on 4q12 creates an in-frame fusion of human genes FIP1L1 and PDGFRA (platelet-derived growth factor receptor, alpha). The FIP1L1-PDGFRA fusion gene encodes a constitutively activated tyrosine kinase that joins the first 233 amino acids of FIP1L1 to the last 523 amino acids of PDGFRA. This gene fusion and chromosomal deletion is the cause of some forms of idiopathic hypereosinophilic syndrome (HES). This syndrome, recently reclassified as chronic eosinophilic leukemia (CEL), is responsive to treatment with tyrosine kinase inhibitors. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000072201 | LNX1 | ligand of numb-protein X 1, E3 ubiquitin protein ligase | 84708 | This gene encodes a membrane-bound protein that is involved in signal transduction and protein interactions. The encoded product is an E3 ubiquitin-protein ligase, which mediates ubiquitination and subsequent proteasomal degradation of proteins containing phosphotyrosine binding (PTB) domains. This protein may play an important role in tumorogenesis. Alternatively spliced transcript variants encoding distinct isoforms have been described. A pseudogene, which is located on chromosome 17, has been identified for this gene. |
| NA | ENSG00000109220 | CHIC2 | cysteine rich hydrophobic domain 2 | 26511 | This gene encodes a member of the CHIC family of proteins. The encoded protein contains a cysteine-rich hydrophobic (CHIC) motif, and is localized to vesicular structures and the plasma membrane. This gene is associated with some cases of acute myeloid leukemia. |
| NA | ENSG00000157404 | KIT | KIT proto-oncogene receptor tyrosine kinase | 3815 | This gene encodes the human homolog of the proto-oncogene c-kit. C-kit was first identified as the cellular homolog of the feline sarcoma viral oncogene v-kit. This protein is a type 3 transmembrane receptor for MGF (mast cell growth factor, also known as stem cell factor). Mutations in this gene are associated with gastrointestinal stromal tumors, mast cell disease, acute myelogenous lukemia, and piebaldism. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000134851 | TMEM165 | transmembrane protein 165 | 55858 | This gene encodes a predicted transmembrane protein with a perinuclear Golgi-like distribution in fibroblasts. Mutations in this gene are associated with the autosomal recessive disorder congenital disorder of glycosylation, type IIk. Knockdown of this gene’s expression causes decreased sialylation in HEK cells and suggests this gene plays a role in terminal Golgi glycosylation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000109255 | NMU | neuromedin U | 10874 | This gene encodes a member of the neuromedin family of neuropeptides. The encoded protein is a precursor that is proteolytically processed to generate a biologically active neuropeptide that plays a role in pain, stress, immune-mediated inflammatory diseases and feeding regulation. Increased expression of this gene was observed in renal, pancreatic and lung cancers. Alternative splicing results in multiple transcript variants encoding different isoforms. Some of these isoforms may undergo similar processing to generate the mature peptide. |
| NA | ENSG00000090989 | EXOC1 | exocyst complex component 1 | 55763 | The protein encoded by this gene is a component of the exocyst complex, a multiple protein complex essential for targeting exocytic vesicles to specific docking sites on the plasma membrane. Though best characterized in yeast, the component proteins and functions of the exocyst complex have been demonstrated to be highly conserved in higher eukaryotes. At least eight components of the exocyst complex, including this protein, are found to interact with the actin cytoskeletal remodeling and vesicle transport machinery. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000174799 | CEP135 | centrosomal protein 135kDa | 9662 | This gene encodes a centrosomal protein, which acts as a scaffolding protein during early centriole biogenesis, and is also required for centriole-centriole cohesion during interphase. Mutations in this gene are associated with autosomal recessive primary microcephaly-8. |
| NA | ENSG00000109265 | KIAA1211 | KIAA1211 | 57482 | NA |
| NA | ENSG00000128059 | PPAT | phosphoribosyl pyrophosphate amidotransferase | 5471 | The protein encoded by this gene is a member of the purine/pyrimidine phosphoribosyltransferase family. It is a regulatory allosteric enzyme that catalyzes the first step of de novo purine nucleotide biosythetic pathway. This gene and PAICS/AIRC gene, a bifunctional enzyme catalyzing steps six and seven of this pathway, are located in close proximity on chromosome 4, and divergently transcribed from an intergenic region. |
| TRUE | ENSG00000268171 | NA | NA | NA | NA |
| NA | ENSG00000128050 | PAICS | phosphoribosylaminoimidazole carboxylase; phosphoribosylaminoimidazolesuccinocarboxamide synthase | 10606 | This gene encodes a bifunctional enzyme containing phosphoribosylaminoimidazole carboxylase activity in its N-terminal region and phosphoribosylaminoimidazole succinocarboxamide synthetase in its C-terminal region. It catalyzes steps 6 and 7 of purine biosynthesis. The gene is closely linked and divergently transcribed with a locus that encodes an enzyme in the same pathway, and transcription of the two genes is coordinately regulated. The human genome contains several pseudogenes of this gene. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000174780 | SRP72 | signal recognition particle 72kDa | 6731 | This gene encodes the 72 kDa subunit of the signal recognition particle (SRP), a ribonucleoprotein complex that mediates the targeting of secretory proteins to the endoplasmic reticulum (ER). The SRP complex consists of a 7S RNA and 6 protein subunits: SRP9, SRP14, SRP19, SRP54, SRP68, and SRP72, that are bound to the 7S RNA as monomers or heterodimers. SRP has at least 3 distinct functions that can be associated with the protein subunits: signal recognition, translational arrest, and ER membrane targeting by interaction with the docking protein. Mutations in this gene are associated with familial bone marrow failure. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000128040 | SPINK2 | serine peptidase inhibitor, Kazal type 2 | 6691 | This gene encodes a member of the family of serine protease inhibitors of the Kazal type (SPINK). The encoded protein acts as a trypsin and acrosin inhibitor in the genital tract and is localized in the spermatozoa. The protein has been associated with the progression of lymphomas. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000084093 | REST | RE1 silencing transcription factor | 5978 | This gene encodes a transcriptional repressor that represses neuronal genes in non-neuronal tissues. It is a member of the Kruppel-type zinc finger transcription factor family. It represses transcription by binding a DNA sequence element called the neuron-restrictive silencer element. The protein is also found in undifferentiated neuronal progenitor cells and it is thought that this repressor may act as a master negative regular of neurogenesis. Alternatively spliced transcript variants have been described |
| NA | ENSG00000084092 | NOA1 | nitric oxide associated 1 | 84273 | The protein encoded by this gene is a nuclear-encoded GTPase that functions in the mitochondrion. Upon translation, this protein is imported into the nucleus and then into the nucleolus before being exported to the mitochondrion. The encoded protein is required for oxygen-dependent regulation of mitochondrial respiratory complexes and for mitochondrial protein synthesis. |
| NA | ENSG00000047315 | POLR2B | polymerase (RNA) II subunit B | 5431 | This gene encodes the second largest subunit of RNA polymerase II (Pol II), a DNA-dependent RNA polymerase that catalyzes the transcription of DNA into precursors of mRNA, snRNA and microRNA. This subunit and the largest subunit form opposite sides of the center cleft of Pol II. Deletion of the flap loop region of this subunit results in a decrease in the rate of transcriptional elongation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000150471 | ADGRL3 | adhesion G protein-coupled receptor L3 | 23284 | This gene encodes a member of the latrophilin subfamily of G-protein coupled receptors (GPCR). Latrophilins may function in both cell adhesion and signal transduction. In experiments with non-human species, endogenous proteolytic cleavage within a cysteine-rich GPS (G-protein-coupled-receptor proteolysis site) domain resulted in two subunits (a large extracellular N-terminal cell adhesion subunit and a subunit with substantial similarity to the secretin/calcitonin family of GPCRs) being non-covalently bound at the cell membrane. |
| NA | ENSG00000145241 | CENPC | centromere protein C | 1060 | Centromere protein C 1 is a centromere autoantigen and a component of the inner kinetochore plate. The protein is required for maintaining proper kinetochore size and a timely transition to anaphase. A putative pseudogene exists on chromosome 12. |
| NA | ENSG00000083896 | YTHDC1 | YTH domain containing 1 | 91746 | NA |
| NA | ENSG00000132467 | UTP3 | UTP3, small subunit processome component homolog (S. cerevisiae) | 57050 | NA |
| NA | ENSG00000018189 | RUFY3 | RUN and FYVE domain containing 3 | 22902 | NA |
| NA | ENSG00000132463 | GRSF1 | G-rich RNA sequence binding factor 1 | 2926 | The protein encoded by this gene is a cellular protein that binds RNAs containing the G-rich element. The protein is localized in the cytoplasm, and has been shown to stimulate translation of viral mRNAs in vitro. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000173542 | MOB1B | MOB kinase activator 1B | 92597 | The protein encoded by this gene is similar to the yeast Mob1 protein. Yeast Mob1 binds Mps1p, a protein kinase essential for spindle pole body duplication and mitotic checkpoint regulation. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000156136 | DCK | deoxycytidine kinase | 1633 | Deoxycytidine kinase (DCK) is required for the phosphorylation of several deoxyribonucleosides and their nucleoside analogs. Deficiency of DCK is associated with resistance to antiviral and anticancer chemotherapeutic agents. Conversely, increased deoxycytidine kinase activity is associated with increased activation of these compounds to cytotoxic nucleoside triphosphate derivatives. DCK is clinically important because of its relationship to drug resistance and sensitivity. |
| NA | ENSG00000056291 | NPFFR2 | neuropeptide FF receptor 2 | 10886 | This gene encodes a member of a subfamily of G-protein-coupled neuropeptide receptors. This protein is activated by the neuropeptides A-18-amide (NPAF) and F-8-amide (NPFF) and may function in pain modulation and regulation of the opioid system. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000156140 | ADAMTS3 | ADAM metallopeptidase with thrombospondin type 1 motif 3 | 9508 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) protein family. Members of the family share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. The encoded preproprotein is proteolytically processed to generate the mature protease. This protease, a member of the procollagen aminopropeptidase subfamily of proteins, may play a role in the processing of type II fibrillar collagen in articular cartilage. |
| NA | ENSG00000163626 | COX18 | COX18 cytochrome c oxidase assembly factor | 285521 | This gene encodes a cytochrome c oxidase assembly protein. The encoded protein is essential for integral membrane protein insertion into the mitochondrial inner membrane. It is also required for cytochrome c oxidase assembly and activity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000132466 | ANKRD17 | ankyrin repeat domain 17 | 26057 | The protein encoded by this gene belongs to the family of ankyrin repeat-containing proteins, and contains two distinct arrays of ankyrin repeats in its amino-terminal region, one with 15 ankyrin repeats, and the other with 10 ankyrin repeats. It also contains a nuclear export signal, nuclear localization signal, and a cyclin-binding RXL motif. Localization of this protein to the nucleus has been shown experimentally, and interactions between this protein and cyclin-dependent kinase 2 have been observed. It has been suggested that this protein plays a role in both DNA replication and in both anti-viral and anti-bacterial innate immune pathways. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000081051 | AFP | alpha fetoprotein | 174 | This gene encodes alpha-fetoprotein, a major plasma protein produced by the yolk sac and the liver during fetal life. Alpha-fetoprotein expression in adults is often associated with hepatoma or teratoma. However, hereditary persistance of alpha-fetoprotein may also be found in individuals with no obvious pathology. The protein is thought to be the fetal counterpart of serum albumin, and the alpha-fetoprotein and albumin genes are present in tandem in the same transcriptional orientation on chromosome 4. Alpha-fetoprotein is found in monomeric as well as dimeric and trimeric forms, and binds copper, nickel, fatty acids and bilirubin. The level of alpha-fetoprotein in amniotic fluid is used to measure renal loss of protein to screen for spina bifida and anencephaly. |
| NA | ENSG00000124875 | CXCL6 | C-X-C motif chemokine ligand 6 | 6372 | NA |
| NA | ENSG00000163737 | PF4 | platelet factor 4 | 5196 | This gene encodes a member of the CXC chemokine family. This chemokine is released from the alpha granules of activated platelets in the form of a homotetramer which has high affinity for heparin and is involved in platelet aggregation. This protein is chemotactic for numerous other cell type and also functions as an inhibitor of hematopoiesis, angiogenesis and T-cell function. The protein also exhibits antimicrobial activity against Plasmodium falciparum. |
| NA | ENSG00000163735 | CXCL5 | C-X-C motif chemokine ligand 5 | 6374 | This gene encodes a protein that is a member of the CXC subfamily of chemokines. Chemokines, which recruit and activate leukocytes, are classified by function (inflammatory or homeostatic) or by structure. This protein is proposed to bind the G-protein coupled receptor chemokine (C-X-C motif) receptor 2 to recruit neutrophils, to promote angiogenesis and to remodel connective tissues. This protein is thought to play a role in cancer cell proliferation, migration, and invasion. |
| NA | ENSG00000163734 | CXCL3 | C-X-C motif chemokine ligand 3 | 2921 | This antimicrobial gene encodes a member of the CXC subfamily of chemokines. The encoded protein is a secreted growth factor that signals through the G-protein coupled receptor, CXC receptor 2. This protein plays a role in inflammation and as a chemoattractant for neutrophils. |
| NA | ENSG00000163738 | MTHFD2L | methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 2-like | 441024 | NA |
| NA | ENSG00000169116 | PARM1 | prostate androgen-regulated mucin-like protein 1 | 25849 | NA |
| NA | ENSG00000163743 | RCHY1 | ring finger and CHY zinc finger domain containing 1 | 25898 | The protein encoded by this gene has ubiquitin ligase activity. It mediates E3-dependent ubiquitination and proteasomal degradation of target proteins, including tumor protein 53, histone deacetylase 1, and cyclin-dependent kinase inhibitor 1B, thus regulating their levels and cell cycle progression. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000138769 | CDKL2 | cyclin dependent kinase like 2 | 8999 | This gene product is a member of a large family of CDC2-related serine/threonine protein kinases. It accumulates primarily in the cytoplasm, with lower levels in the nucleus. |
| NA | ENSG00000138757 | G3BP2 | G3BP stress granule assembly factor 2 | 9908 | NA |
| NA | ENSG00000138768 | USO1 | USO1 vesicle transport factor | 8615 | The protein encoded by this gene is a peripheral membrane protein which recycles between the cytosol and the Golgi apparatus during interphase. It is regulated by phosphorylation: dephosphorylated protein associates with the Golgi membrane and dissociates from the membrane upon phosphorylation. Ras-associated protein 1 recruits this protein to coat protein complex II (COPII) vesicles during budding from the endoplasmic reticulum, where it interacts with a set of COPII vesicle-associated SNAREs to form a cis-SNARE complex that promotes targeting to the Golgi apparatus. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000138744 | NAAA | N-acylethanolamine acid amidase | 27163 | This gene encodes an N-acylethanolamine-hydrolyzing enzyme which is highly similar to acid ceramidase. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198301 | SDAD1 | SDA1 domain containing 1 | 55153 | NA |
| NA | ENSG00000138750 | NUP54 | nucleoporin 54kDa | 53371 | The nuclear envelope creates distinct nuclear and cytoplasmic compartments in eukaryotic cells. It consists of two concentric membranes perforated by nuclear pores, large protein complexes that form aqueous channels to regulate the flow of macromolecules between the nucleus and the cytoplasm. These complexes are composed of at least 100 different polypeptide subunits, many of which belong to the nucleoporin family. This gene encodes a member of the phe-gly (FG) repeat-containing nucleoporin subset. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000138771 | SHROOM3 | shroom family member 3 | 57619 | This gene encodes a PDZ-domain-containing protein that belongs to a family of Shroom-related proteins. This protein may be involved in regulating cell shape in certain tissues. A similar protein in mice is required for proper neurulation. |
| NA | ENSG00000138758 | SEPT11 | septin 11 | 55752 | SEPT11 belongs to the conserved septin family of filament-forming cytoskeletal GTPases that are involved in a variety of cellular functions including cytokinesis and vesicle trafficking (Hanai et al., 2004 [PubMed 15196925]; Nagata et al., 2004 [PubMed 15485874]). |
| NA | ENSG00000118816 | CCNI | cyclin I | 10983 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance through the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. This cyclin shows the highest similarity with cyclin G. The transcript of this gene was found to be expressed constantly during cell cycle progression. The function of this cyclin has not yet been determined. |
| NA | ENSG00000138764 | CCNG2 | cyclin G2 | 901 | The eukaryotic cell cycle is governed by cyclin-dependent protein kinases (CDKs) whose activities are regulated by cyclins and CDK inhibitors. The 8 species of cyclins reported in mammals, cyclins A through H, share a conserved amino acid sequence of about 90 residues called the cyclin box. The amino acid sequence of cyclin G is well conserved among mammals. The nucleotide sequence of cyclin G1 and cyclin G2 are 53% identical. Unlike cyclin G1, cyclin G2 contains a C-terminal PEST protein destabilization motif, suggesting that cyclin G2 expression is tightly regulated through the cell cycle. |
| NA | ENSG00000138767 | CNOT6L | CCR4-NOT transcription complex subunit 6 like | 246175 | NA |
| NA | ENSG00000169288 | MRPL1 | mitochondrial ribosomal protein L1 | 65008 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein that belongs to the L1 ribosomal protein family. |
| NA | ENSG00000138772 | ANXA3 | annexin A3 | 306 | This gene encodes a member of the annexin family. Members of this calcium-dependent phospholipid-binding protein family play a role in the regulation of cellular growth and in signal transduction pathways. This protein functions in the inhibition of phopholipase A2 and cleavage of inositol 1,2-cyclic phosphate to form inositol 1-phosphate. This protein may also play a role in anti-coagulation. |
| NA | ENSG00000138756 | BMP2K | BMP2 inducible kinase | 55589 | This gene is the human homolog of mouse BMP-2-inducible kinase. Bone morphogenic proteins (BMPs) play a key role in skeletal development and patterning. Expression of the mouse gene is increased during BMP-2 induced differentiation and the gene product is a putative serine/threonine protein kinase containing a nuclear localization signal. Therefore, the protein encoded by this human homolog is thought to be a protein kinase with a putative regulatory role in attenuating the program of osteoblast differentiation. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163291 | PAQR3 | progestin and adipoQ receptor family member III | 152559 | NA |
| NA | ENSG00000163297 | ANTXR2 | anthrax toxin receptor 2 | 118429 | This gene encodes a receptor for anthrax toxin. The protein binds to collagen IV and laminin, suggesting that it may be involved in extracellular matrix adhesion. Mutations in this gene cause juvenile hyaline fibromatosis and infantile systemic hyalinosis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000138668 | HNRNPD | heterogeneous nuclear ribonucleoprotein D | 3184 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are nucleic acid binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has two repeats of quasi-RRM domains that bind to RNAs. It localizes to both the nucleus and the cytoplasm. This protein is implicated in the regulation of mRNA stability. Alternative splicing of this gene results in four transcript variants. |
| NA | ENSG00000152795 | HNRNPDL | heterogeneous nuclear ribonucleoprotein D like | 9987 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has two RRM domains that bind to RNAs. Three alternatively spliced transcript variants have been described for this gene. One of the variants is probably not translated because the transcript is a candidate for nonsense-mediated mRNA decay. The protein isoforms encoded by this gene are similar to its family member HNRPD. |
| NA | ENSG00000145293 | ENOPH1 | enolase-phosphatase 1 | 58478 | NA |
| NA | ENSG00000249242 | TMEM150C | transmembrane protein 150C | 441027 | NA |
| NA | ENSG00000138674 | SEC31A | SEC31 homolog A, COPII coat complex component | 22872 | The protein encoded by this gene shares similarity with the yeast Sec31 protein, and is a component of the outer layer of the coat protein complex II (COPII). The encoded protein is involved in vesicle budding from the endoplasmic reticulum (ER) and contains multiple WD repeats near the N-terminus and a proline-rich region in the C-terminal half. It associates with the protein encoded by the SEC13 homolog, nuclear pore and COPII coat complex component (SEC13), and is required for ER-Golgi transport. Monoubiquitylation of this protein by CUL3-KLHL12 was found to regulate the size of COPII coats to accommodate unusually shaped cargo. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000168152 | THAP9 | THAP domain containing 9 | 79725 | NA |
| NA | ENSG00000189308 | LIN54 | lin-54 DREAM MuvB core complex component | 132660 | LIN54 is a component of the LIN, or DREAM, complex, an essential regulator of cell cycle genes (Schmit et al., 2009 [PubMed 19725879]). |
| NA | ENSG00000138663 | COPS4 | COP9 signalosome subunit 4 | 51138 | This gene encodes one of eight subunits composing COP9 signalosome, a highly conserved protein complex that functions as an important regulator in multiple signaling pathways. The structure and function of COP9 signalosome is similar to that of the 19S regulatory particle of 26S proteasome. COP9 signalosome has been shown to interact with SCF-type E3 ubiquitin ligases and act as a positive regulator of E3 ubiquitin ligases. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000173085 | COQ2 | coenzyme Q2, polyprenyltransferase | 27235 | This gene encodes an enzyme that functions in the final steps in the biosynthesis of CoQ (ubiquinone), a redox carrier in the mitochondrial respiratory chain and a lipid-soluble antioxidant. This enzyme, which is part of the coenzyme Q10 pathway, catalyzes the prenylation of parahydroxybenzoate with an all-trans polyprenyl group. Mutations in this gene cause coenzyme Q10 deficiency, a mitochondrial encephalomyopathy, and also COQ2 nephropathy, an inherited form of mitochondriopathy with primary renal involvement. |
| NA | ENSG00000173083 | HPSE | heparanase | 10855 | Heparan sulfate proteoglycans are major components of the basement membrane and extracellular matrix. The protein encoded by this gene is an enzyme that cleaves heparan sulfate proteoglycans to permit cell movement through remodeling of the extracellular matrix. In addition, this cleavage can release bioactive molecules from the extracellular matrix. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000163312 | HELQ | helicase, POLQ-like | 113510 | HEL308 is a single-stranded DNA-dependent ATPase and DNA helicase (Marini and Wood, 2002 [PubMed 11751861]). |
| NA | ENSG00000163319 | MRPS18C | mitochondrial ribosomal protein S18C | 51023 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S18P family. The encoded protein is one of three that has significant sequence similarity to bacterial S18 proteins. The primary sequences of the three human mitochondrial S18 proteins are no more closely related to each other than they are to the prokaryotic S18 proteins. Pseudogenes corresponding to this gene are found on chromosomes 8p, 12p, 15q, and 22q. |
| NA | ENSG00000163322 | FAM175A | family with sequence similarity 175 member A | 84142 | NA |
| NA | ENSG00000109339 | MAPK10 | mitogen-activated protein kinase 10 | 5602 | The protein encoded by this gene is a member of the MAP kinase family. MAP kinases act as integration points for multiple biochemical signals and are involved in a wide variety of cellular processes, such as proliferation, differentiation, transcription regulation and development. This kinase is specifically expressed in a subset of neurons in the nervous system and is activated by threonine and tyrosine phosphorylation. Targeted deletion of this gene in mice suggests that it may have a role in stress-induced neuronal apoptosis. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. A recent study provided evidence for translational readthrough in this gene and expression of an additional C-terminally extended isoform via the use of an alternative in-frame translation termination codon. |
| NA | ENSG00000163629 | PTPN13 | protein tyrosine phosphatase, non-receptor type 13 | 5783 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP is a large intracellular protein. It has a catalytic PTP domain at its C-terminus and two major structural domains: a region with five PDZ domains and a FERM domain that binds to plasma membrane and cytoskeletal elements. This PTP was found to interact with, and dephosphorylate, Fas receptor and IkappaBalpha through the PDZ domains. This suggests it has a role in Fas mediated programmed cell death. This PTP was also shown to interact with GTPase-activating protein, and thus may function as a regulator of Rho signaling pathways. Four alternatively spliced transcript variants, which encode distinct proteins, have been reported. |
| NA | ENSG00000163633 | LOC100506746 | uncharacterized LOC100506746 | 100506746 | NA |
| NA | ENSG00000163633 | C4orf36 | chromosome 4 open reading frame 36 | 132989 | NA |
| NA | ENSG00000172493 | AFF1 | AF4/FMR2 family member 1 | 4299 | This gene encodes a member of the AF4/ lymphoid nuclear protein related to AF4/Fragile X E mental retardation syndrome family of proteins, which have been implicated in childhood lymphoblastic leukemia, Fragile X E site mental retardation, and ataxia. It is the prevalent mixed-lineage leukemia fusion gene associated with spontaneous acute lymphoblastic leukemia. Members of this family have three conserved domains: an N-terminal homology domain, an AF4/ lymphoid nuclear protein related to AF4/Fragile X E mental retardation syndrome domain, and a C-terminal homology domain. The protein functions as a regulator of RNA polymerase II-mediated transcription through elongation and chromatin remodeling functions. Through RNA interference screens, this gene has been shown to promote the expression of CD133, a plasma membrane glycoprotein required for leukemia cell survival. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145332 | KLHL8 | kelch like family member 8 | 57563 | NA |
| NA | ENSG00000198189 | HSD17B11 | hydroxysteroid (17-beta) dehydrogenase 11 | 51170 | Short-chain alcohol dehydrogenases, such as HSD17B11, metabolize secondary alcohols and ketones (Brereton et al., 2001 [PubMed 11165019]). |
| NA | ENSG00000170502 | NUDT9 | nudix hydrolase 9 | 53343 | The protein encoded by this gene belongs to the Nudix hydrolase family. Nudix boxes are found in a family of diverse enzymes that catalyze the hydrolysis of nucleoside diphosphate derivatives. This enzyme is an ADP-ribose pyrophosphatase that catalyzes the hydrolysis of ADP-ribose to AMP and ribose-5-P. It requires divalent metal ions and an intact Nudix motif for enzymatic activity. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000152583 | SPARCL1 | SPARC like 1 | 8404 | NA |
| NA | ENSG00000118785 | SPP1 | secreted phosphoprotein 1 | 6696 | The protein encoded by this gene is involved in the attachment of osteoclasts to the mineralized bone matrix. The encoded protein is secreted and binds hydroxyapatite with high affinity. The osteoclast vitronectin receptor is found in the cell membrane and may be involved in the binding to this protein. This protein is also a cytokine that upregulates expression of interferon-gamma and interleukin-12. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000118762 | PKD2 | polycystin 2, transient receptor potential cation channel | 5311 | This gene encodes a member of the polycystin protein family. The encoded protein is a multi-pass membrane protein that functions as a calcium permeable cation channel, and is involved in calcium transport and calcium signaling in renal epithelial cells. This protein interacts with polycystin 1, and they may be partners in a common signaling cascade involved in tubular morphogenesis. Mutations in this gene are associated with autosomal dominant polycystic kidney disease type 2. |
| NA | ENSG00000118777 | ABCG2 | ATP binding cassette subfamily G member 2 (Junior blood group) | 9429 | The membrane-associated protein encoded by this gene is included in the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the White subfamily. Alternatively referred to as a breast cancer resistance protein, this protein functions as a xenobiotic transporter which may play a major role in multi-drug resistance. It likely serves as a cellular defense mechanism in response to mitoxantrone and anthracycline exposure. Significant expression of this protein has been observed in the placenta, which may suggest a potential role for this molecule in placenta tissue. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000138642 | HERC6 | HECT and RLD domain containing E3 ubiquitin protein ligase family member 6 | 55008 | HERC6 belongs to the HERC family of ubiquitin ligases, all of which contain a HECT domain and at least 1 RCC1 (MIM 179710)-like domain (RLD). The 350-amino acid HECT domain is predicted to catalyze the formation of a thioester with ubiquitin before transferring it to a substrate, and the RLD is predicted to act as a guanine nucleotide exchange factor for small G proteins (Hochrainer et al., 2005 [PubMed 15676274]). |
| NA | ENSG00000138646 | HERC5 | HECT and RLD domain containing E3 ubiquitin protein ligase 5 | 51191 | This gene is a member of the HERC family of ubiquitin ligases and encodes a protein with a HECT domain and five RCC1 repeats. Pro-inflammatory cytokines upregulate expression of this gene in endothelial cells. The protein localizes to the cytoplasm and perinuclear region and functions as an interferon-induced E3 protein ligase that mediates ISGylation of protein targets. The gene lies in a cluster of HERC family genes on chromosome 4. |
| NA | ENSG00000145337 | PYURF | PIGY upstream reading frame | 100996939 | The product of this gene, which is well-conserved, is encoded by the same bicistronic transcript that encodes phosphatidylinositol glycan anchor biosynthesis, class Y, but the two proteins are unrelated. This gene represents the protein encoded by the upstream open reading frame, while the protein encoded by the downstream open reading frame is represented by GeneID:84992. |
| NA | ENSG00000177432 | NAP1L5 | nucleosome assembly protein 1 like 5 | 266812 | This gene encodes a protein that shares sequence similarity to nucleosome assembly factors, but may be localized to the cytoplasm rather than the nucleus. Expression of this gene is downregulated in hepatocellular carcinomas. This gene is located within a differentially methylated region (DMR) and is imprinted and paternally expressed. There is a related pseudogene on chromosome 4. |
| NA | ENSG00000138640 | FAM13A | family with sequence similarity 13 member A | 10144 | NA |
| NA | ENSG00000180346 | TIGD2 | tigger transposable element derived 2 | 166815 | The protein encoded by this gene belongs to the tigger subfamily of the pogo superfamily of DNA-mediated transposons in humans. These proteins are related to DNA transposons found in fungi and nematodes, and more distantly to the Tc1 and mariner transposases. They are also very similar to the major mammalian centromere protein B. The exact function of this gene is not known. |
| NA | ENSG00000185477 | GPRIN3 | GPRIN family member 3 | 285513 | NA |
| NA | ENSG00000145335 | SNCA | synuclein alpha | 6622 | Alpha-synuclein is a member of the synuclein family, which also includes beta- and gamma-synuclein. Synucleins are abundantly expressed in the brain and alpha- and beta-synuclein inhibit phospholipase D2 selectively. SNCA may serve to integrate presynaptic signaling and membrane trafficking. Defects in SNCA have been implicated in the pathogenesis of Parkinson disease. SNCA peptides are a major component of amyloid plaques in the brains of patients with Alzheimer’s disease. Four alternatively spliced transcripts encoding two different isoforms have been identified for this gene. |
| NA | ENSG00000152208 | GRID2 | glutamate ionotropic receptor delta type subunit 2 | 2895 | The protein encoded by this gene is a member of the family of ionotropic glutamate receptors which are the predominant excitatory neurotransmitter receptors in the mammalian brain. The encoded protein is a multi-pass membrane protein that is expressed selectively in cerebellar Purkinje cells. A point mutation in the mouse ortholog, associated with the phenotype named ‘lurcher’, in the heterozygous state leads to ataxia resulting from selective, cell-autonomous apoptosis of cerebellar Purkinje cells during postnatal development. Mice homozygous for this mutation die shortly after birth from massive loss of mid- and hindbrain neurons during late embryogenesis. This protein also plays a role in synapse organization between parallel fibers and Purkinje cells. Alternate splicing results in multiple transcript variants encoding distinct isoforms. Mutations in this gene cause cerebellar ataxia in humans. |
| NA | ENSG00000163104 | SMARCAD1 | SWI/SNF-related, matrix-associated actin-dependent regulator of chromatin, subfamily a, containing DEAD/H box 1 | 56916 | This gene encodes a member of the SNF subfamily of helicase proteins. The encoded protein plays a critical role in the restoration of heterochromatin organization and propagation of epigenetic patterns following DNA replication by mediating histone H3/H4 deacetylation. Mutations in this gene are associated with adermatoglyphia. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000163106 | HPGDS | hematopoietic prostaglandin D synthase | 27306 | Prostaglandin-D synthase is a sigma class glutathione-S-transferase family member. The enzyme catalyzes the conversion of PGH2 to PGD2 and plays a role in the production of prostanoids in the immune system and mast cells. The presence of this enzyme can be used to identify the differentiation stage of human megakaryocytes. |
| NA | ENSG00000163110 | PDLIM5 | PDZ and LIM domain 5 | 10611 | This gene encodes a member of a family of proteins that possess a 100-amino acid PDZ domain at the N terminus and one to three LIM domains at the C-terminus. This family member functions as a scaffold protein that tethers protein kinases to the Z-disk in striated muscles. It is thought to function in cardiomyocyte expansion and in restraining postsynaptic growth of excitatory synapses. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000138698 | RAP1GDS1 | Rap1 GTPase-GDP dissociation stimulator 1 | 5910 | The smg GDP dissociation stimulator (smgGDS) protein is a stimulatory GDP/GTP exchange protein with GTPase activity (Riess et al., 1993 [PubMed 8262526]). |
| NA | ENSG00000168785 | TSPAN5 | tetraspanin 5 | 10098 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. |
| NA | ENSG00000151247 | EIF4E | eukaryotic translation initiation factor 4E | 1977 | The protein encoded by this gene is a component of the eukaryotic translation initiation factor 4F complex, which recognizes the 7-methylguanosine cap structure at the 5’ end of messenger RNAs. The encoded protein aids in translation initiation by recruiting ribosomes to the 5’-cap structure. Association of this protein with the 4F complex is the rate-limiting step in translation initiation. This gene acts as a proto-oncogene, and its expression and activation is associated with transformation and tumorigenesis. Several pseudogenes of this gene are found on other chromosomes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164024 | METAP1 | methionyl aminopeptidase 1 | 23173 | NA |
| NA | ENSG00000197894 | ADH5 | alcohol dehydrogenase 5 (class III), chi polypeptide | 128 | This gene encodes a member of the alcohol dehydrogenase family. Members of this family metabolize a wide variety of substrates, including ethanol, retinol, other aliphatic alcohols, hydroxysteroids, and lipid peroxidation products. The encoded protein forms a homodimer. It has virtually no activity for ethanol oxidation, but exhibits high activity for oxidation of long-chain primary alcohols and for oxidation of S-hydroxymethyl-glutathione, a spontaneous adduct between formaldehyde and glutathione. This enzyme is an important component of cellular metabolism for the elimination of formaldehyde, a potent irritant and sensitizing agent that causes lacrymation, rhinitis, pharyngitis, and contact dermatitis. The human genome contains several non-transcribed pseudogenes related to this gene. |
| NA | ENSG00000145331 | TRMT10A | tRNA methyltransferase 10A | 93587 | This gene encodes a protein that belongs to the tRNA (Guanine-1)-methyltransferase family. A similar gene in yeast modifies several different tRNA species. Mutations in this gene are associated with microcephaly, short stature, and impaired glucose metabolism. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000109270 | LAMTOR3 | late endosomal/lysosomal adaptor, MAPK and MTOR activator 3 | 8649 | This gene encodes a scaffold protein that functions in the extracellular signal-regulated kinase (ERK) cascade. The protein is localized to late endosomes by the mitogen-activated protein-binding protein-interacting protein, and binds specifically to MAP kinase kinase MAP2K1/MEK1, MAP kinase MAPK3/ERK1, and MAP kinase MAPK1/ERK2. Studies of the orthologous gene in mouse indicate that it regulates late endosomal traffic and cell proliferation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. A pseudogene of this gene is located on the long arm of chromosome 13. |
| NA | ENSG00000164031 | DNAJB14 | DnaJ heat shock protein family (Hsp40) member B14 | 79982 | NA |
| NA | ENSG00000164032 | H2AFZ | H2A histone family member Z | 3015 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene encodes a replication-independent member of the histone H2A family that is distinct from other members of the family. Studies in mice have shown that this particular histone is required for embryonic development and indicate that lack of functional histone H2A leads to embryonic lethality. |
| NA | ENSG00000145358 | DDIT4L | DNA damage inducible transcript 4 like | 115265 | NA |
| NA | ENSG00000254531 | FLJ20021 | uncharacterized LOC90024 | 90024 | NA |
| NA | ENSG00000138821 | SLC39A8 | solute carrier family 39 member 8 | 64116 | This gene encodes a member of the SLC39 family of solute-carrier genes, which show structural characteristics of zinc transporters. The encoded protein is glycosylated and found in the plasma membrane and mitochondria, and functions in the cellular import of zinc at the onset of inflammation. It is also thought to be the primary transporter of the toxic cation cadmium, which is found in cigarette smoke. Multiple transcript variants encoding different isoforms have been found for this gene. Additional alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000109320 | NFKB1 | nuclear factor of kappa light polypeptide gene enhancer in B-cells 1 | 4790 | This gene encodes a 105 kD protein which can undergo cotranslational processing by the 26S proteasome to produce a 50 kD protein. The 105 kD protein is a Rel protein-specific transcription inhibitor and the 50 kD protein is a DNA binding subunit of the NF-kappa-B (NFKB) protein complex. NFKB is a transcription regulator that is activated by various intra- and extra-cellular stimuli such as cytokines, oxidant-free radicals, ultraviolet irradiation, and bacterial or viral products. Activated NFKB translocates into the nucleus and stimulates the expression of genes involved in a wide variety of biological functions. Inappropriate activation of NFKB has been associated with a number of inflammatory diseases while persistent inhibition of NFKB leads to inappropriate immune cell development or delayed cell growth. Alternative splicing results in multiple transcript variants encoding different isoforms, at least one of which is proteolytically processed. |
| NA | ENSG00000109332 | UBE2D3 | ubiquitin conjugating enzyme E2 D3 | 7323 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. This enzyme functions in the ubiquitination of the tumor-suppressor protein p53, which is induced by an E3 ubiquitin-protein ligase. Multiple spliced transcript variants have been found for this gene, but the full-length nature of some variants has not been determined. |
| NA | ENSG00000145354 | CISD2 | CDGSH iron sulfur domain 2 | 493856 | The protein encoded by this gene is a zinc finger protein that localizes to the endoplasmic reticulum. The encoded protein binds an iron/sulfur cluster and may be involved in calcium homeostasis. Defects in this gene are a cause of Wolfram syndrome 2. |
| NA | ENSG00000164038 | SLC9B2 | solute carrier family 9 member B2 | 133308 | Sodium hydrogen antiporters, such as NHEDC2, convert the proton motive force established by the respiratory chain or the F1F0 mitochondrial ATPase into sodium gradients that drive other energy-requiring processes, transduce environmental signals into cell responses, or function in drug efflux (Xiang et al., 2007 [PubMed 18000046]). |
| NA | ENSG00000164039 | BDH2 | 3-hydroxybutyrate dehydrogenase, type 2 | 56898 | NA |
| NA | ENSG00000138778 | CENPE | centromere protein E | 1062 | Centrosome-associated protein E (CENPE) is a kinesin-like motor protein that accumulates in the G2 phase of the cell cycle. Unlike other centrosome-associated proteins, it is not present during interphase and first appears at the centromere region of chromosomes during prometaphase. This protein is required for stable spindle microtubule capture at kinetochores which is a necessary step in chromosome alignment during prometaphase. This protein also couples chromosome position to microtubule depolymerizing activity. Alternative splicing results in multiple transcript variants encoding distinct protein isoforms. |
| NA | ENSG00000169836 | TACR3 | tachykinin receptor 3 | 6870 | This gene belongs to a family of genes that function as receptors for tachykinins. Receptor affinities are specified by variations in the 5’-end of the sequence. The receptors belonging to this family are characterized by interactions with G proteins and 7 hydrophobic transmembrane regions. This gene encodes the receptor for the tachykinin neurokinin 3, also referred to as neurokinin B. |
| NA | ENSG00000168772 | CXXC4 | CXXC finger protein 4 | 80319 | This gene encodes a CXXC-type zinc finger domain-containing protein that functions as an antagonist of the canonical wingless/integrated signaling pathway. The encoded protein negatively regulates wingless/integrated signaling through interaction with the post synaptic density protein/ Drosophila disc large tumor suppressor/ zonula occludens-1 protein domain of Dishevelled, a scaffolding protein required for the stabilization of the transcriptional co-activator beta-catenin. In addition, the CXXC domain of this protein has been shown to bind unmethylated CpG dinucleotides, localize to promoters and CpG islands, and interact with the catalytic domain of methylcytosine dioxygenase ten-eleven-translocation 2, an iron and alpha-ketoglutarate-dependent dioxygenase that modifies the methylation status of DNA. In humans, a mutation in this gene has been associated with development of malignant renal cell carcinoma. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000138785 | INTS12 | integrator complex subunit 12 | 57117 | INTS12 is a subunit of the Integrator complex, which associates with the C-terminal domain of RNA polymerase II large subunit (POLR2A; MIM 180660) and mediates 3-prime end processing of small nuclear RNAs U1 (RNU1; MIM 180680) and U2 (RNU2; MIM 180690) (Baillat et al., 2005 [PubMed 16239144]). |
| NA | ENSG00000138780 | GSTCD | glutathione S-transferase C-terminal domain containing | 79807 | NA |
| NA | ENSG00000145348 | TBCK | TBC1 domain containing kinase | 93627 | This gene encodes a protein that contains a protein kinase domain, a Rhodanase-like domain and the Tre-2/Bub2/Cdc16 (TBC) domain. The encoded protein is thought to play a role in actin organization, cell growth and cell proliferation by regulating the mammalian target of the rapamycin (mTOR) signaling pathway. This protein may also be involved in the transcriptional regulation of the components of the mTOR complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164022 | AIMP1 | aminoacyl tRNA synthetase complex-interacting multifunctional protein 1 | 9255 | The protein encoded by this gene is a cytokine that is specifically induced by apoptosis, and it is involved in the control of angiogenesis, inflammation, and wound healing. The release of this cytokine renders the tumor-associated vasculature sensitive to tumor necrosis factor. The precursor protein is identical to the p43 subunit, which is associated with the multi-tRNA synthetase complex, and it modulates aminoacylation activity of tRNA synthetase in normal cells. This protein is also involved in the stimulation of inflammatory responses after proteolytic cleavage in tumor cells. Multiple transcript variants encoding different isoforms have been found for this gene. A pseudogene has been identified on chromosome 20. |
| NA | ENSG00000138801 | PAPSS1 | 3’-phosphoadenosine 5’-phosphosulfate synthase 1 | 9061 | Three-prime-phosphoadenosine 5-prime-phosphosulfate (PAPS) is the sulfate donor cosubstrate for all sulfotransferase (SULT) enzymes (Xu et al., 2000 [PubMed 10679223]). SULTs catalyze the sulfate conjugation of many endogenous and exogenous compounds, including drugs and other xenobiotics. In humans, PAPS is synthesized from adenosine 5-prime triphosphate (ATP) and inorganic sulfate by 2 isoforms, PAPSS1 and PAPSS2 (MIM 603005). |
| NA | ENSG00000138796 | HADH | hydroxyacyl-CoA dehydrogenase | 3033 | This gene is a member of the 3-hydroxyacyl-CoA dehydrogenase gene family. The encoded protein functions in the mitochondrial matrix to catalyze the oxidation of straight-chain 3-hydroxyacyl-CoAs as part of the beta-oxidation pathway. Its enzymatic activity is highest with medium-chain-length fatty acids. Mutations in this gene cause one form of familial hyperinsulinemic hypoglycemia. The human genome contains a related pseudogene of this gene on chromosome 15. |
| NA | ENSG00000109475 | RPL34 | ribosomal protein L34 | 6164 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L34E family of ribosomal proteins. It is located in the cytoplasm. This gene originally was thought to be located at 17q21, but it has been mapped to 4q. Overexpression of this gene has been observed in some cancer cells. Alternative splicing results in multiple transcript variants, all encoding the same isoform. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000198856 | OSTC | oligosaccharyltransferase complex subunit (non-catalytic) | 58505 | NA |
| NA | ENSG00000164089 | ETNPPL | ethanolamine-phosphate phospho-lyase | 64850 | NA |
| NA | ENSG00000188517 | COL25A1 | collagen type XXV alpha 1 | 84570 | This gene encodes a brain-specific membrane associated collagen. A product of proteolytic processing of the encoded protein, CLAC (collagenous Alzheimer amyloid plaque component), binds to amyloid beta-peptides found in Alzheimer amyloid plaques but CLAC inhibits rather than facilitates amyloid fibril elongation (PMID: 16300410). A study of over-expression of this collagen in mice, however, found changes in pathology and behavior suggesting that the encoded protein may promote amyloid plaque formation (PMID: 19548013). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000138802 | SEC24B | SEC24 homolog B, COPII coat complex component | 10427 | The protein encoded by this gene is a member of the SEC24 subfamily of the SEC23/SEC24 family, which is involved in vesicle trafficking. The encoded protein is thought to be a cargo-binding component of the COPII vesicle, and is thought to be involved in the transport of secretory proteins from the endoplasmic reticulum to the Golgi apparatus. Mutations in this gene have been associated with neural tube defects, and are thought to be a result of a disruption in interactions with the protein encoded by the VANGL planar cell polarity protein 2 (VANGL2) gene. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000005059 | CCDC109B | coiled-coil domain containing 109B | 55013 | NA |
| NA | ENSG00000123739 | PLA2G12A | phospholipase A2 group XIIA | 81579 | Secreted phospholipase A2 (sPLA2) enzymes liberate arachidonic acid from phospholipids for production of eicosanoids and exert a variety of physiologic and pathologic effects. Group XII sPLA2s, such as PLA2G12A, have relatively low specific activity and are structurally and functionally distinct from other sPLA2s (Gelb et al., 2000 [PubMed 11031251]). |
| NA | ENSG00000109534 | GAR1 | GAR1 ribonucleoprotein | 54433 | This gene is a member of the H/ACA snoRNPs (small nucleolar ribonucleoproteins) gene family. snoRNPs are involved in various aspects of rRNA processing and modification and have been classified into two families: C/D and H/ACA. The H/ACA snoRNPs also include the DKC1, NOLA2 and NOLA3 proteins. These four H/ACA snoRNP proteins localize to the dense fibrillar components of nucleoli and to coiled (Cajal) bodies in the nucleus. Both 18S rRNA production and rRNA pseudouridylation are impaired if any one of the four proteins is depleted. These four H/ACA snoRNP proteins are also components of the telomerase complex. The encoded protein of this gene contains two glycine- and arginine-rich domains and is related to Saccharomyces cerevisiae Gar1p. Two splice variants have been found for this gene. |
| NA | ENSG00000138798 | EGF | epidermal growth factor | 1950 | This gene encodes a member of the epidermal growth factor superfamily. The encoded preproprotein is proteolytically processed to generate the 53-amino acid epidermal growth factor peptide. This protein acts a potent mitogenic factor that plays an important role in the growth, proliferation and differentiation of numerous cell types. This protein acts by binding with high affinity to the cell surface receptor, epidermal growth factor receptor. Defects in this gene are the cause of hypomagnesemia type 4. Dysregulation of this gene has been associated with the growth and progression of certain cancers. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed. |
| NA | ENSG00000170522 | ELOVL6 | ELOVL fatty acid elongase 6 | 79071 | Fatty acid elongases (EC 6.2.1.3), such as ELOVL6, use malonyl-CoA as a 2-carbon donor in the first and rate-limiting step of fatty acid elongation (Moon et al., 2001 [PubMed 11567032]). |
| NA | ENSG00000145365 | TIFA | TRAF interacting protein with forkhead associated domain | 92610 | NA |
| NA | ENSG00000174720 | LARP7 | La ribonucleoprotein domain family member 7 | 51574 | This gene encodes a protein which is found in the 7SK snRNP (small nuclear ribonucleoprotein). This snRNP complex inhibits a cyclin-dependent kinase, positive transcription elongation factor b, which is required for paused RNA polymerase II at a promoter to begin transcription elongation. A pseudogene of this gene is located on chromosome 3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145362 | ANK2 | ankyrin 2, neuronal | 287 | This gene encodes a member of the ankyrin family of proteins that link the integral membrane proteins to the underlying spectrin-actin cytoskeleton. Ankyrins play key roles in activities such as cell motility, activation, proliferation, contact and the maintenance of specialized membrane domains. Most ankyrins are typically composed of three structural domains: an amino-terminal domain containing multiple ankyrin repeats; a central region with a highly conserved spectrin binding domain; and a carboxy-terminal regulatory domain which is the least conserved and subject to variation. The protein encoded by this gene is required for targeting and stability of Na/Ca exchanger 1 in cardiomyocytes. Mutations in this gene cause long QT syndrome 4 and cardiac arrhythmia syndrome. Multiple transcript variants encoding different isoforms have been described. |
| NA | ENSG00000145349 | CAMK2D | calcium/calmodulin-dependent protein kinase II delta | 817 | The product of this gene belongs to the serine/threonine protein kinase family and to the Ca(2+)/calmodulin-dependent protein kinase subfamily. Calcium signaling is crucial for several aspects of plasticity at glutamatergic synapses. In mammalian cells, the enzyme is composed of four different chains: alpha, beta, gamma, and delta. The product of this gene is a delta chain. Alternative splicing results in multiple transcript variants encoding distinct isoforms. Distinct isoforms of this chain have different expression patterns. |
| NA | ENSG00000180801 | ARSJ | arylsulfatase family member J | 79642 | Sulfatases (EC 3.1.5.6), such as ARSJ, hydrolyze sulfate esters from sulfated steroids, carbohydrates, proteoglycans, and glycolipids. They are involved in hormone biosynthesis, modulation of cell signaling, and degradation of macromolecules (Sardiello et al., 2005 [PubMed 16174644]). |
| NA | ENSG00000270394 | MTRNR2L13 | MT-RNR2-like 13 | ENSG00000270394 | NA |
| NA | ENSG00000164099 | PRSS12 | protease, serine 12 | 8492 | This gene encodes a member of the trypsin family of serine proteases. Studies in mouse suggest that the encoded enzyme may be involved in structural reorganizations associated with learning and memory. The enzyme is also expressed in Leydig cells in the testis, but its function in this tissue is unknown. Defects in this gene are a cause of mental retardation autosomal recessive type 1 (MRT1). |
| NA | ENSG00000145388 | METTL14 | methyltransferase like 14 | 57721 | NA |
| NA | ENSG00000150961 | SEC24D | SEC24 homolog D, COPII coat complex component | 9871 | The protein encoded by this gene is a member of the SEC24 subfamily of the SEC23/SEC24 family, which is involved in vesicle trafficking. The encoded protein has similarity to yeast Sec24p component of COPII. COPII is the coat protein complex responsible for vesicle budding from the ER. This gene product is implicated in the shaping of the vesicle, and also in cargo selection and concentration. Mutations in this gene have been associated with Cole-Carpenter syndrome, a disorder affecting bone formation, resulting in craniofacial malformations and bones that break easily. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000172403 | SYNPO2 | synaptopodin 2 | 171024 | NA |
| NA | ENSG00000145390 | USP53 | ubiquitin specific peptidase 53 | 54532 | NA |
| NA | ENSG00000164096 | C4orf3 | chromosome 4 open reading frame 3 | 401152 | NA |
| NA | ENSG00000138735 | PDE5A | phosphodiesterase 5A | 8654 | This gene encodes a cGMP-binding, cGMP-specific phosphodiesterase, a member of the cyclic nucleotide phosphodiesterase family. This phosphodiesterase specifically hydrolyzes cGMP to 5’-GMP. It is involved in the regulation of intracellular concentrations of cyclic nucleotides and is important for smooth muscle relaxation in the cardiovascular system. Alternative splicing of this gene results in three transcript variants encoding distinct isoforms. |
| NA | ENSG00000164109 | MAD2L1 | MAD2 mitotic arrest deficient-like 1 (yeast) | 4085 | MAD2L1 is a component of the mitotic spindle assembly checkpoint that prevents the onset of anaphase until all chromosomes are properly aligned at the metaphase plate. MAD2L1 is related to the MAD2L2 gene located on chromosome 1. A MAD2 pseudogene has been mapped to chromosome 14. |
| NA | ENSG00000138738 | PRDM5 | PR domain 5 | 11107 | The protein encoded by this gene is a transcription factor of the PR-domain protein family. It contains a PR-domain and multiple zinc finger motifs. Transcription factors of the PR-domain family are known to be involved in cell differentiation and tumorigenesis. |
| NA | ENSG00000164111 | ANXA5 | annexin A5 | 308 | The protein encoded by this gene belongs to the annexin family of calcium-dependent phospholipid binding proteins some of which have been implicated in membrane-related events along exocytotic and endocytotic pathways. Annexin 5 is a phospholipase A2 and protein kinase C inhibitory protein with calcium channel activity and a potential role in cellular signal transduction, inflammation, growth and differentiation. Annexin 5 has also been described as placental anticoagulant protein I, vascular anticoagulant-alpha, endonexin II, lipocortin V, placental protein 4 and anchorin CII. The gene spans 29 kb containing 13 exons, and encodes a single transcript of approximately 1.6 kb and a protein product with a molecular weight of about 35 kDa. |
| NA | ENSG00000123737 | EXOSC9 | exosome component 9 | 5393 | This gene encodes a component of the human exosome, a exoribonuclease complex which processes and degrades RNA in the nucleus and cytoplasm. This component may play a role in mRNA degradation and the polymyositis/scleroderma autoantigen complex. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145386 | CCNA2 | cyclin A2 | 890 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance through the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. In contrast to cyclin A1, which is present only in germ cells, this cyclin is expressed in all tissues tested. This cyclin binds and activates CDC2 or CDK2 kinases, and thus promotes both cell cycle G1/S and G2/M transitions. |
| NA | ENSG00000138686 | BBS7 | Bardet-Biedl syndrome 7 | 55212 | This gene encodes one of eight proteins that form the BBSome complex containing BBS1, BBS2, BBS4, BBS5, BBS7, BBS8, BBS9 and BBIP10. The BBSome complex is believed to recruit Rab8(GTP) to the primary cilium and promote ciliogenesis. The BBSome complex assembly is mediated by a complex composed of three chaperonin-like BBS proteins (BBS6, BBS10, and BBS12) and CCT/TRiC family chaperonins. Mutations in this gene are implicated in Bardet-Biedl syndrome, a genetic disorder whose symptoms include obesity, retinal degeneration, polydactyly and nephropathy; however, mutations in this gene and the BBS8 gene are thought to play a minor role and mutations in chaperonin-like BBS genes are found to be a major contributor to disease development in a multiethnic Bardet-Biedl syndrome patient population. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000138688 | KIAA1109 | KIAA1109 | 84162 | This gene is located on the long arm of chromosome 4 in a region that is associated with susceptibility to celiac disease. The encoded protein is similar to a Chinese hamster protein that is associated with spermatocyte and adipocyte differentiation. The C-terminus of the protein is also similar to a Caenorhabditis elegans protein that plays a role in lipid storage. In mammals, this protein is thought to function in the regulation of epithelial growth and differentiation, and in tumor development. |
| NA | ENSG00000181004 | BBS12 | Bardet-Biedl syndrome 12 | 166379 | The protein encoded by this gene is part of a complex that is involved in membrane trafficking. The encoded protein is a molecular chaperone that aids in protein folding upon ATP hydrolysis. This protein also plays a role in adipocyte differentiation. Defects in this gene are a cause of Bardet-Biedl syndrome type 12. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000138685 | FGF2 | fibroblast growth factor 2 | 2247 | The protein encoded by this gene is a member of the fibroblast growth factor (FGF) family. FGF family members bind heparin and possess broad mitogenic and angiogenic activities. This protein has been implicated in diverse biological processes, such as limb and nervous system development, wound healing, and tumor growth. The mRNA for this gene contains multiple polyadenylation sites, and is alternatively translated from non-AUG (CUG) and AUG initiation codons, resulting in five different isoforms with distinct properties. The CUG-initiated isoforms are localized in the nucleus and are responsible for the intracrine effect, whereas, the AUG-initiated form is mostly cytosolic and is responsible for the paracrine and autocrine effects of this FGF. |
| NA | ENSG00000170917 | NUDT6 | nudix hydrolase 6 | 11162 | This gene overlaps and lies on the opposite strand from FGF2 gene, and is thought to be the FGF2 antisense gene. The two genes are independently transcribed, and their expression shows an inverse relationship, suggesting that this antisense transcript may regulate FGF2 expression. This gene has also been shown to have hormone-regulatory and antiproliferative actions in the pituitary that are independent of FGF2 expression. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000145375 | SPATA5 | spermatogenesis associated 5 | 166378 | NA |
| NA | ENSG00000164056 | SPRY1 | sprouty RTK signaling antagonist 1 | 10252 | NA |
| NA | ENSG00000196159 | FAT4 | FAT atypical cadherin 4 | 79633 | The protein encoded by this gene is a member of the protocadherin family. This gene may play a role in regulating planar cell polarity (PCP). Studies in mice suggest that loss of PCP signaling may cause cystic kidney disease, and mutations in this gene have been associated with Van Maldergem Syndrome 2. Alternatively spliced transcript variants have been noted for this gene. |
| NA | ENSG00000164066 | INTU | inturned planar cell polarity protein | 27152 | NA |
| NA | ENSG00000142731 | PLK4 | polo like kinase 4 | 10733 | This gene encodes a member of the polo family of serine/threonine protein kinases. The protein localizes to centrioles, complex microtubule-based structures found in centrosomes, and regulates centriole duplication during the cell cycle. Three alternatively spliced transcript variants that encode different protein isoforms have been found for this gene. |
| NA | ENSG00000164073 | MFSD8 | major facilitator superfamily domain containing 8 | 256471 | This gene encodes a ubiquitous integral membrane protein that contains a transporter domain and a major facilitator superfamily (MFS) domain. Other members of the major facilitator superfamily transport small solutes through chemiosmotic ion gradients. The substrate transported by this protein is unknown. The protein likely localizes to lysosomal membranes. Mutations in this gene are correlated with a variant form of late infantile-onset neuronal ceroid lipofuscinoses (vLINCL). |
| NA | ENSG00000164074 | ABHD18 | abhydrolase domain containing 18 | 80167 | NA |
| NA | ENSG00000138709 | LARP1B | La ribonucleoprotein domain family member 1B | 55132 | This gene encodes a protein containing domains found in the La related protein of Drosophila melanogaster. La motif-containing proteins are thought to be RNA-binding proteins, where the La motif and adjacent amino acids fold into an RNA recognition motif. The La motif is also found in proteins unrelated to the La protein. Alternative splicing has been observed at this locus and multiple variants, encoding distinct isoforms, are described. Additional splice variation has been identified but the full-length nature of these transcripts has not been determined. |
| NA | ENSG00000164040 | PGRMC2 | progesterone receptor membrane component 2 | 10424 | NA |
| NA | ENSG00000077684 | JADE1 | jade family PHD finger 1 | 79960 | NA |
| NA | ENSG00000151466 | SCLT1 | sodium channel and clathrin linker 1 | 132320 | This gene encodes an adaptor protein. Studies of a related gene in rat suggest that the encoded protein functions to link clathrin to the sodium channel protein type 10 subunit alpha protein. The encoded protein has also been identified as a component of distal appendages of centrioles that is necessary for ciliogenesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000151470 | C4orf33 | chromosome 4 open reading frame 33 | 132321 | NA |
| NA | ENSG00000138650 | PCDH10 | protocadherin 10 | 57575 | This gene belongs to the protocadherin gene family, a subfamily of the cadherin superfamily. This family member contains 6 extracellular cadherin domains, a transmembrane domain and a cytoplasmic tail differing from those of the classical cadherins. The encoded protein is a cadherin-related neuronal receptor thought to function in the establishment of specific cell-cell connections in the brain. This gene plays a role in inhibiting cancer cell motility and cell migration. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000189184 | PCDH18 | protocadherin 18 | 54510 | This gene belongs to the protocadherin gene family, a subfamily of the cadherin superfamily. This gene encodes a protein which contains 6 extracellular cadherin domains, a transmembrane domain and a cytoplasmic tail differing from those of the classical cadherins. Although its specific function is undetermined, the cadherin-related neuronal receptor is thought to play a role in the establishment and function of specific cell-cell connections in the brain. |
| NA | ENSG00000109381 | ELF2 | E74 like ETS transcription factor 2 | 1998 | NA |
| NA | ENSG00000109390 | NDUFC1 | NADH:ubiquinone oxidoreductase subunit C1 | 4717 | The encoded protein is a subunit of the NADH:ubiquinone oxidoreductase (complex I), the first enzyme complex in the electron transport chain located in the inner mitochondrial membrane. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164134 | NAA15 | N(alpha)-acetyltransferase 15, NatA auxiliary subunit | 80155 | This gene encodes a protein of unknown function. However, similarity to proteins in yeast and other species suggests that this protein may be an N-acetyltransferase. |
| NA | ENSG00000172007 | RAB33B | RAB33B, member RAS oncogene family | 83452 | Small GTP-binding proteins of the RAB family, such as RAB33B, play important roles at defined steps of vesicular transport in protein secretion and the endocytosis pathway (Zheng et al., 1998 [PubMed 9512502]). |
| NA | ENSG00000145391 | SETD7 | SET domain containing lysine methyltransferase 7 | 80854 | NA |
| NA | ENSG00000196782 | MAML3 | mastermind like transcriptional coactivator 3 | 55534 | NA |
| NA | ENSG00000153130 | SCOC | short coiled-coil protein | 60592 | This gene encodes a short coiled-coiled domain-containing protein that localizes to the Golgi apparatus. The encoded protein interacts with ADP-ribosylation factor-like proteins. Pseudogenes of this gene are found on chromosomes 1 and 14. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000153132 | CLGN | calmegin | 1047 | Calmegin is a testis-specific endoplasmic reticulum chaperone protein. CLGN may play a role in spermatogeneisis and infertility. |
| NA | ENSG00000109436 | TBC1D9 | TBC1 domain family member 9 | 23158 | NA |
| NA | ENSG00000170153 | RNF150 | ring finger protein 150 | 57484 | NA |
| NA | ENSG00000109445 | ZNF330 | zinc finger protein 330 | 27309 | NA |
| NA | ENSG00000170185 | USP38 | ubiquitin specific peptidase 38 | 84640 | NA |
| NA | ENSG00000109458 | GAB1 | GRB2 associated binding protein 1 | 2549 | The protein encoded by this gene is a member of the IRS1-like multisubstrate docking protein family. It is an important mediator of branching tubulogenesis and plays a central role in cellular growth response, transformation and apoptosis. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000153147 | SMARCA5 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 5 | 8467 | The protein encoded by this gene is a member of the SWI/SNF family of proteins. Members of this family have helicase and ATPase activities and are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The protein encoded by this gene is a component of the chromatin remodeling and spacing factor RSF, a facilitator of the transcription of class II genes by RNA polymerase II. The encoded protein is similar in sequence to the Drosophila ISWI chromatin remodeling protein. |
| NA | ENSG00000164163 | ABCE1 | ATP binding cassette subfamily E member 1 | 6059 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the OABP subfamily. Alternatively referred to as the RNase L inhibitor, this protein functions to block the activity of ribonuclease L. Activation of ribonuclease L leads to inhibition of protein synthesis in the 2-5A/RNase L system, the central pathway for viral interferon action. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000164164 | OTUD4 | OTU deubiquitinase 4 | 54726 | Alternatively spliced transcript variants have been found for this gene. The smaller protein isoform encoded by the shorter transcript variant is found only in HIV-1 infected cells. |
| NA | ENSG00000170365 | SMAD1 | SMAD family member 1 | 4086 | The protein encoded by this gene belongs to the SMAD, a family of proteins similar to the gene products of the Drosophila gene ‘mothers against decapentaplegic’ (Mad) and the C. elegans gene Sma. SMAD proteins are signal transducers and transcriptional modulators that mediate multiple signaling pathways. This protein mediates the signals of the bone morphogenetic proteins (BMPs), which are involved in a range of biological activities including cell growth, apoptosis, morphogenesis, development and immune responses. In response to BMP ligands, this protein can be phosphorylated and activated by the BMP receptor kinase. The phosphorylated form of this protein forms a complex with SMAD4, which is important for its function in the transcription regulation. This protein is a target for SMAD-specific E3 ubiquitin ligases, such as SMURF1 and SMURF2, and undergoes ubiquitination and proteasome-mediated degradation. Alternatively spliced transcript variants encoding the same protein have been observed. |
| NA | ENSG00000151611 | MMAA | methylmalonic aciduria (cobalamin deficiency) cblA type | 166785 | The protein encoded by this gene is involved in the translocation of cobalamin into the mitochondrion, where it is used in the final steps of adenosylcobalamin synthesis. Adenosylcobalamin is a coenzyme required for the activity of methylmalonyl-CoA mutase. Defects in this gene are a cause of methylmalonic aciduria. |
| NA | ENSG00000151612 | ZNF827 | zinc finger protein 827 | 152485 | NA |
| NA | ENSG00000120519 | SLC10A7 | solute carrier family 10 member 7 | 84068 | NA |
| NA | ENSG00000151617 | EDNRA | endothelin receptor type A | 1909 | This gene encodes the receptor for endothelin-1, a peptide that plays a role in potent and long-lasting vasoconstriction. This receptor associates with guanine-nucleotide-binding (G) proteins, and this coupling activates a phosphatidylinositol-calcium second messenger system. Polymorphisms in this gene have been linked to migraine headache resistance. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164168 | TMEM184C | transmembrane protein 184C | 55751 | NA |
| NA | ENSG00000164169 | PRMT9 | protein arginine methyltransferase 9 | 90826 | NA |
| NA | ENSG00000071205 | ARHGAP10 | Rho GTPase activating protein 10 | 79658 | NA |
| NA | ENSG00000145425 | RPS3A | ribosomal protein S3A | 6189 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S3AE family of ribosomal proteins. It is located in the cytoplasm. Disruption of the gene encoding rat ribosomal protein S3a, also named v-fos transformation effector protein, in v-fos-transformed rat cells results in reversion of the transformed phenotype. This gene is co-transcribed with the U73A and U73B small nucleolar RNA genes, which are located in its fourth and third introns, respectively. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000109686 | SH3D19 | SH3 domain containing 19 | 152503 | This gene encodes a multiple SH3 domain-containing protein, which interacts with other proteins, such as EBP and members of ADAM family, via the SH3 domains. This protein may be involved in suppression of Ras-induced cellular transformation and Ras-mediated activation of ELK1 by EBP, and regulation of ADAM proteins in the signaling of EGFR-ligand shedding. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164142 | FAM160A1 | family with sequence similarity 160 member A1 | 729830 | NA |
| NA | ENSG00000059691 | GATB | glutamyl-tRNA(Gln) amidotransferase, subunit B | 5188 | NA |
| NA | ENSG00000109670 | FBXW7 | F-box and WD repeat domain containing 7 | 55294 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene was previously referred to as FBX30, and belongs to the Fbws class; in addition to an F-box, this protein contains 7 tandem WD40 repeats. This protein binds directly to cyclin E and probably targets cyclin E for ubiquitin-mediated degradation. Mutations in this gene are detected in ovarian and breast cancer cell lines, implicating the gene’s potential role in the pathogenesis of human cancers. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000170006 | TMEM154 | transmembrane protein 154 | 201799 | NA |
| NA | ENSG00000169989 | TIGD4 | tigger transposable element derived 4 | 201798 | The protein encoded by this gene belongs to the tigger subfamily of the pogo superfamily of DNA-mediated transposons in humans. These proteins are related to DNA transposons found in fungi and nematodes, and more distantly to the Tc1 and mariner transposases. They are also very similar to the major mammalian centromere protein B. The exact function of this gene is not known. |
| NA | ENSG00000137460 | FHDC1 | FH2 domain containing 1 | 85462 | NA |
| NA | ENSG00000121210 | KIAA0922 | KIAA0922 | 23240 | NA |
| NA | ENSG00000145428 | RNF175 | ring finger protein 175 | 285533 | NA |
| NA | ENSG00000145423 | SFRP2 | secreted frizzled-related protein 2 | 6423 | This gene encodes a member of the SFRP family that contains a cysteine-rich domain homologous to the putative Wnt-binding site of Frizzled proteins. SFRPs act as soluble modulators of Wnt signaling. Methylation of this gene is a potential marker for the presence of colorectal cancer. |
| NA | ENSG00000171566 | PLRG1 | pleiotropic regulator 1 | 5356 | This gene encodes a core component of the cell division cycle 5-like (CDC5L) complex. The CDC5L complex is part of the spliceosome and is required for pre-mRNA splicing. The encoded protein plays a critical role in alternative splice site selection. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000164114 | MAP9 | microtubule associated protein 9 | 79884 | ASAP is a microtubule-associated protein required for spindle function, mitotic progression, and cytokinesis (Saffin et al., 2005 [PubMed 16049101]). |
| NA | ENSG00000061918 | GUCY1B3 | guanylate cyclase 1, soluble, beta 3 | 2983 | This gene encodes the beta subunit of the soluble guanylate cyclase (sGC), which catalyzes the conversion of GTP (guanosine triphosphate) to cGMP (cyclic guanosine monophosphate). The encoded protein contains an HNOX domain, which serves as a receptor for ligands such as nitric oxide, oxygen and nitrovasodilator drugs. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164124 | TMEM144 | transmembrane protein 144 | 55314 | NA |
| NA | ENSG00000205208 | C4orf46 | chromosome 4 open reading frame 46 | 201725 | This gene encodes a small, conserved protein of unknown function that is expressed in a variety of tissues. There are pseudogenes for this gene on chromosomes 6, 8, 16, and X. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171503 | ETFDH | electron transfer flavoprotein dehydrogenase | 2110 | This gene encodes a component of the electron-transfer system in mitochondria and is essential for electron transfer from a number of mitochondrial flavin-containing dehydrogenases to the main respiratory chain. Mutations in this gene are associated with glutaric acidemia. Alternatively spliced transcript variants that encode distinct isoforms have been observed. |
| NA | ENSG00000171497 | PPID | peptidylprolyl isomerase D | 5481 | The protein encoded by this gene is a member of the peptidyl-prolyl cis-trans isomerase (PPIase) family. PPIases catalyze the cis-trans isomerization of proline imidic peptide bonds in oligopeptides and accelerate the folding of proteins. This protein has been shown to possess PPIase activity and, similar to other family members, can bind to the immunosuppressant cyclosporin A. |
| NA | ENSG00000052795 | FNIP2 | folliculin interacting protein 2 | 57600 | NA |
| NA | ENSG00000145414 | NAF1 | nuclear assembly factor 1 ribonucleoprotein | 92345 | NA |
| NA | ENSG00000164128 | NPY1R | neuropeptide Y receptor Y1 | 4886 | This gene belongs to the G-protein-coupled receptor superfamily. The encoded transmembrane protein mediates the function of neuropeptide Y (NPY), a neurotransmitter, and peptide YY (PYY), a gastrointestinal hormone. The encoded receptor undergoes fast agonist-induced internalization through clathrin-coated pits and is subsequently recycled back to the cell membrane. Activation of Y1 receptors may result in mobilization of intracellular calcium and inhibition of adenylate cyclase activity. |
| NA | ENSG00000183439 | TRIM61 | tripartite motif containing 61 | 391712 | NA |
| NA | ENSG00000250486 | FAM218A | family with sequence similarity 218 member A | 152756 | NA |
| NA | ENSG00000170088 | TMEM192 | transmembrane protein 192 | 201931 | NA |
| NA | ENSG00000109466 | KLHL2 | kelch like family member 2 | 11275 | NA |
| NA | ENSG00000052802 | MSMO1 | methylsterol monooxygenase 1 | 6307 | Sterol-C4-mehtyl oxidase-like protein was isolated based on its similarity to the yeast ERG25 protein. It contains a set of putative metal binding motifs with similarity to that seen in a family of membrane desaturases-hydroxylases. The protein is localized to the endoplasmic reticulum membrane and is believed to function in cholesterol biosynthesis. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000109472 | CPE | carboxypeptidase E | 1363 | This gene encodes a member of the M14 family of metallocarboxypeptidases. The encoded preproprotein is proteolytically processed to generate the mature peptidase. This peripheral membrane protein cleaves C-terminal amino acid residues and is involved in the biosynthesis of peptide hormones and neurotransmitters, including insulin. This protein may also function independently of its peptidase activity, as a neurotrophic factor that promotes neuronal survival, and as a sorting receptor that binds to regulated secretory pathway proteins, including prohormones. Mutations in this gene are implicated in type 2 diabetes. |
| NA | ENSG00000137628 | DDX60 | DEXD/H-box helicase 60 | 55601 | NA |
| NA | ENSG00000129116 | PALLD | palladin, cytoskeletal associated protein | 23022 | This gene encodes a cytoskeletal protein that is required for organizing the actin cytoskeleton. The protein is a component of actin-containing microfilaments, and it is involved in the control of cell shape, adhesion, and contraction. Polymorphisms in this gene are associated with a susceptibility to pancreatic cancer type 1, and also with a risk for myocardial infarction. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145439 | CBR4 | carbonyl reductase 4 | 84869 | NA |
| NA | ENSG00000154447 | SH3RF1 | SH3 domain containing ring finger 1 | 57630 | This gene encodes a protein containing an N-terminus RING-finger, four SH3 domains, and a region implicated in binding of the Rho GTPase Rac. Via the RING-finger, the encoded protein has been shown to function as an ubiquitin-protein ligase involved in protein sorting at the trans-Golgi network. The encoded protein may also act as a scaffold for the c-Jun N-terminal kinase signaling pathway, facilitating the formation of a functional signaling module. |
| NA | ENSG00000137601 | NEK1 | NIMA related kinase 1 | 4750 | The protein encoded by this gene is a serine/threonine kinase involved in cell cycle regulation. The encoded protein is found in a centrosomal complex with FEZ1, a neuronal protein that plays a role in axonal development. Defects in this gene are a cause of polycystic kidney disease (PKD). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000109572 | CLCN3 | chloride voltage-gated channel 3 | 1182 | This gene encodes a member of the voltage-gated chloride channel (ClC) family. The encoded protein is present in all cell types and localized in plasma membranes and in intracellular vesicles. It is a multi-pass membrane protein which contains a ClC domain and two additional C-terminal CBS (cystathionine beta-synthase) domains. The ClC domain catalyzes the selective flow of Cl- ions across cell membranes, and the CBS domain may have a regulatory function. This protein plays a role in both acidification and transmitter loading of GABAergic synaptic vesicles, and in smooth muscle cell activation and neointima formation. This protein is required for lysophosphatidic acid (LPA)-activated Cl- current activity and fibroblast-to-myofibroblast differentiation. The protein activity is regulated by Ca(2+)/calmodulin-dependent protein kinase II (CaMKII) in glioma cells. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000056050 | C4orf27 | chromosome 4 open reading frame 27 | 54969 | NA |
| NA | ENSG00000198948 | MFAP3L | microfibrillar associated protein 3 like | 9848 | NA |
| NA | ENSG00000109576 | AADAT | aminoadipate aminotransferase | 51166 | This gene encodes a protein that is highly similar to mouse and rat kynurenine aminotransferase II. The rat protein is a homodimer with two transaminase activities. One activity is the transamination of alpha-aminoadipic acid, a final step in the saccaropine pathway which is the major pathway for L-lysine catabolism. The other activity involves the transamination of kynurenine to produce kynurenine acid, the precursor of kynurenic acid which has neuroprotective properties. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000164105 | SAP30 | Sin3A associated protein 30kDa | 8819 | Histone acetylation plays a key role in the regulation of eukaryotic gene expression. Histone acetylation and deacetylation are catalyzed by multisubunit complexes. The protein encoded by this gene is a component of the histone deacetylase complex, which includes SIN3, SAP18, HDAC1, HDAC2, RbAp46, RbAp48, and other polypeptides. This complex is active in deacetylating core histone octamers, but inactive in deacetylating nucleosomal histones. A pseudogene of this gene is located on chromosome 3. |
| NA | ENSG00000164117 | FBXO8 | F-box protein 8 | 26269 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class. It contains a C-terminal amino acid sequence that bears a significant similarity with a portion of yeast Sec7p, a critical regulator of vesicular protein transport. This human protein may interact with ADP-ribosylation factor(s)(ARFs) and exhibit ARF-GEF (guanine nucleotide exchange factor) activity. |
| NA | ENSG00000164118 | CEP44 | centrosomal protein 44kDa | 80817 | NA |
| NA | ENSG00000150625 | GPM6A | glycoprotein M6A | 2823 | NA |
| NA | ENSG00000150627 | WDR17 | WD repeat domain 17 | 116966 | This gene encodes a WD repeat-containing protein. It is abundantly expressed in retina and testis, and is thought to be a candidate gene for retinal disease. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000129128 | SPCS3 | signal peptidase complex subunit 3 | 60559 | NA |
| NA | ENSG00000109674 | NEIL3 | nei like DNA glycosylase 3 | 55247 | NEIL3 belongs to a class of DNA glycosylases homologous to the bacterial Fpg/Nei family. These glycosylases initiate the first step in base excision repair by cleaving bases damaged by reactive oxygen species and introducing a DNA strand break via the associated lyase reaction (Bandaru et al., 2002 [PubMed 12509226]). |
| NA | ENSG00000038002 | AGA | aspartylglucosaminidase | 175 | This gene encodes a member of the N-terminal nucleophile (Ntn) hydrolase family of proteins. The encoded preproprotein is proteolytically processed to generate alpha and beta chains that comprise the mature enzyme. This enzyme is involved in the catabolism of N-linked oligosaccharides of glycoproteins. It cleaves asparagine from N-acetylglucosamines as one of the final steps in the lysosomal breakdown of glycoproteins. Mutations in this gene are associated with the lysosomal storage disease aspartylglycosaminuria that results in progressive neurodegeneration. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is subject to proteolytic processing. |
| NA | ENSG00000218336 | TENM3 | teneurin transmembrane protein 3 | 55714 | This gene encodes a large transmembrane protein that may be involved in the regulation of neuronal development. Mutation in this gene causes microphthalmia. |
| NA | ENSG00000129187 | DCTD | dCMP deaminase | 1635 | The protein encoded by this gene catalyzes the deamination of dCMP to dUMP, the nucleotide substrate for thymidylate synthase. The encoded protein is allosterically activated by dCTP and inhibited by dTTP, and is found as a homohexamer. This protein uses zinc as a cofactor for its activity. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000168564 | CDKN2AIP | CDKN2A interacting protein | 55602 | The protein encoded by this gene regulates the DNA damage response through several different signaling pathways. One such pathway is the p53-HDM2-p21(WAF1) pathway, which is critical to the DNA damage response. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000182552 | RWDD4 | RWD domain containing 4 | 201965 | NA |
| NA | ENSG00000168538 | TRAPPC11 | trafficking protein particle complex 11 | 60684 | The protein encoded by this gene is a subunit of the TRAPP (transport protein particle) tethering complex, which functions in intracellular vesicle trafficking. This subunit is involved in early stage endoplasmic reticulum-to-Golgi vesicle transport. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000173320 | STOX2 | storkhead box 2 | 56977 | This gene encodes a Storkhead-box_winged-helix domain containing protein. This protein is differentially expressed in decidual tissue and may be involved in the susceptibility to pre-eclampsia with fetal growth restriction. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000168310 | IRF2 | interferon regulatory factor 2 | 3660 | IRF2 encodes interferon regulatory factor 2, a member of the interferon regulatory transcription factor (IRF) family. IRF2 competitively inhibits the IRF1-mediated transcriptional activation of interferons alpha and beta, and presumably other genes that employ IRF1 for transcription activation. However, IRF2 also functions as a transcriptional activator of histone H4. |
| NA | ENSG00000164305 | CASP3 | caspase 3 | 836 | This gene encodes a protein which is a member of the cysteine-aspartic acid protease (caspase) family. Sequential activation of caspases plays a central role in the execution-phase of cell apoptosis. Caspases exist as inactive proenzymes which undergo proteolytic processing at conserved aspartic residues to produce two subunits, large and small, that dimerize to form the active enzyme. This protein cleaves and activates caspases 6, 7 and 9, and the protein itself is processed by caspases 8, 9 and 10. It is the predominant caspase involved in the cleavage of amyloid-beta 4A precursor protein, which is associated with neuronal death in Alzheimer’s disease. Alternative splicing of this gene results in two transcript variants that encode the same protein. |
| NA | ENSG00000164306 | PRIMPOL | primase and DNA directed polymerase | 201973 | NA |
| NA | ENSG00000151725 | CENPU | centromere protein U | 79682 | The centromere is a specialized chromatin domain, present throughout the cell cycle, that acts as a platform on which the transient assembly of the kinetochore occurs during mitosis. All active centromeres are characterized by the presence of long arrays of nucleosomes in which CENPA (MIM 117139) replaces histone H3 (see MIM 601128). MLF1IP, or CENPU, is an additional factor required for centromere assembly (Foltz et al., 2006 [PubMed 16622419]). |
| NA | ENSG00000151726 | ACSL1 | acyl-CoA synthetase long-chain family member 1 | 2180 | The protein encoded by this gene is an isozyme of the long-chain fatty-acid-coenzyme A ligase family. Although differing in substrate specificity, subcellular localization, and tissue distribution, all isozymes of this family convert free long-chain fatty acids into fatty acyl-CoA esters, and thereby play a key role in lipid biosynthesis and fatty acid degradation. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000151729 | SLC25A4 | solute carrier family 25 member 4 | 291 | This gene is a member of the mitochondrial carrier subfamily of solute carrier protein genes. The product of this gene functions as a gated pore that translocates ADP from the cytoplasm into the mitochondrial matrix and ATP from the mitochondrial matrix into the cytoplasm. The protein forms a homodimer embedded in the inner mitochondria membrane. Mutations in this gene have been shown to result in autosomal dominant progressive external opthalmoplegia and familial hypertrophic cardiomyopathy. |
| NA | ENSG00000164323 | CFAP97 | cilia and flagella associated protein 97 | 57587 | NA |
| NA | ENSG00000109762 | SNX25 | sorting nexin 25 | 83891 | NA |
| NA | ENSG00000109775 | UFSP2 | UFM1-specific peptidase 2 | 55325 | Like ubiquitin (see MIM 191339), ubiquitin-fold modifier-1 (UFM1; MIM 610553) must be processed by a protease before it can conjugate with its target proteins. UFSP2 is a thiol protease that specifically processes the C terminus of UFM1 (Kang et al., 2007 [PubMed 17182609]). |
| NA | ENSG00000205129 | C4orf47 | chromosome 4 open reading frame 47 | 441054 | NA |
| NA | ENSG00000168491 | CCDC110 | coiled-coil domain containing 110 | 256309 | NA |
| NA | ENSG00000154553 | PDLIM3 | PDZ and LIM domain 3 | 27295 | The protein encoded by this gene contains a PDZ domain and a LIM domain, indicating that it may be involved in cytoskeletal assembly. In support of this, the encoded protein has been shown to bind the spectrin-like repeats of alpha-actinin-2 and to colocalize with alpha-actinin-2 at the Z lines of skeletal muscle. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. Aberrant alternative splicing of this gene may play a role in myotonic dystrophy. |
| NA | ENSG00000154556 | SORBS2 | sorbin and SH3 domain containing 2 | 8470 | Arg and c-Abl represent the mammalian members of the Abelson family of non-receptor protein-tyrosine kinases. They interact with the Arg/Abl binding proteins via the SH3 domains present in the carboxy end of the latter group of proteins. This gene encodes the sorbin and SH3 domain containing 2 protein. It has three C-terminal SH3 domains and an N-terminal sorbin homology (SoHo) domain that interacts with lipid raft proteins. The subcellular localization of this protein in epithelial and cardiac muscle cells suggests that it functions as an adapter protein to assemble signaling complexes in stress fibers, and that it is a potential link between Abl family kinases and the actin cytoskeleton. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000164342 | TLR3 | toll like receptor 3 | 7098 | The protein encoded by this gene is a member of the Toll-like receptor (TLR) family which plays a fundamental role in pathogen recognition and activation of innate immunity. TLRs are highly conserved from Drosophila to humans and share structural and functional similarities. They recognize pathogen-associated molecular patterns (PAMPs) that are expressed on infectious agents, and mediate the production of cytokines necessary for the development of effective immunity. The various TLRs exhibit different patterns of expression. This receptor is most abundantly expressed in placenta and pancreas, and is restricted to the dendritic subpopulation of the leukocytes. It recognizes dsRNA associated with viral infection, and induces the activation of NF-kappaB and the production of type I interferons. It may thus play a role in host defense against viruses. Use of alternative polyadenylation sites to generate different length transcripts has been noted for this gene. |
| NA | ENSG00000109794 | FAM149A | family with sequence similarity 149 member A | 25854 | NA |
| NA | ENSG00000145476 | CYP4V2 | cytochrome P450 family 4 subfamily V member 2 | 285440 | This gene encodes a member of the cytochrome P450 hemethiolate protein superfamily which are involved in oxidizing various substrates in the metabolic pathway. It is implicated in the metabolism of fatty acid precursors into n-3 polyunsaturated fatty acids. Mutations in this gene result in Bietti crystalline corneoretinal dystrophy. |
| NA | ENSG00000164344 | KLKB1 | kallikrein B1 | 3818 | This gene encodes a glycoprotein that participates in the surface-dependent activation of blood coagulation, fibrinolysis, kinin generation and inflammation. The encoded preproprotein present in plasma as a non-covalent complex with high molecular weight kininogen undergoes proteolytic processing mediated by activated coagulation factor XII to generate a disulfide-linked, heterodimeric serine protease comprised of heavy and light chains. Certain mutations in this gene cause prekallikrein deficiency. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000083857 | FAT1 | FAT atypical cadherin 1 | 2195 | This gene is an ortholog of the Drosophila fat gene, which encodes a tumor suppressor essential for controlling cell proliferation during Drosophila development. The gene product is a member of the cadherin superfamily, a group of integral membrane proteins characterized by the presence of cadherin-type repeats. In addition to containing 34 tandem cadherin-type repeats, the gene product has five epidermal growth factor (EGF)-like repeats and one laminin A-G domain. This gene is expressed at high levels in a number of fetal epithelia. Its product probably functions as an adhesion molecule and/or signaling receptor, and is likely to be important in developmental processes and cell communication. Transcript variants derived from alternative splicing and/or alternative promoter usage exist, but they have not been fully described. |
| NA | ENSG00000179059 | ZFP42 | ZFP42 zinc finger protein | 132625 | NA |
| NA | ENSG00000179046 | TRIML2 | tripartite motif family like 2 | 205860 | This gene encodes a member of the tri-partite motif (TRIM) family of proteins. This protein may be regulated by the tumor suppressor p53 and may regulate p53 through the enhancement of p53 SUMOylation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000109536 | FRG1 | FSHD region gene 1 | 2483 | This gene maps to a location 100 kb centromeric of the repeat units on chromosome 4q35 which are deleted in facioscapulohumeral muscular dystrophy (FSHD). It is evolutionarily conserved and has related sequences on multiple human chromosomes but DNA sequence analysis did not reveal any homology to known genes. In vivo studies demonstrate the encoded protein is localized to the nucleolus. |
| NA | ENSG00000153404 | PLEKHG4B | pleckstrin homology and RhoGEF domain containing G4B | 153478 | NA |
| NA | ENSG00000164366 | CCDC127 | coiled-coil domain containing 127 | 133957 | NA |
| NA | ENSG00000073578 | SDHA | succinate dehydrogenase complex flavoprotein subunit A | 6389 | This gene encodes a major catalytic subunit of succinate-ubiquinone oxidoreductase, a complex of the mitochondrial respiratory chain. The complex is composed of four nuclear-encoded subunits and is localized in the mitochondrial inner membrane. Mutations in this gene have been associated with a form of mitochondrial respiratory chain deficiency known as Leigh Syndrome. A pseudogene has been identified on chromosome 3q29. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000249915 | PDCD6 | programmed cell death 6 | 10016 | This gene encodes a calcium-binding protein belonging to the penta-EF-hand protein family. Calcium binding is important for homodimerization and for conformational changes required for binding to other protein partners. This gene product participates in T cell receptor-, Fas-, and glucocorticoid-induced programmed cell death. In mice deficient for this gene product, however, apoptosis was not blocked suggesting this gene product is functionally redundant. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is also located on the short arm of chromosome 5. |
| NA | ENSG00000221990 | EXOC3-AS1 | EXOC3 antisense RNA 1 | ENSG00000221990 | NA |
| NA | ENSG00000180104 | EXOC3 | exocyst complex component 3 | 11336 | The protein encoded by this gene is a component of the exocyst complex, a multiple protein complex essential for targeting exocytic vesicles to specific docking sites on the plasma membrane. Though best characterized in yeast, the component proteins and functions of exocyst complex have been demonstrated to be highly conserved in higher eukaryotes. At least eight components of the exocyst complex, including this protein, are found to interact with the actin cytoskeletal remodeling and vesicle transport machinery. The complex is also essential for the biogenesis of epithelial cell surface polarity. |
| NA | ENSG00000188242 | PP7080 | uncharacterized LOC25845 | 25845 | NA |
| NA | ENSG00000112877 | CEP72 | centrosomal protein 72kDa | 55722 | The product of this gene is a member of the leucine-rich-repeat (LRR) superfamily of proteins. The protein is localized to the centrosome, a non-membraneous organelle that functions as the major microtubule-organizing center in animal cells. |
| NA | ENSG00000188818 | ZDHHC11 | zinc finger DHHC-type containing 11 | 79844 | NA |
| NA | ENSG00000028310 | BRD9 | bromodomain containing 9 | 65980 | NA |
| NA | ENSG00000071539 | TRIP13 | thyroid hormone receptor interactor 13 | 9319 | This gene encodes a protein that interacts with thyroid hormone receptors, also known as hormone-dependent transcription factors. The gene product interacts specifically with the ligand binding domain. This gene is one of several that may play a role in early-stage non-small cell lung cancer. |
| NA | ENSG00000113504 | SLC12A7 | solute carrier family 12 member 7 | 10723 | NA |
| NA | ENSG00000164362 | TERT | telomerase reverse transcriptase | 7015 | Telomerase is a ribonucleoprotein polymerase that maintains telomere ends by addition of the telomere repeat TTAGGG. The enzyme consists of a protein component with reverse transcriptase activity, encoded by this gene, and an RNA component which serves as a template for the telomere repeat. Telomerase expression plays a role in cellular senescence, as it is normally repressed in postnatal somatic cells resulting in progressive shortening of telomeres. Deregulation of telomerase expression in somatic cells may be involved in oncogenesis. Studies in mouse suggest that telomerase also participates in chromosomal repair, since de novo synthesis of telomere repeats may occur at double-stranded breaks. Alternatively spliced variants encoding different isoforms of telomerase reverse transcriptase have been identified; the full-length sequence of some variants has not been determined. Alternative splicing at this locus is thought to be one mechanism of regulation of telomerase activity. |
| NA | ENSG00000049656 | CLPTM1L | CLPTM1-like | 81037 | The protein encoded by this gene is a membrane protein whose overexpression in cisplatin-sensitive cells causes apoptosis. Polymorphisms in this gene have been reported to increase susceptibility to several cancers, including lung, pancreatic, and breast cancers. |
| NA | ENSG00000153395 | LPCAT1 | lysophosphatidylcholine acyltransferase 1 | 79888 | Lysophosphatidylcholine (LPC) acyltransferase (LPCAT; EC 2.3.1.23) catalyzes the conversion of LPC to phosphatidylcholine (PC) in the remodeling pathway of PC biosynthesis (Nakanishi et al., 2006 [PubMed 16704971]). |
| NA | ENSG00000171421 | MRPL36 | mitochondrial ribosomal protein L36 | 64979 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. A pseudogene corresponding to this gene is found on chromosome 2p. |
| NA | ENSG00000145494 | NDUFS6 | NADH:ubiquinone oxidoreductase subunit S6 | 4726 | This gene encodes a subunit of the NADH:ubiquinone oxidoreductase (complex I), which is the first enzyme complex in the electron transport chain of mitochondria. This complex functions in the transfer of electrons from NADH to the respiratory chain. The subunit encoded by this gene is one of seven subunits in the iron-sulfur protein fraction. Mutations in this gene cause mitochondrial complex I deficiency, a disease that causes a wide variety of clinical disorders, including neonatal disease and adult-onset neurodegenerative disorders. |
| NA | ENSG00000170561 | IRX2 | iroquois homeobox 2 | 153572 | IRX2 is a member of the Iroquois homeobox gene family. Members of this family appear to play multiple roles during pattern formation of vertebrate embryos. |
| NA | ENSG00000145536 | ADAMTS16 | ADAM metallopeptidase with thrombospondin type 1 motif 16 | 170690 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) protein family. ADAMTS family members share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. The protein encoded by this gene has high sequence similarity to the protein encoded by ADAMTS18, another family member. |
| NA | ENSG00000164151 | ICE1 | interactor of little elongation complex ELL subunit 1 | 23379 | NA |
| NA | ENSG00000133398 | MED10 | mediator complex subunit 10 | 84246 | MED10 is a component of the Mediator complex, which is a coactivator for DNA-binding factors that activate transcription via RNA polymerase II (Sato et al., 2003 [PubMed 12584197]). |
| NA | ENSG00000037474 | NSUN2 | NOP2/Sun RNA methyltransferase family member 2 | 54888 | This gene encodes a methyltransferase that catalyzes the methylation of cytosine to 5-methylcytosine (m5C) at position 34 of intron-containing tRNA(Leu)(CAA) precursors. This modification is necessary to stabilize the anticodon-codon pairing and correctly translate the mRNA. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000145545 | SRD5A1 | steroid 5 alpha-reductase 1 | 6715 | Steroid 5-alpha-reductase (EC 1.3.99.5) catalyzes the conversion of testosterone into the more potent androgen, dihydrotestosterone (DHT). Also see SRD5A2 (MIM 607306). |
| NA | ENSG00000112941 | PAPD7 | PAP associated domain containing 7 | 11044 | The protein encoded by this gene is a DNA polymerase that is likely involved in DNA repair. In addition, the encoded protein may be required for sister chromatid adhesion. Alternatively spliced transcript variants that encode different isoforms have been described. |
| NA | ENSG00000078295 | ADCY2 | adenylate cyclase 2 (brain) | 108 | This gene encodes a member of the family of adenylate cyclases, which are membrane-associated enzymes that catalyze the formation of the secondary messenger cyclic adenosine monophosphate (cAMP). This enzyme is insensitive to Ca(2+)/calmodulin, and is stimulated by the G protein beta and gamma subunit complex. |
| NA | ENSG00000124275 | MTRR | 5-methyltetrahydrofolate-homocysteine methyltransferase reductase | 4552 | This gene encodes a member of the ferredoxin-NADP(+) reductase (FNR) family of electron transferases. This protein functions in the synthesis of methionine by regenerating methionine synthase to a functional state. Because methionine synthesis requires methyl-group transfer by a folate donor, activity of the encoded enzyme is important for folate metabolism and cellular methylation. Mutations in this gene can cause homocystinuria-megaloblastic anemia, cbl E type. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000124279 | FASTKD3 | FAST kinase domains 3 | 79072 | This gene encodes a member of a small family of Fas-activated serine/threonine kinase domain (FASTKD) containing proteins that share an amino terminal mitochondrial targeting domain and multiple carboxy terminal FAST domains as well as a putative RNA-binding RAP domain. The members of this family are ubiquitously expressed and are generally most abundant in mitochondria-enriched tissues such as heart, skeletal muscle and brown-adipose tissue. Some members of this protein family may play a role in apoptosis. The protein encoded by this gene interacts with components of the mitochondrial respiratory and translation networks. A pseudogene of this gene is also present on chromosome 5. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000112902 | SEMA5A | semaphorin 5A | 9037 | This gene belongs to the semaphorin gene family that encodes membrane proteins containing a semaphorin domain and several thrombospondin type-1 repeats. Members of this family are involved in axonal guidance during neural development. This gene has been implicated as an autism susceptibility gene. |
| NA | ENSG00000150756 | FAM173B | family with sequence similarity 173 member B | 134145 | NA |
| NA | ENSG00000150753 | CCT5 | chaperonin containing TCP1 subunit 5 | 22948 | The protein encoded by this gene is a molecular chaperone that is a member of the chaperonin containing TCP1 complex (CCT), also known as the TCP1 ring complex (TRiC). This complex consists of two identical stacked rings, each containing eight different proteins. Unfolded polypeptides enter the central cavity of the complex and are folded in an ATP-dependent manner. The complex folds various proteins, including actin and tubulin. Mutations in this gene cause hereditary sensory and autonomic neuropathy with spastic paraplegia (HSNSP). Alternative splicing results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 5 and 13. |
| NA | ENSG00000145495 | MARCH6 | membrane associated ring-CH-type finger 6 | 10299 | This gene encodes a member of a family of membrane-associated E3 ubiquitin ligases containing RING-CH-type zinc finger motifs. Ubiquitination of type II deiodinase by the encoded protein is an important regulatory step in thyroid hormone signalling. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000112977 | DAP | death-associated protein | 1611 | This gene encodes a basic, proline-rich, 15-kD protein. The protein acts as a positive mediator of programmed cell death that is induced by interferon-gamma. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000169862 | CTNND2 | catenin delta 2 | 1501 | This gene encodes an adhesive junction associated protein of the armadillo/beta-catenin superfamily and is implicated in brain and eye development and cancer formation. The protein encoded by this gene promotes the disruption of E-cadherin based adherens junction to favor cell spreading upon stimulation by hepatocyte growth factor. This gene is overexpressed in prostate adenocarcinomas and is associated with decreased expression of tumor suppressor E-cadherin in this tissue. This gene resides in a region of the short arm of chromosome 5 that is deleted in Cri du Chat syndrome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000145569 | FAM105A | family with sequence similarity 105 member A | 54491 | NA |
| NA | ENSG00000154124 | OTULIN | OTU deubiquitinase with linear linkage specificity | 90268 | NA |
| NA | ENSG00000154122 | ANKH | ANKH inorganic pyrophosphate transport regulator | 56172 | This gene encodes a multipass transmembrane protein that is expressed in joints and other tissues and controls pyrophosphate levels in cultured cells. Progressive ankylosis-mediated control of pyrophosphate levels has been suggested as a possible mechanism regulating tissue calcification and susceptibility to arthritis in higher animals. Mutations in this gene have been associated with autosomal dominant craniometaphyseal dysplasia. |
| NA | ENSG00000183580 | FBXL7 | F-box and leucine-rich repeat protein 7 | 23194 | This gene encodes a member of the F-box protein family which is characterized by a 42-48 amino acid motif, the F-box, which binds to the S-phase kinase-associated protein 1 (Skp1) protein. The F-box proteins constitute one of the four subunits of E3 ubiquitin protein ligases called SCFs (SKP1-Cul1-F-box), which play a role in phosphorylation-dependent ubiquitination of proteins. The F-box proteins are divided into 3 subfamilies based on the other domain in the protein: F-box proteins that also have a WD-40 domain (Fbws subfamily), F-box proteins that also have leucine-rich repeats (Fbls subfamily) and F-box proteins that contain other motifs or lack known protein-interaction domains (Fbxs subfamily). The protein encoded by this gene belongs to the Fbls subfamily. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000173545 | ZNF622 | zinc finger protein 622 | 90441 | NA |
| NA | ENSG00000145555 | MYO10 | myosin X | 4651 | This gene encodes a member of the myosin superfamily. The protein represents an unconventional myosin; it should not be confused with the conventional non-muscle myosin-10 (MYH10). Unconventional myosins contain the basic domains of conventional myosins and are further distinguished from class members by their tail domains. This gene functions as an actin-based molecular motor and plays a role in integration of F-actin and microtubule cytoskeletons during meiosis. |
| NA | ENSG00000176788 | BASP1 | brain abundant membrane attached signal protein 1 | 10409 | This gene encodes a membrane bound protein with several transient phosphorylation sites and PEST motifs. Conservation of proteins with PEST sequences among different species supports their functional significance. PEST sequences typically occur in proteins with high turnover rates. Immunological characteristics of this protein are species specific. This protein also undergoes N-terminal myristoylation. Alternative splicing results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000113100 | CDH9 | cadherin 9 | 1007 | This gene encodes a type II classical cadherin from the cadherin superfamily, integral membrane proteins that mediate calcium-dependent cell-cell adhesion. Mature cadherin proteins are composed of a large N-terminal extracellular domain, a single membrane-spanning domain, and a small, highly conserved C-terminal cytoplasmic domain. The extracellular domain consists of 5 subdomains, each containing a cadherin motif, and appears to determine the specificity of the protein’s homophilic cell adhesion activity. Type II (atypical) cadherins are defined based on their lack of a HAV cell adhesion recognition sequence specific to type I cadherins. |
| NA | ENSG00000113360 | DROSHA | drosha ribonuclease III | 29102 | Members of the ribonuclease III superfamily of double-stranded (ds) RNA-specific endoribonucleases participate in diverse RNA maturation and decay pathways in eukaryotic and prokaryotic cells (Fortin et al., 2002 [PubMed 12191433]). The RNase III Drosha is the core nuclease that executes the initiation step of microRNA (miRNA) processing in the nucleus (Lee et al., 2003 [PubMed 14508493]). |
| NA | ENSG00000133401 | PDZD2 | PDZ domain containing 2 | 23037 | The protein encoded by this gene contains six PDZ domains and shares sequence similarity with pro-interleukin-16 (pro-IL-16). Like pro-IL-16, the encoded protein localizes to the endoplasmic reticulum and is thought to be cleaved by a caspase to produce a secreted peptide containing two PDZ domains. In addition, this gene is upregulated in primary prostate tumors and may be involved in the early stages of prostate tumorigenesis. |
| NA | ENSG00000113384 | GOLPH3 | golgi phosphoprotein 3 | 64083 | The Golgi complex plays a key role in the sorting and modification of proteins exported from the endoplasmic reticulum. The protein encoded by this gene is a peripheral membrane protein of the Golgi stack and may have a regulatory role in Golgi trafficking. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of these variants has not been determined. |
| NA | ENSG00000150712 | MTMR12 | myotubularin related protein 12 | 54545 | Phosphatidylinositide 3-kinase-derived membrane-anchored phosphatidylinositides, such as phosphatidylinositol 3-phosphate (PtdIns(3)P), regulate diverse cellular processes. The protein encoded by this gene functions as an adaptor subunit in a complex with an active PtdIns(3)P 3-phosphatase. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000113387 | SUB1 | SUB1 homolog, transcriptional regulator | 10923 | NA |
| NA | ENSG00000113407 | TARS | threonyl-tRNA synthetase | 6897 | Aminoacyl-tRNA synthetases catalyze the aminoacylation of tRNA by their cognate amino acid. Because of their central role in linking amino acids with nucleotide triplets contained in tRNAs, aminoacyl-tRNA synthetases are thought to be among the first proteins that appeared in evolution. Threonyl-tRNA synthetase belongs to the class-II aminoacyl-tRNA synthetase family |
| NA | ENSG00000151388 | ADAMTS12 | ADAM metallopeptidase with thrombospondin type 1 motif 12 | 81792 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) protein family. Members of the family share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS-1) motif. Individual members of this family differ in the number of C-terminal TS-1 motifs, and some have unique C-terminal domains. The enzyme encoded by this gene contains eight TS-1 motifs. It may play roles in pulmonary cells during fetal development or in tumor processes through its proteolytic activity or as a molecule potentially involved in regulation of cell adhesion. |
| NA | ENSG00000242110 | AMACR | alpha-methylacyl-CoA racemase | 23600 | This gene encodes a racemase. The encoded enzyme interconverts pristanoyl-CoA and C27-bile acylCoAs between their (R)- and (S)-stereoisomers. The conversion to the (S)-stereoisomers is necessary for degradation of these substrates by peroxisomal beta-oxidation. Encoded proteins from this locus localize to both mitochondria and peroxisomes. Mutations in this gene may be associated with adult-onset sensorimotor neuropathy, pigmentary retinopathy, and adrenomyeloneuropathy due to defects in bile acid synthesis. Alternatively spliced transcript variants have been described. Read-through transcription also exists between this gene and the upstream neighboring C1QTNF3 (C1q and tumor necrosis factor related protein 3) gene. |
| NA | ENSG00000039560 | RAI14 | retinoic acid induced 14 | 26064 | NA |
| NA | ENSG00000113456 | RAD1 | RAD1 checkpoint DNA exonuclease | 5810 | This gene encodes a component of a heterotrimeric cell cycle checkpoint complex, known as the 9-1-1 complex, that is activated to stop cell cycle progression in response to DNA damage or incomplete DNA replication. The 9-1-1 complex is recruited by RAD17 to affected sites where it may attract specialized DNA polymerases and other DNA repair effectors. Alternatively spliced transcript variants of this gene have been described. |
| NA | ENSG00000113460 | BRIX1 | BRX1, biogenesis of ribosomes | 55299 | NA |
| NA | ENSG00000152582 | SPEF2 | sperm flagellar 2 | 79925 | NA |
| NA | ENSG00000145626 | UGT3A1 | UDP glycosyltransferase family 3 member A1 | 133688 | NA |
| NA | ENSG00000164187 | LMBRD2 | LMBR1 domain containing 2 | 92255 | NA |
| NA | ENSG00000145604 | SKP2 | S-phase kinase-associated protein 2, E3 ubiquitin protein ligase | 6502 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbls class; in addition to an F-box, this protein contains 10 tandem leucine-rich repeats. This protein is an essential element of the cyclin A-CDK2 S-phase kinase. It specifically recognizes phosphorylated cyclin-dependent kinase inhibitor 1B (CDKN1B, also referred to as p27 or KIP1) predominantly in S phase and interacts with S-phase kinase-associated protein 1 (SKP1 or p19). In addition, this gene is established as a protooncogene causally involved in the pathogenesis of lymphomas. Alternative splicing of this gene generates three transcript variants encoding different isoforms. |
| NA | ENSG00000152620 | NADK2 | NAD kinase 2, mitochondrial | 133686 | This gene encodes a mitochondrial kinase that catalyzes the phosphorylation of NAD to yield NADP. Mutations in this gene result in 2,4-dienoyl-CoA reductase deficiency. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164190 | NIPBL | Nipped-B homolog (Drosophila) | 25836 | This gene encodes the homolog of the Drosophila melanogaster Nipped-B gene product and fungal Scc2-type sister chromatid cohesion proteins. The Drosophila protein facilitates enhancer-promoter communication of remote enhancers and plays a role in developmental regulation. It is also homologous to a family of chromosomal adherins with broad roles in sister chromatid cohesion, chromosome condensation, and DNA repair. The human protein has a bipartite nuclear targeting sequence and a putative HEAT repeat. Condensins, cohesins and other complexes with chromosome-related functions also contain HEAT repeats. Mutations in this gene result in Cornelia de Lange syndrome, a disorder characterized by dysmorphic facial features, growth delay, limb reduction defects, and mental retardation. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197603 | C5orf42 | chromosome 5 open reading frame 42 | 65250 | The protein encoded by this gene has putative coiled-coil domains and may be a transmembrane protein. Defects in this gene are a cause of Joubert syndrome (JBTS). |
| NA | ENSG00000113569 | NUP155 | nucleoporin 155kDa | 9631 | Nucleoporins are proteins that play an important role in the assembly and functioning of the nuclear pore complex (NPC) which regulates the movement of macromolecules across the nuclear envelope (NE). The protein encoded by this gene plays a role in the fusion of NE vesicles and formation of the double membrane NE. The protein may also be involved in cardiac physiology and may be associated with the pathogenesis of atrial fibrillation. Alternative splicing results in multiple transcript variants of this gene. A pseudogene associated with this gene is located on chromosome 6. |
| NA | ENSG00000082068 | WDR70 | WD repeat domain 70 | 55100 | NA |
| NA | ENSG00000113594 | LIFR | leukemia inhibitory factor receptor alpha | 3977 | This gene encodes a protein that belongs to the type I cytokine receptor family. This protein combines with a high-affinity converter subunit, gp130, to form a receptor complex that mediates the action of the leukemia inhibitory factor, a polyfunctional cytokine that is involved in cellular differentiation, proliferation and survival in the adult and the embryo. Mutations in this gene cause Schwartz-Jampel syndrome type 2, a disease belonging to the group of the bent-bone dysplasias. A translocation that involves the promoter of this gene, t(5;8)(p13;q12) with the pleiomorphic adenoma gene 1, is associated with salivary gland pleiomorphic adenoma, a common type of benign epithelial tumor of the salivary gland. Multiple splice variants encoding the same protein have been found for this gene. |
| NA | ENSG00000164327 | RICTOR | RPTOR independent companion of MTOR, complex 2 | 253260 | RICTOR and MTOR (FRAP1; MIM 601231) are components of a protein complex that integrates nutrient- and growth factor-derived signals to regulate cell growth (Sarbassov et al., 2004 [PubMed 15268862]). |
| NA | ENSG00000153071 | DAB2 | DAB2, clathrin adaptor protein | 1601 | This gene encodes a mitogen-responsive phosphoprotein. It is expressed in normal ovarian epithelial cells, but is down-regulated or absent from ovarian carcinoma cell lines, suggesting its role as a tumor suppressor. This protein binds to the SH3 domains of GRB2, an adaptor protein that couples tyrosine kinase receptors to SOS (a guanine nucleotide exchange factor for Ras), via its C-terminal proline-rich sequences, and may thus modulate growth factor/Ras pathways by competing with SOS for binding to GRB2. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000113638 | TTC33 | tetratricopeptide repeat domain 33 | 23548 | NA |
| NA | ENSG00000132356 | PRKAA1 | protein kinase AMP-activated catalytic subunit alpha 1 | 5562 | The protein encoded by this gene belongs to the ser/thr protein kinase family. It is the catalytic subunit of the 5’-prime-AMP-activated protein kinase (AMPK). AMPK is a cellular energy sensor conserved in all eukaryotic cells. The kinase activity of AMPK is activated by the stimuli that increase the cellular AMP/ATP ratio. AMPK regulates the activities of a number of key metabolic enzymes through phosphorylation. It protects cells from stresses that cause ATP depletion by switching off ATP-consuming biosynthetic pathways. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000145592 | RPL37 | ribosomal protein L37 | 6167 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L37E family of ribosomal proteins. It is located in the cytoplasm. The protein contains a C2C2-type zinc finger-like motif. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000205765 | C5orf51 | chromosome 5 open reading frame 51 | 285636 | NA |
| NA | ENSG00000112964 | GHR | growth hormone receptor | 2690 | This gene encodes a member of the type I cytokine receptor family, which is a transmembrane receptor for growth hormone. Binding of growth hormone to the receptor leads to receptor dimerization and the activation of an intra- and intercellular signal transduction pathway leading to growth. Mutations in this gene have been associated with Laron syndrome, also known as the growth hormone insensitivity syndrome (GHIS), a disorder characterized by short stature. In humans and rabbits, but not rodents, growth hormone binding protein (GHBP) is generated by proteolytic cleavage of the extracellular ligand-binding domain from the mature growth hormone receptor protein. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000198865 | CCDC152 | coiled-coil domain containing 152 | 100129792 | NA |
| NA | ENSG00000250722 | SEPP1 | selenoprotein P, plasma, 1 | 6414 | This gene encodes a selenoprotein containing multiple selenocysteine (Sec) residues, which are encoded by the UGA codon that normally signals translation termination. The 3’ UTR of selenoprotein genes have a common stem-loop structure, the sec insertion sequence (SECIS), which is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. This selenoprotein is an extracellular glycoprotein, and is unusual in that it contains 10 Sec residues per polypeptide. It is a heparin-binding protein that appears to be associated with endothelial cells, and has been implicated to function as an antioxidant in the extracellular space. Several transcript variants, encoding either the same or different isoform, have been found for this gene. |
| NA | ENSG00000172262 | ZNF131 | zinc finger protein 131 | 7690 | NA |
| NA | ENSG00000112972 | HMGCS1 | 3-hydroxy-3-methylglutaryl-CoA synthase 1 | 3157 | NA |
| NA | ENSG00000151881 | C5orf28 | chromosome 5 open reading frame 28 | 64417 | NA |
| NA | ENSG00000172244 | C5orf34 | chromosome 5 open reading frame 34 | 375444 | NA |
| NA | ENSG00000172239 | PAIP1 | poly(A) binding protein interacting protein 1 | 10605 | The protein encoded by this gene interacts with poly(A)-binding protein and with the cap-binding complex eIF4A. It is involved in translational initiation and protein biosynthesis. Overexpression of this gene in COS7 cells stimulates translation. Alternative splicing occurs at this locus and three transcript variants encoding three distinct isoforms have been identified. |
| NA | ENSG00000112992 | NNT | nicotinamide nucleotide transhydrogenase | 23530 | This gene encodes an integral protein of the inner mitochondrial membrane. The enzyme couples hydride transfer between NAD(H) and NADP(+) to proton translocation across the inner mitochondrial membrane. Under most physiological conditions, the enzyme uses energy from the mitochondrial proton gradient to produce high concentrations of NADPH. The resulting NADPH is used for biosynthesis and in free radical detoxification. Two alternatively spliced variants, encoding the same protein, have been found for this gene. |
| NA | ENSG00000112996 | MRPS30 | mitochondrial ribosomal protein S30 | 10884 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that is similar to the chicken pro-apoptotic protein p52. Transcript variants using alternative promoters or polyA sites have been mentioned in the literature but the complete description of these sequences is not available. |
| NA | ENSG00000164588 | HCN1 | hyperpolarization activated cyclic nucleotide gated potassium channel 1 | 348980 | The membrane protein encoded by this gene is a hyperpolarization-activated cation channel that contributes to the native pacemaker currents in heart and neurons. The encoded protein can homodimerize or heterodimerize with other pore-forming subunits to form a potassium channel. This channel may act as a receptor for sour tastes. |
| NA | ENSG00000170571 | EMB | embigin | 133418 | This gene encodes a transmembrane glycoprotein that is a member of the immunoglobulin superfamily. The encoded protein may be involved in cell growth and development by mediating interactions between the cell and extracellular matrix. A pseudogene of this gene is found on chromosome 1. |
| NA | ENSG00000151883 | PARP8 | poly(ADP-ribose) polymerase family member 8 | 79668 | NA |
| NA | ENSG00000213949 | ITGA1 | integrin subunit alpha 1 | 3672 | This gene encodes the alpha 1 subunit of integrin receptors. This protein heterodimerizes with the beta 1 subunit to form a cell-surface receptor for collagen and laminin. The heterodimeric receptor is involved in cell-cell adhesion and may play a role in inflammation and fibrosis. The alpha 1 subunit contains an inserted (I) von Willebrand factor type I domain which is thought to be involved in collagen binding. |
| NA | ENSG00000164171 | ITGA2 | integrin subunit alpha 2 | 3673 | This gene encodes the alpha subunit of a transmembrane receptor for collagens and related proteins. The encoded protein forms a heterodimer with a beta subunit and mediates the adhesion of platelets and other cell types to the extracellular matrix. Loss of the encoded protein is associated with bleeding disorder platelet-type 9. Antibodies against this protein are found in several immune disorders, including neonatal alloimmune thrombocytopenia. This gene is located adjacent to a related alpha subunit gene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000134363 | FST | follistatin | 10468 | Follistatin is a single-chain gonadal protein that specifically inhibits follicle-stimulating hormone release. The single FST gene encodes two isoforms, FST317 and FST344 containing 317 and 344 amino acids respectively, resulting from alternative splicing of the precursor mRNA. In a study in which 37 candidate genes were tested for linkage and association with polycystic ovary syndrome (PCOS) or hyperandrogenemia in 150 families, evidence was found for linkage between PCOS and follistatin. |
| NA | ENSG00000164258 | NDUFS4 | NADH:ubiquinone oxidoreductase subunit S4 | 4724 | This gene encodes an nuclear-encoded accessory subunit of the mitochondrial membrane respiratory chain NADH dehydrogenase (complex I, or NADH:ubiquinone oxidoreductase). Complex I removes electrons from NADH and passes them to the electron acceptor ubiquinone. Mutations in this gene can cause mitochondrial complex I deficiencies such as Leigh syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000185305 | ARL15 | ADP ribosylation factor like GTPase 15 | 54622 | NA |
| NA | ENSG00000178996 | SNX18 | sorting nexin 18 | 112574 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein does not contain a coiled coil region, like some family members, but contains a SH3 domain. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000067248 | DHX29 | DEAH-box helicase 29 | 54505 | NA |
| NA | ENSG00000039123 | SKIV2L2 | Ski2 like RNA helicase 2 | 23517 | NA |
| NA | ENSG00000177058 | SLC38A9 | solute carrier family 38 member 9 | 153129 | NA |
| NA | ENSG00000134352 | IL6ST | interleukin 6 signal transducer | 3572 | The protein encoded by this gene is a signal transducer shared by many cytokines, including interleukin 6 (IL6), ciliary neurotrophic factor (CNTF), leukemia inhibitory factor (LIF), and oncostatin M (OSM). This protein functions as a part of the cytokine receptor complex. The activation of this protein is dependent upon the binding of cytokines to their receptors. vIL6, a protein related to IL6 and encoded by the Kaposi sarcoma-associated herpesvirus, can bypass the interleukin 6 receptor (IL6R) and directly activate this protein. Knockout studies in mice suggest that this gene plays a critical role in regulating myocyte apoptosis. Alternatively spliced transcript variants have been described. A related pseudogene has been identified on chromosome 17. |
| NA | ENSG00000095015 | MAP3K1 | mitogen-activated protein kinase kinase kinase 1 | 4214 | The protein encoded by this gene is a serine/threonine kinase and is part of some signal transduction cascades, including the ERK and JNK kinase pathways as well as the NF-kappa-B pathway. The encoded protein is activated by autophosphorylation and requires magnesium as a cofactor in phosphorylating other proteins. This protein has E3 ligase activity conferred by a plant homeodomain (PHD) in its N-terminus and phospho-kinase activity conferred by a kinase domain in its C-terminus. |
| NA | ENSG00000155545 | MIER3 | MIER family member 3 | 166968 | NA |
| NA | ENSG00000062194 | GPBP1 | GC-rich promoter binding protein 1 | 65056 | This gene was originally isolated by subtractive hybridization of cDNAs expressed in atherosclerotic plaques with a thrombus, and was found to be expressed only in vascular smooth muscle cells. However, a shorter splice variant was found to be more ubiquitously expressed. This protein is suggested to play a role in the development of atherosclerosis. Studies in mice suggest that it may also function as a GC-rich promoter-specific trans-activating transcription factor. Several alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000145632 | PLK2 | polo like kinase 2 | 10769 | The protein encoded by this gene is a member of the polo family of serine/threonine protein kinases that have a role in normal cell division. This gene is most abundantly expressed in testis, spleen and fetal tissues, and its expression is inducible by serum, suggesting that it may also play an important role in cells undergoing rapid cell division. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000113448 | PDE4D | phosphodiesterase 4D | 5144 | This gene encodes one of four mammalian counterparts to the fruit fly ‘dunce’ gene. The encoded protein has 3’,5’-cyclic-AMP phosphodiesterase activity and degrades cAMP, which acts as a signal transduction molecule in multiple cell types. This gene uses different promoters to generate multiple alternatively spliced transcript variants that encode functional proteins. |
| NA | ENSG00000035499 | DEPDC1B | DEP domain containing 1B | 55789 | NA |
| NA | ENSG00000164181 | ELOVL7 | ELOVL fatty acid elongase 7 | 79993 | NA |
| NA | ENSG00000049167 | ERCC8 | excision repair cross-complementation group 8 | 1161 | This gene encodes a WD repeat protein, which interacts with Cockayne syndrome type B (CSB) protein and with p44 protein, a subunit of the RNA polymerase II transcription factor IIH. Mutations in this gene have been identified in patients with hereditary disease Cockayne syndrome (CS). CS cells are abnormally sensitive to ultraviolet radiation and are defective in the repair of transcriptionally active genes. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164182 | NDUFAF2 | NADH:ubiquinone oxidoreductase complex assembly factor 2 | 91942 | NADH:ubiquinone oxidoreductase (complex I) catalyzes the transfer of electrons from NADH to ubiquinone (coenzyme Q) in the first step of the mitochondrial respiratory chain, resulting in the translocation of protons across the inner mitochondrial membrane. This gene encodes a complex I assembly factor. Mutations in this gene cause progressive encephalopathy resulting from mitochondrial complex I deficiency. |
| NA | ENSG00000188725 | SMIM15 | small integral membrane protein 15 | 643155 | NA |
| NA | ENSG00000130449 | ZSWIM6 | zinc finger SWIM-type containing 6 | 57688 | NA |
| NA | ENSG00000068796 | KIF2A | kinesin heavy chain member 2A | 3796 | The protein encoded by this gene is a plus end-directed motor required for normal mitotic progression. The encoded protein is required for normal spindle activity during mitosis and is necessary for normal brain development. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000086189 | DIMT1 | DIM1 dimethyladenosine transferase 1 homolog | 27292 | NA |
| NA | ENSG00000086200 | IPO11 | importin 11 | 51194 | Importins, including IPO11, are a members of the karyopherin/importin-beta family of transport receptors (see KPNB1; 602738) that mediate nucleocytoplasmic transport of protein and RNA cargoes (Plafker and Macara, 2000 [PubMed 11032817]). |
| NA | ENSG00000268942 | CKS1BP3 | CDC28 protein kinase regulatory subunit 1B pseudogene 3 | ENSG00000268942 | NA |
| NA | ENSG00000164197 | RNF180 | ring finger protein 180 | 285671 | NA |
| NA | ENSG00000186479 | RGS7BP | regulator of G-protein signaling 7 binding protein | 401190 | This gene encodes a protein that binds to all members of the R7 subfamily of regulators of G protein signaling and regulates their translocation between the nucleus and the plasma membrane. The encoded protein could be regulated by reversible palmitoylation, which anchors it to the plasma membrane. Depalmitoylation localizes the protein to the nucleus. Polymorphisms in this gene may be associated with risk of aspirin-exacerbated respiratory disease. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000145642 | FAM159B | family with sequence similarity 159 member B | 100132916 | NA |
| NA | ENSG00000153006 | SREK1IP1 | SREK1 interacting protein 1 | 285672 | NA |
| NA | ENSG00000049192 | ADAMTS6 | ADAM metallopeptidase with thrombospondin type 1 motif 6 | 11174 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) protein family. Members of the family share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. |
| NA | ENSG00000123219 | CENPK | centromere protein K | 64105 | CENPK is a subunit of a CENPH (MIM 605607)-CENPI (MIM 300065)-associated centromeric complex that targets CENPA (MIM 117139) to centromeres and is required for proper kinetochore function and mitotic progression (Okada et al., 2006 [PubMed 16622420]). |
| NA | ENSG00000113595 | TRIM23 | tripartite motif containing 23 | 373 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. This protein is also a member of the ADP ribosylation factor family of guanine nucleotide-binding family of proteins. Its carboxy terminus contains an ADP-ribosylation factor domain and a guanine nucleotide binding site, while the amino terminus contains a GTPase activating protein domain which acts on the guanine nucleotide binding site. The protein localizes to lysosomes and the Golgi apparatus. It plays a role in the formation of intracellular transport vesicles, their movement from one compartment to another, and phopholipase D activation. Three alternatively spliced transcript variants for this gene have been described. |
| NA | ENSG00000113597 | TRAPPC13 | trafficking protein particle complex 13 | 80006 | NA |
| NA | ENSG00000253251 | CTC-534A2.2 | NA | ENSG00000253251 | NA |
| NA | ENSG00000197860 | SGTB | small glutamine rich tetratricopeptide repeat containing beta | 54557 | NA |
| NA | ENSG00000123213 | NLN | neurolysin | 57486 | This gene encodes a member of the metallopeptidase M3 protein family that cleaves neurotensin at the Pro10-Tyr11 bond, leading to the formation of neurotensin(1-10) and neurotensin(11-13). The encoded protein is likely involved in the termination of the neurotensinergic signal in the central nervous system and in the gastrointestinal tract. |
| NA | ENSG00000112851 | ERBIN | erbb2 interacting protein | 55914 | This gene is a member of the leucine-rich repeat and PDZ domain (LAP) family. The encoded protein contains 17 leucine-rich repeats and one PDZ domain. It binds to the unphosphorylated form of the ERBB2 protein and regulates ERBB2 function and localization. It has also been shown to affect the Ras signaling pathway by disrupting Ras-Raf interaction. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000153914 | SREK1 | splicing regulatory glutamic acid/lysine-rich protein 1 | 140890 | This gene encodes a member of a family of serine/arginine-rich (SR) splicing proteins containing RNA recognition motif (RRM) domains. The encoded protein interacts with other SR proteins to modulate splice site selection. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000069020 | MAST4 | microtubule associated serine/threonine kinase family member 4 | 375449 | NA |
| NA | ENSG00000145675 | PIK3R1 | phosphoinositide-3-kinase regulatory subunit 1 | 5295 | Phosphatidylinositol 3-kinase phosphorylates the inositol ring of phosphatidylinositol at the 3-prime position. The enzyme comprises a 110 kD catalytic subunit and a regulatory subunit of either 85, 55, or 50 kD. This gene encodes the 85 kD regulatory subunit. Phosphatidylinositol 3-kinase plays an important role in the metabolic actions of insulin, and a mutation in this gene has been associated with insulin resistance. Alternative splicing of this gene results in four transcript variants encoding different isoforms. |
| NA | ENSG00000145740 | SLC30A5 | solute carrier family 30 member 5 | 64924 | This gene encodes a member of the SLC30A/ZnT family of zinc transporter proteins. ZnT proteins mediate both cellular zinc efflux and zinc sequestration into membrane-bound organelles. The encoded protein plays a role in the early secretory pathway as a heterodimer with zinc transporter 6, and may also regulate zinc sequestration into secretory granules of pancreatic beta cells. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 19. |
| NA | ENSG00000134057 | CCNB1 | cyclin B1 | 891 | The protein encoded by this gene is a regulatory protein involved in mitosis. The gene product complexes with p34(cdc2) to form the maturation-promoting factor (MPF). Two alternative transcripts have been found, a constitutively expressed transcript and a cell cycle-regulated transcript, that is expressed predominantly during G2/M phase. The different transcripts result from the use of alternate transcription initiation sites. |
| NA | ENSG00000153044 | CENPH | centromere protein H | 64946 | Centromere and kinetochore proteins play a critical role in centromere structure, kinetochore formation, and sister chromatid separation. The protein encoded by this gene colocalizes with inner kinetochore plate proteins CENP-A and CENP-C in both interphase and metaphase. It localizes outside of centromeric heterochromatin, where CENP-B is localized, and inside the kinetochore corona, where CENP-E is localized during prometaphase. It is thought that this protein can bind to itself, as well as to CENP-A, CENP-B or CENP-C. Multimers of the protein localize constitutively to the inner kinetochore plate and play an important role in the organization and function of the active centromere-kinetochore complex. |
| NA | ENSG00000183323 | CCDC125 | coiled-coil domain containing 125 | 202243 | NA |
| NA | ENSG00000085231 | AK6 | adenylate kinase 6 | 102157402 | This gene encodes a protein that belongs to the adenylate kinase family of enzymes. The protein has a nuclear localization and contains Walker A (P-loop) and Walker B motifs and a metal-coordinating residue. The protein may be involved in regulation of Cajal body formation. In human, AK6 and TAF9 (GeneID: 6880) are two distinct genes that share 5’ exons. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000085231 | TAF9 | TATA-box binding protein associated factor 9 | 6880 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes one of the smaller subunits of TFIID that binds to the basal transcription factor GTF2B as well as to several transcriptional activators such as p53 and VP16. In human, TAF9 and AK6 (GeneID: 102157402) are two distinct genes that share 5’ exons. A similar but distinct gene (TAF9L) has been found on the X chromosome and a pseudogene has been identified on chromosome 19. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000152942 | RAD17 | RAD17 checkpoint clamp loader component | 5884 | The protein encoded by this gene is highly similar to the gene product of Schizosaccharomyces pombe rad17, a cell cycle checkpoint gene required for cell cycle arrest and DNA damage repair in response to DNA damage. This protein shares strong similarity with DNA replication factor C (RFC), and can form a complex with RFCs. This protein binds to chromatin prior to DNA damage and is phosphorylated by the checkpoint kinase ATR following damage. This protein recruits the RAD1-RAD9-HUS1 checkpoint protein complex onto chromatin after DNA damage, which may be required for its phosphorylation. The phosphorylation of this protein is required for the DNA-damage-induced cell cycle G2 arrest, and is thought to be a critical early event during checkpoint signaling in DNA-damaged cells. Multiple alternatively spliced transcript variants of this gene, which encode four distinct protein isoforms, have been reported. Two pseudogenes, located on chromosomes 7 and 13, have been identified. |
| NA | ENSG00000152939 | MARVELD2 | MARVEL domain containing 2 | 153562 | The protein encoded by this gene is a membrane protein found at the tight junctions between epithelial cells. The encoded protein helps establish epithelial barriers such as those in the organ of Corti, where these barriers are required for normal hearing. Defects in this gene are a cause of deafness autosomal recessive type 49 (DFNB49). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197822 | OCLN | occludin | 100506658 | This gene encodes an integral membrane protein that is required for cytokine-induced regulation of the tight junction paracellular permeability barrier. Mutations in this gene are thought to be a cause of band-like calcification with simplified gyration and polymicrogyria (BLC-PMG), an autosomal recessive neurologic disorder that is also known as pseudo-TORCH syndrome. Alternative splicing results in multiple transcript variants. A related pseudogene is present 1.5 Mb downstream on the q arm of chromosome 5. |
| NA | ENSG00000205572 | SERF1B | small EDRK-rich factor 1B (centromeric) | 728492 | This gene is part of a 500 kb inverted duplication on chromosome 5q13. This duplicated region contains at least four genes and repetitive elements which make it prone to rearrangements and deletions. The repetitiveness and complexity of the sequence have also caused difficulty in determining the organization of this genomic region. This gene is the centromeric copy which is identical to the telomeric copy. Alternatively spliced transcripts have been documented but it is unclear whether alternative splicing occurs for both the centromeric and telomeric copies of the gene. The gene encodes a protein of unknown function which bears low-level homology with the RNA-binding domain of matrin-cyclophilin, a protein which colocalizes with small nuclear ribonucleoproteins (snRNPs) and the SMN1 gene product. |
| NA | ENSG00000205572 | SERF1A | small EDRK-rich factor 1A (telomeric) | 8293 | This gene is part of a 500 kb inverted duplication on chromosome 5q13. This duplicated region contains at least four genes and repetitive elements which make it prone to rearrangements and deletions. The repetitiveness and complexity of the sequence have also caused difficulty in determining the organization of this genomic region. The duplication region includes both a telomeric and a centromeric copy of this gene. Deletions of this gene, the telomeric copy, often accompany deletions of the neighboring SMN1 gene in spinal muscular atrophy (SMA) patients, and so it is thought that this gene may be a modifier of the SMA phenotype. The function of this protein is not known; however, it bears low-level homology with the RNA-binding domain of matrin-cyclophilin, a protein which colocalizes with small nuclear ribonucleoproteins (snRNPs) and the SMN1 gene product. Alternatively spliced transcripts have been documented but it is unclear whether alternative splicing occurs for both the centromeric and telomeric copies of the gene. |
| NA | ENSG00000205571 | SMN2 | survival of motor neuron 2, centromeric | 6607 | This gene is part of a 500 kb inverted duplication on chromosome 5q13. This duplicated region contains at least four genes and repetitive elements which make it prone to rearrangements and deletions. The repetitiveness and complexity of the sequence have also caused difficulty in determining the organization of this genomic region. The telomeric and centromeric copies of this gene are nearly identical and encode the same protein. While mutations in the telomeric copy are associated with spinal muscular atrophy, mutations in this gene, the centromeric copy, do not lead to disease. This gene may be a modifier of disease caused by mutation in the telomeric copy. The critical sequence difference between the two genes is a single nucleotide in exon 7, which is thought to be an exon splice enhancer. Note that the nine exons of both the telomeric and centromeric copies are designated historically as exon 1, 2a, 2b, and 3-8. It is thought that gene conversion events may involve the two genes, leading to varying copy numbers of each gene. The full length protein encoded by this gene localizes to both the cytoplasm and the nucleus. Within the nucleus, the protein localizes to subnuclear bodies called gems which are found near coiled bodies containing high concentrations of small ribonucleoproteins (snRNPs). This protein forms heteromeric complexes with proteins such as SIP1 and GEMIN4, and also interacts with several proteins known to be involved in the biogenesis of snRNPs, such as hnRNP U protein and the small nucleolar RNA binding protein. Four transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000205571 | SMN1 | survival of motor neuron 1, telomeric | 6606 | This gene is part of a 500 kb inverted duplication on chromosome 5q13. This duplicated region contains at least four genes and repetitive elements which make it prone to rearrangements and deletions. The repetitiveness and complexity of the sequence have also caused difficulty in determining the organization of this genomic region. The telomeric and centromeric copies of this gene are nearly identical and encode the same protein. However, mutations in this gene, the telomeric copy, are associated with spinal muscular atrophy; mutations in the centromeric copy do not lead to disease. The centromeric copy may be a modifier of disease caused by mutation in the telomeric copy. The critical sequence difference between the two genes is a single nucleotide in exon 7, which is thought to be an exon splice enhancer. Note that the nine exons of both the telomeric and centromeric copies are designated historically as exon 1, 2a, 2b, and 3-8. It is thought that gene conversion events may involve the two genes, leading to varying copy numbers of each gene. The protein encoded by this gene localizes to both the cytoplasm and the nucleus. Within the nucleus, the protein localizes to subnuclear bodies called gems which are found near coiled bodies containing high concentrations of small ribonucleoproteins (snRNPs). This protein forms heteromeric complexes with proteins such as SIP1 and GEMIN4, and also interacts with several proteins known to be involved in the biogenesis of snRNPs, such as hnRNP U protein and the small nucleolar RNA binding protein. Multiple transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000172058 | SERF1A | small EDRK-rich factor 1A (telomeric) | 8293 | This gene is part of a 500 kb inverted duplication on chromosome 5q13. This duplicated region contains at least four genes and repetitive elements which make it prone to rearrangements and deletions. The repetitiveness and complexity of the sequence have also caused difficulty in determining the organization of this genomic region. The duplication region includes both a telomeric and a centromeric copy of this gene. Deletions of this gene, the telomeric copy, often accompany deletions of the neighboring SMN1 gene in spinal muscular atrophy (SMA) patients, and so it is thought that this gene may be a modifier of the SMA phenotype. The function of this protein is not known; however, it bears low-level homology with the RNA-binding domain of matrin-cyclophilin, a protein which colocalizes with small nuclear ribonucleoproteins (snRNPs) and the SMN1 gene product. Alternatively spliced transcripts have been documented but it is unclear whether alternative splicing occurs for both the centromeric and telomeric copies of the gene. |
| NA | ENSG00000172062 | SMN1 | survival of motor neuron 1, telomeric | 6606 | This gene is part of a 500 kb inverted duplication on chromosome 5q13. This duplicated region contains at least four genes and repetitive elements which make it prone to rearrangements and deletions. The repetitiveness and complexity of the sequence have also caused difficulty in determining the organization of this genomic region. The telomeric and centromeric copies of this gene are nearly identical and encode the same protein. However, mutations in this gene, the telomeric copy, are associated with spinal muscular atrophy; mutations in the centromeric copy do not lead to disease. The centromeric copy may be a modifier of disease caused by mutation in the telomeric copy. The critical sequence difference between the two genes is a single nucleotide in exon 7, which is thought to be an exon splice enhancer. Note that the nine exons of both the telomeric and centromeric copies are designated historically as exon 1, 2a, 2b, and 3-8. It is thought that gene conversion events may involve the two genes, leading to varying copy numbers of each gene. The protein encoded by this gene localizes to both the cytoplasm and the nucleus. Within the nucleus, the protein localizes to subnuclear bodies called gems which are found near coiled bodies containing high concentrations of small ribonucleoproteins (snRNPs). This protein forms heteromeric complexes with proteins such as SIP1 and GEMIN4, and also interacts with several proteins known to be involved in the biogenesis of snRNPs, such as hnRNP U protein and the small nucleolar RNA binding protein. Multiple transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000145734 | BDP1 | B double prime 1, subunit of RNA polymerase III transcription initiation factor IIIB | 55814 | The product of this gene is a subunit of the TFIIIB transcription initiation complex, which recruits RNA polymerase III to target promoters in order to initiate transcription. The encoded protein localizes to concentrated aggregates in the nucleus, and is required for transcription from all three types of polymerase III promoters. It is phosphorylated by casein kinase II during mitosis, resulting in its release from chromatin and suppression of polymerase III transcription. |
| NA | ENSG00000131844 | MCCC2 | methylcrotonoyl-CoA carboxylase 2 | 64087 | This gene encodes the small subunit of 3-methylcrotonyl-CoA carboxylase. This enzyme functions as a heterodimer and catalyzes the carboxylation of 3-methylcrotonyl-CoA to form 3-methylglutaconyl-CoA. Mutations in this gene are associated with 3-Methylcrotonylglycinuria, an autosomal recessive disorder of leucine catabolism. |
| NA | ENSG00000131711 | MAP1B | microtubule associated protein 1B | 4131 | This gene encodes a protein that belongs to the microtubule-associated protein family. The proteins of this family are thought to be involved in microtubule assembly, which is an essential step in neurogenesis. The product of this gene is a precursor polypeptide that presumably undergoes proteolytic processing to generate the final MAP1B heavy chain and LC1 light chain. Gene knockout studies of the mouse microtubule-associated protein 1B gene suggested an important role in development and function of the nervous system. |
| NA | ENSG00000049883 | PTCD2 | pentatricopeptide repeat domain 2 | 79810 | NA |
| NA | ENSG00000083312 | TNPO1 | transportin 1 | 3842 | This gene encodes the beta subunit of the karyopherin receptor complex which interacts with nuclear localization signals to target nuclear proteins to the nucleus. The karyopherin receptor complex is a heterodimer of an alpha subunit which recognizes the nuclear localization signal and a beta subunit which docks the complex at nucleoporins. Alternate splicing of this gene results in two transcript variants encoding different proteins. |
| NA | ENSG00000157107 | FCHO2 | FCH domain only 2 | 115548 | NA |
| NA | ENSG00000145741 | BTF3 | basic transcription factor 3 | 689 | This gene encodes the basic transcription factor 3. This protein forms a stable complex with RNA polymerase IIB and is required for transcriptional initiation. Alternative splicing results in multiple transcript variants encoding different isoforms. This gene has multiple pseudogenes. |
| NA | ENSG00000164331 | ANKRA2 | ankyrin repeat family A member 2 | 57763 | NA |
| NA | ENSG00000164338 | UTP15 | UTP15, small subunit processome component | 84135 | NA |
| NA | ENSG00000171617 | ENC1 | ectodermal-neural cortex 1 | 8507 | This gene encodes a member of the kelch-related family of actin-binding proteins. The encoded protein plays a role in the oxidative stress response as a regulator of the transcription factor Nrf2, and expression of this gene may play a role in malignant transformation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000049860 | HEXB | hexosaminidase subunit beta | 3074 | Hexosaminidase B is the beta subunit of the lysosomal enzyme beta-hexosaminidase that, together with the cofactor GM2 activator protein, catalyzes the degradation of the ganglioside GM2, and other molecules containing terminal N-acetyl hexosamines. Beta-hexosaminidase is composed of two subunits, alpha and beta, which are encoded by separate genes. Both beta-hexosaminidase alpha and beta subunits are members of family 20 of glycosyl hydrolases. Mutations in the alpha or beta subunit genes lead to an accumulation of GM2 ganglioside in neurons and neurodegenerative disorders termed the GM2 gangliosidoses. Beta subunit gene mutations lead to Sandhoff disease (GM2-gangliosidosis type II). Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164347 | GFM2 | G elongation factor, mitochondrial 2 | 84340 | Eukaryotes contain two protein translational systems, one in the cytoplasm and one in the mitochondria. Mitochondrial translation is crucial for maintaining mitochondrial function and mutations in this system lead to a breakdown in the respiratory chain-oxidative phosphorylation system and to impaired maintenance of mitochondrial DNA. This gene encodes one of the mitochondrial translation elongation factors, which is a GTPase that plays a role at the termination of mitochondrial translation by mediating the disassembly of ribosomes from messenger RNA . Its role in the regulation of normal mitochondrial function and in disease states attributed to mitochondrial dysfunction is not known. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000164346 | NSA2 | NSA2, ribosome biogenesis homolog | 10412 | This gene encodes a nucleolar protein involved in cell cycle regulation and proliferation. This gene was identified based on sequence similarity to a highly conserved Saccharomyces cerevisiae gene encoding a pre-ribosomal protein, which is involved in large ribosomal subunit biogenesis. The encoded protein is found at elevated levels in diabetic nephropathy. Alternative splicing results in multiple transcript variants. Several related pseudogenes have been identified. |
| NA | ENSG00000198780 | FAM169A | family with sequence similarity 169 member A | 26049 | NA |
| NA | ENSG00000113161 | HMGCR | 3-hydroxy-3-methylglutaryl-CoA reductase | 3156 | HMG-CoA reductase is the rate-limiting enzyme for cholesterol synthesis and is regulated via a negative feedback mechanism mediated by sterols and non-sterol metabolites derived from mevalonate, the product of the reaction catalyzed by reductase. Normally in mammalian cells this enzyme is suppressed by cholesterol derived from the internalization and degradation of low density lipoprotein (LDL) via the LDL receptor. Competitive inhibitors of the reductase induce the expression of LDL receptors in the liver, which in turn increases the catabolism of plasma LDL and lowers the plasma concentration of cholesterol, an important determinant of atherosclerosis. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000113163 | COL4A3BP | collagen type IV alpha 3 binding protein | 10087 | This gene encodes a kinase that specifically phosphorylates the N-terminal region of the non-collagenous domain of the alpha 3 chain of type IV collagen, known as the Goodpasture antigen. Goodpasture disease is the result of an autoimmune response directed at this antigen. One isoform of this protein is also involved in ceramide intracellular transport. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000122008 | POLK | polymerase (DNA) kappa | 51426 | External and internal DNA-damaging agents continually threaten the integrity of genetic material in cells. Although a variety of repair mechanisms exist to remove the resulting lesions, some lesions escape repair and block the replication machinery. Members of the Y family of DNA polymerases, such as POLK, permit the continuity of the replication fork by allowing replication through such DNA lesions. Each Y family polymerase has a unique DNA-damage bypass and fidelity profile. POLK is specialized for the extension step of lesion bypass (summary by Lone et al., 2007 [PubMed 17317631]). |
| NA | ENSG00000152359 | POC5 | POC5 centriolar protein | 134359 | NA |
| NA | ENSG00000145703 | IQGAP2 | IQ motif containing GTPase activating protein 2 | 10788 | This gene encodes a member of the IQGAP family. The protein contains three IQ domains, one calponin homology domain, one Ras-GAP domain and one WW domain. It interacts with components of the cytoskeleton, with cell adhesion molecules, and with several signaling molecules to regulate cell morphology and motility. |
| NA | ENSG00000181104 | F2R | coagulation factor II thrombin receptor | 2149 | Coagulation factor II receptor is a 7-transmembrane receptor involved in the regulation of thrombotic response. Proteolytic cleavage leads to the activation of the receptor. F2R is a G-protein coupled receptor family member. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164251 | F2RL1 | F2R like trypsin receptor 1 | 2150 | Coagulation factor II (thrombin) receptor-like 1 (F2RL1) is a member of the large family of 7-transmembrane-region receptors that couple to guanosine-nucleotide-binding proteins. F2RL1 is also a member of the protease-activated receptor family. It is activated by trypsin, but not by thrombin. It is activated by proteolytic cleavage of its extracellular amino terminus. The new amino terminus functions as a tethered ligand and activates the receptor. The F2RL1 gene contains two exons and is widely expressed in human tissues. The predicted protein sequence is 83% identical to the mouse receptor sequence. |
| NA | ENSG00000164252 | AGGF1 | angiogenic factor with G-patch and FHA domains 1 | 55109 | This gene encodes an angiogenic factor that promotes proliferation of endothelial cells. Mutations in this gene are associated with a susceptibility to Klippel-Trenaunay syndrome. Pseudogenes of this gene are found on chromosomes 3, 4, 10 and 16. |
| NA | ENSG00000132846 | ZBED3 | zinc finger BED-type containing 3 | 84327 | NA |
| NA | ENSG00000164253 | WDR41 | WD repeat domain 41 | 55255 | NA |
| NA | ENSG00000171530 | TBCA | tubulin folding cofactor A | 6902 | The product of this gene is one of four proteins (cofactors A, D, E, and C) involved in the pathway leading to correctly folded beta-tubulin from folding intermediates. Cofactors A and D are believed to play a role in capturing and stabilizing beta-tubulin intermediates in a quasi-native confirmation. Cofactor E binds to the cofactor D/beta-tubulin complex; interaction with cofactor C then causes the release of beta-tubulin polypeptides that are committed to the native state. This gene encodes chaperonin cofactor A. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132842 | AP3B1 | adaptor related protein complex 3 beta 1 subunit | 8546 | This gene encodes a protein that may play a role in organelle biogenesis associated with melanosomes, platelet dense granules, and lysosomes. The encoded protein is part of the heterotetrameric AP-3 protein complex which interacts with the scaffolding protein clathrin. Mutations in this gene are associated with Hermansky-Pudlak syndrome type 2. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000085365 | SCAMP1 | secretory carrier membrane protein 1 | 9522 | This gene product belongs to the SCAMP family of proteins, which are secretory carrier membrane proteins. They function as carriers to the cell surface in post-golgi recycling pathways. Different family members are highly related products of distinct genes, and are usually expressed together. These findings suggest that these protein family members may function at the same site during vesicular transport rather than in separate pathways. A pseudogene of this gene has been defined on chromosome 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000113273 | ARSB | arylsulfatase B | 411 | Arylsulfatase B encoded by this gene belongs to the sulfatase family. The arylsulfatase B homodimer hydrolyzes sulfate groups of N-Acetyl-D-galactosamine, chondriotin sulfate, and dermatan sulfate. The protein is targetted to the lysozyme. Mucopolysaccharidosis type VI is an autosomal recessive lysosomal storage disorder resulting from a deficiency of arylsulfatase B. Two alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000145692 | BHMT | betaine–homocysteine S-methyltransferase | 635 | This gene encodes a cytosolic enzyme that catalyzes the conversion of betaine and homocysteine to dimethylglycine and methionine, respectively. Defects in this gene could lead to hyperhomocyst(e)inemia, but such a defect has not yet been observed. |
| NA | ENSG00000152409 | JMY | junction mediating and regulatory protein, p53 cofactor | 133746 | NA |
| NA | ENSG00000152413 | HOMER1 | homer scaffolding protein 1 | 9456 | This gene encodes a member of the homer family of dendritic proteins. Members of this family regulate group 1 metabotrophic glutamate receptor function. |
| NA | ENSG00000164329 | PAPD4 | PAP associated domain containing 4 | 167153 | NA |
| NA | ENSG00000177034 | MTX3 | metaxin 3 | 345778 | NA |
| NA | ENSG00000113296 | THBS4 | thrombospondin 4 | 7060 | The protein encoded by this gene belongs to the thrombospondin protein family. Thrombospondin family members are adhesive glycoproteins that mediate cell-to-cell and cell-to-matrix interactions. This protein forms a pentamer and can bind to heparin and calcium. It is involved in local signaling in the developing and adult nervous system, and it contributes to spinal sensitization and neuropathic pain states. This gene is activated during the stromal response to invasive breast cancer. It may also play a role in inflammatory responses in Alzheimer’s disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164300 | SERINC5 | serine incorporator 5 | 256987 | NA |
| NA | ENSG00000039319 | ZFYVE16 | zinc finger FYVE-type containing 16 | 9765 | This gene encodes an endosomal protein that belongs to the FYVE zinc finger family of proteins. The encoded protein is thought to regulate membrane trafficking in the endosome. This protein functions as a scaffold protein in the transforming growth factor-beta signaling pathway and is involved in positive and negative feedback regulation of the bone morphogenetic protein signaling pathway. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000189127 | ANKRD34B | ankyrin repeat domain 34B | 340120 | NA |
| NA | ENSG00000228716 | DHFR | dihydrofolate reductase | 1719 | Dihydrofolate reductase converts dihydrofolate into tetrahydrofolate, a methyl group shuttle required for the de novo synthesis of purines, thymidylic acid, and certain amino acids. While the functional dihydrofolate reductase gene has been mapped to chromosome 5, multiple intronless processed pseudogenes or dihydrofolate reductase-like genes have been identified on separate chromosomes. Dihydrofolate reductase deficiency has been linked to megaloblastic anemia. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000271043 | MTRNR2L2 | MT-RNR2-like 2 | ENSG00000271043 | NA |
| NA | ENSG00000113319 | RASGRF2 | Ras protein specific guanine nucleotide releasing factor 2 | 5924 | RAS GTPases cycle between an inactive GDP-bound state and an active GTP-bound state. This gene encodes a calcium-regulated nucleotide exchange factor activating both RAS and RAS-related protein, RAC1, through the exchange of bound GDP for GTP, thereby, coordinating the signaling of distinct mitogen-activated protein kinase pathways. |
| NA | ENSG00000131730 | CKMT2 | creatine kinase, mitochondrial 2 | 1160 | Mitochondrial creatine kinase (MtCK) is responsible for the transfer of high energy phosphate from mitochondria to the cytosolic carrier, creatine. It belongs to the creatine kinase isoenzyme family. It exists as two isoenzymes, sarcomeric MtCK and ubiquitous MtCK, encoded by separate genes. Mitochondrial creatine kinase occurs in two different oligomeric forms: dimers and octamers, in contrast to the exclusively dimeric cytosolic creatine kinase isoenzymes. Sarcomeric mitochondrial creatine kinase has 80% homology with the coding exons of ubiquitous mitochondrial creatine kinase. This gene contains sequences homologous to several motifs that are shared among some nuclear genes encoding mitochondrial proteins and thus may be essential for the coordinated activation of these genes during mitochondrial biogenesis. Three transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000145687 | SSBP2 | single stranded DNA binding protein 2 | 23635 | SSBP2 is a subunit of a single-stranded DNA (ssDNA)-binding complex involved in the maintenance of genome stability (Huang et al., 2009) [PubMed 19683501]. |
| NA | ENSG00000186468 | RPS23 | ribosomal protein S23 | 6228 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S12P family of ribosomal proteins. It is located in the cytoplasm. The protein shares significant amino acid similarity with S. cerevisiae ribosomal protein S28. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000174695 | TMEM167A | transmembrane protein 167A | 153339 | NA |
| NA | ENSG00000038427 | VCAN | versican | 1462 | This gene is a member of the aggrecan/versican proteoglycan family. The protein encoded is a large chondroitin sulfate proteoglycan and is a major component of the extracellular matrix. This protein is involved in cell adhesion, proliferation, proliferation, migration and angiogenesis and plays a central role in tissue morphogenesis and maintenance. Mutations in this gene are the cause of Wagner syndrome type 1. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000145681 | HAPLN1 | hyaluronan and proteoglycan link protein 1 | 1404 | NA |
| NA | ENSG00000164176 | EDIL3 | EGF like repeats and discoidin domains 3 | 10085 | The protein encoded by this gene is an integrin ligand. It plays an important role in mediating angiogenesis and may be important in vessel wall remodeling and development. It also influences endothelial cell behavior. |
| NA | ENSG00000127184 | COX7C | cytochrome c oxidase subunit 7C | 1350 | Cytochrome c oxidase (COX), the terminal component of the mitochondrial respiratory chain, catalyzes the electron transfer from reduced cytochrome c to oxygen. This component is a heteromeric complex consisting of 3 catalytic subunits encoded by mitochondrial genes and multiple structural subunits encoded by nuclear genes. The mitochondrially-encoded subunits function in electron transfer, and the nuclear-encoded subunits may function in the regulation and assembly of the complex. This nuclear gene encodes subunit VIIc, which shares 87% and 85% amino acid sequence identity with mouse and bovine COX VIIc, respectively, and is found in all tissues. A pseudogene COX7CP1 has been found on chromosome 13. |
| NA | ENSG00000145715 | RASA1 | RAS p21 protein activator 1 | 5921 | The protein encoded by this gene is located in the cytoplasm and is part of the GAP1 family of GTPase-activating proteins. The gene product stimulates the GTPase activity of normal RAS p21 but not its oncogenic counterpart. Acting as a suppressor of RAS function, the protein enhances the weak intrinsic GTPase activity of RAS proteins resulting in the inactive GDP-bound form of RAS, thereby allowing control of cellular proliferation and differentiation. Mutations leading to changes in the binding sites of either protein are associated with basal cell carcinomas. Mutations also have been associated with hereditary capillary malformations (CM) with or without arteriovenous malformations (AVM) and Parkes Weber syndrome. Alternative splicing results in two isoforms where the shorter isoform, lacking the N-terminal hydrophobic region but retaining the same activity, appears to be abundantly expressed in placental but not adult tissues. |
| NA | ENSG00000134480 | CCNH | cyclin H | 902 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance through the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. This cyclin forms a complex with CDK7 kinase and ring finger protein MAT1. The kinase complex is able to phosphorylate CDK2 and CDC2 kinases, thus functions as a CDK-activating kinase (CAK). This cyclin and its kinase partner are components of TFIIH, as well as RNA polymerase II protein complexes. They participate in two different transcriptional regulation processes, suggesting an important link between basal transcription control and the cell cycle machinery. A pseudogene of this gene is found on chromosome 4. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000164180 | TMEM161B | transmembrane protein 161B | 153396 | NA |
| NA | ENSG00000081189 | MEF2C | myocyte enhancer factor 2C | 4208 | This locus encodes a member of the MADS box transcription enhancer factor 2 (MEF2) family of proteins, which play a role in myogenesis. The encoded protein, MEF2 polypeptide C, has both trans-activating and DNA binding activities. This protein may play a role in maintaining the differentiated state of muscle cells. Mutations and deletions at this locus have been associated with severe mental retardation, stereotypic movements, epilepsy, and cerebral malformation. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000176055 | MBLAC2 | metallo-beta-lactamase domain containing 2 | 153364 | NA |
| NA | ENSG00000113356 | POLR3G | polymerase (RNA) III subunit G | 10622 | NA |
| NA | ENSG00000176018 | LYSMD3 | LysM domain containing 3 | 116068 | NA |
| NA | ENSG00000113369 | ARRDC3 | arrestin domain containing 3 | 57561 | NA |
| NA | ENSG00000113391 | FAM172A | family with sequence similarity 172 member A | 83989 | NA |
| NA | ENSG00000248483 | POU5F2 | POU domain class 5, transcription factor 2 | 134187 | NA |
| NA | ENSG00000185261 | KIAA0825 | KIAA0825 | 285600 | NA |
| NA | ENSG00000164291 | ARSK | arylsulfatase family member K | 153642 | Sulfatases (EC 3.1.5.6), such as ARSK, hydrolyze sulfate esters from sulfated steroids, carbohydrates, proteoglycans, and glycolipids. They are involved in hormone biosynthesis, modulation of cell signaling, and degradation of macromolecules (Sardiello et al., 2005 [PubMed 16174644]). |
| NA | ENSG00000175449 | RFESD | Rieske Fe-S domain containing | 317671 | NA |
| NA | ENSG00000164292 | RHOBTB3 | Rho related BTB domain containing 3 | 22836 | RHOBTB3 is a member of the evolutionarily conserved RHOBTB subfamily of Rho GTPases. For background information on RHOBTBs, see RHOBTB1 (MIM 607351). |
| NA | ENSG00000118985 | ELL2 | elongation factor for RNA polymerase II 2 | 22936 | NA |
| NA | ENSG00000153113 | CAST | calpastatin | 831 | The protein encoded by this gene is an endogenous calpain (calcium-dependent cysteine protease) inhibitor. It consists of an N-terminal domain L and four repetitive calpain-inhibition domains (domains 1-4), and it is involved in the proteolysis of amyloid precursor protein. The calpain/calpastatin system is involved in numerous membrane fusion events, such as neural vesicle exocytosis and platelet and red-cell aggregation. The encoded protein is also thought to affect the expression levels of genes encoding structural or regulatory proteins. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000164307 | ERAP1 | endoplasmic reticulum aminopeptidase 1 | 51752 | The protein encoded by this gene is an aminopeptidase involved in trimming HLA class I-binding precursors so that they can be presented on MHC class I molecules. The encoded protein acts as a monomer or as a heterodimer with ERAP2. This protein may also be involved in blood pressure regulation by inactivation of angiotensin II. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000113441 | LNPEP | leucyl/cystinyl aminopeptidase | 4012 | This gene encodes a zinc-dependent aminopeptidase that cleaves vasopressin, oxytocin, lys-bradykinin, met-enkephalin, dynorphin A and other peptide hormones. The protein can be secreted in maternal serum, reside in intracellular vesicles with the insulin-responsive glucose transporter GLUT4, or form a type II integral membrane glycoprotein. The protein catalyzes the final step in the conversion of angiotensinogen to angiotensin IV (AT4) and is also a receptor for AT4. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000145721 | LIX1 | limb and CNS expressed 1 | 167410 | NA |
| NA | ENSG00000058729 | RIOK2 | RIO kinase 2 | 55781 | NA |
| NA | ENSG00000174136 | RGMB | repulsive guidance molecule family member b | 285704 | RGMB is a glycosylphosphatidylinositol (GPI)-anchored member of the repulsive guidance molecule family (see RGMA, MIM 607362) and contributes to the patterning of the developing nervous system (Samad et al., 2005 [PubMed 15671031]). |
| NA | ENSG00000153922 | CHD1 | chromodomain helicase DNA binding protein 1 | 1105 | The CHD family of proteins is characterized by the presence of chromo (chromatin organization modifier) domains and SNF2-related helicase/ATPase domains. CHD genes alter gene expression possibly by modification of chromatin structure thus altering access of the transcriptional apparatus to its chromosomal DNA template. |
| NA | ENSG00000174132 | FAM174A | family with sequence similarity 174 member A | 345757 | NA |
| NA | ENSG00000173930 | SLCO4C1 | solute carrier organic anion transporter family member 4C1 | 353189 | SLCO4C1 belongs to the organic anion transporter (OATP) family. OATPs are involved in the membrane transport of bile acids, conjugated steroids, thyroid hormone, eicosanoids, peptides, and numerous drugs in many tissues (Mikkaichi et al., 2004 [PubMed 14993604]). |
| NA | ENSG00000145723 | GIN1 | gypsy retrotransposon integrase 1 | 54826 | NA |
| NA | ENSG00000145725 | PPIP5K2 | diphosphoinositol pentakisphosphate kinase 2 | 23262 | Inositol phosphates (IPs) and diphosphoinositol phosphates (PP-IPs), also known as inositol pyrophosphates, act as cell signaling molecules. HISPPD1 has both IP6 kinase (EC 2.7.4.21) and PP-IP5 (also called IP7) kinase (EC 2.7.4.24) activities that produce the high-energy pyrophosphates PP-IP5 and PP2-IP4 (also called IP8), respectively (Fridy et al., 2007 [PubMed 17690096]). |
| NA | ENSG00000181751 | C5orf30 | chromosome 5 open reading frame 30 | 90355 | NA |
| NA | ENSG00000112874 | NUDT12 | nudix hydrolase 12 | 83594 | Nucleotides are involved in numerous biochemical reactions and pathways within the cell as substrates, cofactors, and effectors. Nudix hydrolases, such as NUDT12, regulate the concentrations of individual nucleotides and of nucleotide ratios in response to changing circumstances (Abdelraheim et al., 2003 [PubMed 12790796]). |
| NA | ENSG00000184349 | EFNA5 | ephrin-A5 | 1946 | Ephrin-A5, a member of the ephrin gene family, prevents axon bundling in cocultures of cortical neurons with astrocytes, a model of late stage nervous system development and differentiation. The EPH and EPH-related receptors comprise the largest subfamily of receptor protein-tyrosine kinases and have been implicated in mediating developmental events, particularly in the nervous system. EPH receptors typically have a single kinase domain and an extracellular region containing a Cys-rich domain and 2 fibronectin type III repeats. The ephrin ligands and receptors have been named by the Eph Nomenclature Committee (1997). Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. The Eph family of receptors are similarly divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. |
| NA | ENSG00000145743 | FBXL17 | F-box and leucine-rich repeat protein 17 | 64839 | Members of the F-box protein family, such as FBXL17, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000151422 | FER | FER tyrosine kinase | 2241 | The protein encoded by this gene is a member of the FPS/FES family of non-transmembrane receptor tyrosine kinases. It regulates cell-cell adhesion and mediates signaling from the cell surface to the cytoskeleton via growth factor receptors. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome X. |
| NA | ENSG00000198961 | PJA2 | praja ring finger ubiquitin ligase 2 | 9867 | NA |
| NA | ENSG00000164209 | SLC25A46 | solute carrier family 25 member 46 | 91137 | SLC25A46 belongs to the SLC25 family of mitochondrial carrier proteins (Haitina et al., 2006 [PubMed 16949250]). |
| NA | ENSG00000134987 | WDR36 | WD repeat domain 36 | 134430 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. Mutations in this gene have been associated with adult-onset primary open-angle glaucoma (POAG). |
| NA | ENSG00000152495 | CAMK4 | calcium/calmodulin-dependent protein kinase IV | 814 | The product of this gene belongs to the serine/threonine protein kinase family, and to the Ca(2+)/calmodulin-dependent protein kinase subfamily. This enzyme is a multifunctional serine/threonine protein kinase with limited tissue distribution, that has been implicated in transcriptional regulation in lymphocytes, neurons and male germ cells. |
| NA | ENSG00000164211 | STARD4 | StAR related lipid transfer domain containing 4 | 134429 | Cholesterol homeostasis is regulated, at least in part, by sterol regulatory element (SRE)-binding proteins (e.g., SREBP1; MIM 184756) and by liver X receptors (e.g., LXRA; MIM 602423). Upon sterol depletion, LXRs are inactive and SREBPs are cleaved, after which they bind promoter SREs and activate genes involved in cholesterol biosynthesis and uptake. Sterol transport is mediated by vesicles or by soluble protein carriers, such as steroidogenic acute regulatory protein (STAR; MIM 600617). STAR is homologous to a family of proteins containing a 200- to 210-amino acid STAR-related lipid transfer (START) domain, including STARD4 (Soccio et al., 2002 [PubMed 12011452]). |
| NA | ENSG00000134986 | NREP | neuronal regeneration related protein | 9315 | NA |
| NA | ENSG00000129595 | EPB41L4A | erythrocyte membrane protein band 4.1 like 4A | 64097 | Members of the band 4.1 protein superfamily, including EPB41L4A, are thought to regulate the interaction between the cytoskeleton and plasma membrane (Ishiguro et al., 2000 [PubMed 10874211]). |
| NA | ENSG00000134982 | APC | adenomatous polyposis coli | 324 | This gene encodes a tumor suppressor protein that acts as an antagonist of the Wnt signaling pathway. It is also involved in other processes including cell migration and adhesion, transcriptional activation, and apoptosis. Defects in this gene cause familial adenomatous polyposis (FAP), an autosomal dominant pre-malignant disease that usually progresses to malignancy. Disease-associated mutations tend to be clustered in a small region designated the mutation cluster region (MCR) and result in a truncated protein product. |
| NA | ENSG00000153037 | SRP19 | signal recognition particle 19kDa | 6728 | NA |
| NA | ENSG00000172795 | DCP2 | decapping mRNA 2 | 167227 | The protein encoded by this gene is a key component of an mRNA-decapping complex required for degradation of mRNAs, both in normal mRNA turnover, and in nonsense-mediated mRNA decay (NMD). It removes the 7-methyl guanine cap structure from mRNA, prior to its degradation from the 5’ end. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000171444 | MCC | mutated in colorectal cancers | 4163 | This gene is a candidate colorectal tumor suppressor gene that is thought to negatively regulate cell cycle progression. The orthologous gene in the mouse expresses a phosphoprotein associated with the plasma membrane and membrane organelles, and overexpression of the mouse protein inhibits entry into S phase. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000047188 | YTHDC2 | YTH domain containing 2 | 64848 | NA |
| NA | ENSG00000080709 | KCNN2 | potassium calcium-activated channel subfamily N member 2 | 3781 | Action potentials in vertebrate neurons are followed by an afterhyperpolarization (AHP) that may persist for several seconds and may have profound consequences for the firing pattern of the neuron. Each component of the AHP is kinetically distinct and is mediated by different calcium-activated potassium channels. The protein encoded by this gene is activated before membrane hyperpolarization and is thought to regulate neuronal excitability by contributing to the slow component of synaptic AHP. This gene is a member of the KCNN family of potassium channel genes. The encoded protein is an integral membrane protein that forms a voltage-independent calcium-activated channel with three other calmodulin-binding subunits. Alternate splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000152503 | TRIM36 | tripartite motif containing 36 | 55521 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. Multiple alternatively spliced transcript variants that encode different protein isoforms have been described for this gene. |
| NA | ENSG00000164219 | PGGT1B | protein geranylgeranyltransferase type I subunit beta | 5229 | Protein geranylgeranyltransferase type I (GGTase-I) transfers a geranylgeranyl group to the cysteine residue of candidate proteins containing a C-terminal CAAX motif in which ‘A’ is an aliphatic amino acid and ‘X’ is leucine (summarized by Zhang et al., 1994 [PubMed 8106351]). The enzyme is composed of a 48-kD alpha subunit (FNTA; MIM 134635) and a 43-kD beta subunit, encoded by the PGGT1B gene. The FNTA gene encodes the alpha subunit for both GGTase-I and the related enzyme farnesyltransferase. |
| NA | ENSG00000164221 | CCDC112 | coiled-coil domain containing 112 | 153733 | NA |
| NA | ENSG00000145780 | FEM1C | fem-1 homolog C | 56929 | NA |
| NA | ENSG00000134970 | TMED7 | transmembrane p24 trafficking protein 7 | 51014 | NA |
| NA | ENSG00000177879 | AP3S1 | adaptor related protein complex 3 sigma 1 subunit | 1176 | This gene encodes a subunit of the AP3 adaptor complex. This complex functions in the formation of subcellular vesicles budded from the Golgi body. Several related pseudogenes of this gene have been found. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000092421 | SEMA6A | semaphorin 6A | 57556 | The transmembrane semaphorin SEMA6A is expressed in developing neural tissue and is required for proper development of the thalamocortical projection (Leighton et al., 2001 [PubMed 11242070]). |
| NA | ENSG00000169570 | DTWD2 | DTW domain containing 2 | 285605 | NA |
| NA | ENSG00000172869 | DMXL1 | Dmx like 1 | 1657 | The protein encoded by this gene is a member of the WD repeat superfamily of proteins, which have regulatory functions. This gene is expressed in many tissue types including several types of eye tissue, and it has been associated with ocular phenotypes. In addition, it is upregulated in cultured cells that overexpress growth factor independence 1B, a transcription factor that is essential for hematopoietic cell development. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145779 | TNFAIP8 | TNF alpha induced protein 8 | 25816 | NA |
| NA | ENSG00000133835 | HSD17B4 | hydroxysteroid (17-beta) dehydrogenase 4 | 3295 | The protein encoded by this gene is a bifunctional enzyme that is involved in the peroxisomal beta-oxidation pathway for fatty acids. It also acts as a catalyst for the formation of 3-ketoacyl-CoA intermediates from both straight-chain and 2-methyl-branched-chain fatty acids. Defects in this gene that affect the peroxisomal fatty acid beta-oxidation activity are a cause of D-bifunctional protein deficiency (DBPD). An apparent pseudogene of this gene is present on chromosome 8. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000151304 | SRFBP1 | serum response factor binding protein 1 | 153443 | NA |
| NA | ENSG00000064692 | SNCAIP | synuclein alpha interacting protein | 9627 | This gene encodes a protein containing several protein-protein interaction domains, including ankyrin-like repeats, a coiled-coil domain, and an ATP/GTP-binding motif. The encoded protein interacts with alpha-synuclein in neuronal tissue and may play a role in the formation of cytoplasmic inclusions and neurodegeneration. A mutation in this gene has been associated with Parkinson’s disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000205302 | SNX2 | sorting nexin 2 | 6643 | This gene belongs to the sorting nexin family whose members contain the phosphoinositide-binding phox (PX) domain. The encoded protein is a component of the retromer complex which plays a role in protein sorting in the endocytic pathway. This protein may form oligomeric complexes with other family members. Alternate splicing results in multiple transcript variants of this gene. Pseudogenes associated with this gene are located on chromosomes 1 and 7. |
| NA | ENSG00000064652 | SNX24 | sorting nexin 24 | 28966 | NA |
| NA | ENSG00000168938 | PPIC | peptidylprolyl isomerase C | 5480 | The protein encoded by this gene is a member of the peptidyl-prolyl cis-trans isomerase (PPIase)) family. PPIases catalyze the cis-trans isomerization of proline imidic peptide bonds in oligopeptides and accelerate the folding of proteins. Similar to other PPIases, this protein can bind immunosuppressant cyclosporin A. |
| NA | ENSG00000168944 | CEP120 | centrosomal protein 120kDa | 153241 | This gene encodes a protein that functions in the microtubule-dependent coupling of the nucleus and the centrosome. A similar protein in mouse plays a role in both interkinetic nuclear migration, which is a characteristic pattern of nuclear movement in neural progenitors, and in neural progenitor self-renewal. Mutations in this gene are predicted to result in neurogenic defects. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000151292 | CSNK1G3 | casein kinase 1 gamma 3 | 1456 | This gene encodes a member of a family of serine/threonine protein kinases that phosphorylate caseins and other acidic proteins. A related protein in the African clawed frog participates in the transmission of Wnt/beta-catenin signaling. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000168916 | ZNF608 | zinc finger protein 608 | 57507 | NA |
| NA | ENSG00000155324 | GRAMD3 | GRAM domain containing 3 | 65983 | NA |
| NA | ENSG00000164904 | ALDH7A1 | aldehyde dehydrogenase 7 family member A1 | 501 | The protein encoded by this gene is a member of subfamily 7 in the aldehyde dehydrogenase gene family. These enzymes are thought to play a major role in the detoxification of aldehydes generated by alcohol metabolism and lipid peroxidation. This particular member has homology to a previously described protein from the green garden pea, the 26g pea turgor protein. It is also involved in lysine catabolism that is known to occur in the mitochondrial matrix. Recent reports show that this protein is found both in the cytosol and the mitochondria, and the two forms likely arise from the use of alternative translation initiation sites. An additional variant encoding a different isoform has also been found for this gene. Mutations in this gene are associated with pyridoxine-dependent epilepsy. Several related pseudogenes have also been identified. |
| NA | ENSG00000164902 | PHAX | phosphorylated adaptor for RNA export | 51808 | NA |
| NA | ENSG00000113368 | LMNB1 | lamin B1 | 4001 | This gene encodes one of the two B-type lamin proteins and is a component of the nuclear lamina. A duplication of this gene is associated with autosomal dominant adult-onset leukodystrophy (ADLD). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000173926 | MARCH3 | membrane associated ring-CH-type finger 3 | 115123 | This gene encodes a member of the membrane-associated RING-CH (MARCH) family. The encoded protein is an E3 ubiquitin-protein ligase that may be involved in regulation of the endosomal transport pathway. |
| NA | ENSG00000164241 | C5orf63 | chromosome 5 open reading frame 63 | 401207 | NA |
| NA | ENSG00000145794 | MEGF10 | multiple EGF like domains 10 | 84466 | This gene encodes a member of the multiple epidermal growth factor-like domains protein family. The encoded protein plays a role in cell adhesion, motility and proliferation, and is a critical mediator of apoptotic cell phagocytosis as well as amyloid-beta peptide uptake in the brain. Expression of this gene may be associated with schizophrenia, and mutations in this gene are a cause of early-onset myopathy, areflexia, respiratory distress, and dysphagia (EMARDD) as well as congenital myopathy with minicores. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000164244 | PRRC1 | proline rich coiled-coil 1 | 133619 | NA |
| NA | ENSG00000064651 | SLC12A2 | solute carrier family 12 member 2 | 6558 | The protein encoded by this gene mediates sodium and chloride transport and reabsorption. The encoded protein is a membrane protein and is important in maintaining proper ionic balance and cell volume. This protein is phosphorylated in response to DNA damage. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000138829 | FBN2 | fibrillin 2 | 2201 | The protein encoded by this gene is a component of connective tissue microfibrils and may be involved in elastic fiber assembly. Mutations in this gene cause congenital contractural arachnodactyly. |
| NA | ENSG00000113396 | SLC27A6 | solute carrier family 27 member 6 | 28965 | This gene encodes a member of the fatty acid transport protein family (FATP). FATPs are involved in the uptake of long-chain fatty acids and have unique expression patterns. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000066583 | ISOC1 | isochorismatase domain containing 1 | 51015 | NA |
| NA | ENSG00000198108 | CHSY3 | chondroitin sulfate synthase 3 | 337876 | CSS3 is a glycosyltransferase that has both glucuronyltransferase and N-acetylgalactosaminyltransferase activities (Yada et al., 2003 [PubMed 12907687]). |
| NA | ENSG00000169567 | HINT1 | histidine triad nucleotide binding protein 1 | 3094 | This gene encodes a protein that hydrolyzes purine nucleotide phosphoramidates substrates, including AMP-morpholidate, AMP-N-alanine methyl ester, AMP-alpha-acetyl lysine methyl ester, and AMP-NH2. The encoded protein interacts with these substrates via a histidine triad motif. This gene is considered a tumor suppressor gene. In addition, mutations in this gene can cause autosomal recessive neuromyotonia and axonal neuropathy. There are several related pseudogenes on chromosome 7. Several transcript variants have been observed. |
| NA | ENSG00000158985 | CDC42SE2 | CDC42 small effector 2 | 56990 | NA |
| NA | ENSG00000158987 | RAPGEF6 | Rap guanine nucleotide exchange factor 6 | 51735 | NA |
| NA | ENSG00000217128 | FNIP1 | folliculin interacting protein 1 | 96459 | NA |
| NA | ENSG00000072682 | P4HA2 | prolyl 4-hydroxylase subunit alpha 2 | 8974 | This gene encodes a component of prolyl 4-hydroxylase, a key enzyme in collagen synthesis composed of two identical alpha subunits and two beta subunits. The encoded protein is one of several different types of alpha subunits and provides the major part of the catalytic site of the active enzyme. In collagen and related proteins, prolyl 4-hydroxylase catalyzes the formation of 4-hydroxyproline that is essential to the proper three-dimensional folding of newly synthesized procollagen chains. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000131435 | PDLIM4 | PDZ and LIM domain 4 | 8572 | This gene encodes a protein which may be involved in bone development. Mutations in this gene are associated with susceptibility to osteoporosis. |
| NA | ENSG00000197375 | SLC22A5 | solute carrier family 22 member 5 | 6584 | Polyspecific organic cation transporters in the liver, kidney, intestine, and other organs are critical for elimination of many endogenous small organic cations as well as a wide array of drugs and environmental toxins. The encoded protein is a plasma integral membrane protein which functions both as an organic cation transporter and as a sodium-dependent high affinity carnitine transporter. The encoded protein is involved in the active cellular uptake of carnitine. Mutations in this gene are the cause of systemic primary carnitine deficiency (CDSP), an autosomal recessive disorder manifested early in life by hypoketotic hypoglycemia and acute metabolic decompensation, and later in life by skeletal myopathy or cardiomyopathy. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000125347 | IRF1 | interferon regulatory factor 1 | 3659 | IRF1 encodes interferon regulatory factor 1, a member of the interferon regulatory transcription factor (IRF) family. IRF1 serves as an activator of interferons alpha and beta transcription, and in mouse it has been shown to be required for double-stranded RNA induction of these genes. IRF1 also functions as a transcription activator of genes induced by interferons alpha, beta, and gamma. Further, IRF1 has been shown to play roles in regulating apoptosis and tumor-suppressoion. |
| NA | ENSG00000113522 | RAD50 | RAD50 double strand break repair protein | 10111 | The protein encoded by this gene is highly similar to Saccharomyces cerevisiae Rad50, a protein involved in DNA double-strand break repair. This protein forms a complex with MRE11 and NBS1. The protein complex binds to DNA and displays numerous enzymatic activities that are required for nonhomologous joining of DNA ends. This protein, cooperating with its partners, is important for DNA double-strand break repair, cell cycle checkpoint activation, telomere maintenance, and meiotic recombination. Knockout studies of the mouse homolog suggest this gene is essential for cell growth and viability. Mutations in this gene are the cause of Nijmegen breakage syndrome-like disorder. |
| NA | ENSG00000131437 | KIF3A | kinesin family member 3A | 11127 | NA |
| NA | ENSG00000164402 | SEPT8 | septin 8 | 23176 | This gene is a member of the septin family of nucleotide binding proteins, originally described in yeast as cell division cycle regulatory proteins. Septins are highly conserved in yeast, Drosophila, and mouse, and appear to regulate cytoskeletal organization. Disruption of septin function disturbs cytokinesis and results in large multinucleate or polyploid cells. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164405 | UQCRQ | ubiquinol-cytochrome c reductase complex III subunit VII | 27089 | This gene encodes a ubiquinone-binding protein of low molecular mass. This protein is a small core-associated protein and a subunit of ubiquinol-cytochrome c reductase complex III, which is part of the mitochondrial respiratory chain. |
| NA | ENSG00000164406 | LEAP2 | liver expressed antimicrobial peptide 2 | 116842 | This gene encodes a cysteine-rich cationic antimicrobial peptide that is expressed predominantly in the liver. The mature peptide has activity against gram-positive bacteria and yeasts. |
| NA | ENSG00000072364 | AFF4 | AF4/FMR2 family member 4 | 27125 | The protein encoded by this gene belongs to the AF4 family of transcription factors involved in leukemia. It is a component of the positive transcription elongation factor b (P-TEFb) complex. A chromosomal translocation involving this gene and MLL gene on chromosome 11 is found in infant acute lymphoblastic leukemia with ins(5;11)(q31;q31q23). |
| NA | ENSG00000155329 | ZCCHC10 | zinc finger CCHC-type containing 10 | 54819 | NA |
| NA | ENSG00000170606 | HSPA4 | heat shock protein family A (Hsp70) member 4 | 3308 | NA |
| NA | ENSG00000053108 | FSTL4 | follistatin like 4 | 23105 | NA |
| NA | ENSG00000113583 | C5orf15 | chromosome 5 open reading frame 15 | 56951 | NA |
| NA | ENSG00000213585 | VDAC1 | voltage dependent anion channel 1 | 7416 | This gene encodes a voltage-dependent anion channel protein that is a major component of the outer mitochondrial membrane. The encoded protein facilitates the exchange of metabolites and ions across the outer mitochondrial membrane and may regulate mitochondrial functions. This protein also forms channels in the plasma membrane and may be involved in transmembrane electron transport. Alternate splicing results in multiple transcript variants. Multiple pseudogenes of this gene are found on chromosomes 1, 2 3, 6, 9, 12, X and Y. |
| NA | ENSG00000081059 | TCF7 | transcription factor 7 (T-cell specific, HMG-box) | 6932 | The protein encoded by this gene is a transcriptional activator that plays an important role in lymphocyte differentiation. This gene is expressed predominantly in T-cells. The encoded protein can bind an enhancer element and activate the CD3E gene, and it also may repress the CTNNB1 and TCF7L2 genes through a feedback mechanism. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000113558 | SKP1 | S-phase kinase-associated protein 1 | 6500 | This gene encodes a component of SCF complexes, which are composed of this protein, cullin 1, a ring-box protein, and one member of the F-box family of proteins. This protein binds directly to the F-box motif found in F-box proteins. SCF complexes are involved in the regulated ubiquitination of specific protein substrates, which targets them for degradation by the proteosome. Specific F-box proteins recognize different target protein(s), and many specific SCF substrates have been identified including regulators of cell cycle progression and development. Studies have also characterized the protein as an RNA polymerase II elongation factor. Alternative splicing of this gene results in two transcript variants. A related pseudogene has been identified on chromosome 7. |
| NA | ENSG00000113575 | PPP2CA | protein phosphatase 2 catalytic subunit alpha | 5515 | This gene encodes the phosphatase 2A catalytic subunit. Protein phosphatase 2A is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. This gene encodes an alpha isoform of the catalytic subunit. |
| NA | ENSG00000006837 | CDKL3 | cyclin dependent kinase like 3 | 51265 | The protein encoded by this gene is a member of cyclin-dependent protein kinase (CDK) family. CDK family members are highly similar to the gene products of Saccharomyces cerevisiae cdc28, and Schizosaccharomyces pombe cdc2, and are known to be important regulators of cell cycle progression. This gene was identified as a gene absent in leukemic patients with chromosome 5q deletion. This loss may be an important determinant of dysmyelopoiesis. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000237190 | CDKN2AIPNL | CDKN2A interacting protein N-terminal like | 91368 | NA |
| NA | ENSG00000152700 | SAR1B | secretion associated Ras related GTPase 1B | 51128 | The protein encoded by this gene is a small GTPase that acts as a homodimer. The encoded protein is activated by the guanine nucleotide exchange factor PREB and is involved in protein transport from the endoplasmic reticulum to the Golgi. This protein is part of the COPII coat complex. Defects in this gene are a cause of chylomicron retention disease (CMRD), also known as Anderson disease (ANDD). Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000113615 | SEC24A | SEC24 homolog A, COPII coat complex component | 10802 | The protein encoded by this gene belongs to a family of proteins that are homologous to yeast Sec24. This protein is a component of coat protein II (COPII)-coated vesicles that mediate protein transport from the endoplasmic reticulum. COPII acts in the cytoplasm to promote the transport of secretory, plasma membrane, and vacuolar proteins from the endoplasmic reticulum to the golgi complex. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164615 | CAMLG | calcium modulating ligand | 819 | The immunosuppressant drug cyclosporin A blocks a calcium-dependent signal from the T-cell receptor (TCR) that normally leads to T-cell activation. When bound to cyclophilin B, cyclosporin A binds and inactivates the key signaling intermediate calcineurin. The protein encoded by this gene functions similarly to cyclosporin A, binding to cyclophilin B and acting downstream of the TCR and upstream of calcineurin by causing an influx of calcium. This integral membrane protein appears to be a new participant in the calcium signal transduction pathway, implicating cyclophilin B in calcium signaling, even in the absence of cyclosporin. |
| NA | ENSG00000145833 | DDX46 | DEAD-box helicase 46 | 9879 | This gene encodes a member of the DEAD box protein family. DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. The protein encoded by this gene is a component of the 17S U2 snRNP complex; it plays an important role in pre-mRNA splicing. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000181904 | C5orf24 | chromosome 5 open reading frame 24 | 134553 | NA |
| NA | ENSG00000113621 | TXNDC15 | thioredoxin domain containing 15 | 79770 | NA |
| NA | ENSG00000132570 | PCBD2 | pterin-4 alpha-carbinolamine dehydratase 2 | 84105 | NA |
| NA | ENSG00000120708 | TGFBI | transforming growth factor beta induced | 7045 | This gene encodes an RGD-containing protein that binds to type I, II and IV collagens. The RGD motif is found in many extracellular matrix proteins modulating cell adhesion and serves as a ligand recognition sequence for several integrins. This protein plays a role in cell-collagen interactions and may be involved in endochondrial bone formation in cartilage. The protein is induced by transforming growth factor-beta and acts to inhibit cell adhesion. Mutations in this gene are associated with multiple types of corneal dystrophy. |
| NA | ENSG00000152377 | SPOCK1 | sparc/osteonectin, cwcv and kazal-like domains proteoglycan (testican) 1 | 6695 | This gene encodes the protein core of a seminal plasma proteoglycan containing chondroitin- and heparan-sulfate chains. The protein’s function is unknown, although similarity to thyropin-type cysteine protease-inhibitors suggests its function may be related to protease inhibition. |
| NA | ENSG00000146021 | KLHL3 | kelch like family member 3 | 26249 | This gene is ubiquitously expressed and encodes a full-length protein which has an N-terminal BTB domain followed by a BACK domain and six kelch-like repeats in the C-terminus. These kelch-like repeats promote substrate ubiquitination of bound proteins via interaction of the BTB domain with the CUL3 (cullin 3) component of a cullin-RING E3 ubiquitin ligase (CRL) complex. Muatations in this gene cause pseudohypoaldosteronism type IID (PHA2D); a rare Mendelian syndrome featuring hypertension, hyperkalaemia and metabolic acidosis. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000177733 | HNRNPA0 | heterogeneous nuclear ribonucleoprotein A0 | 10949 | This gene belongs to the A/B subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has two repeats of quasi-RRM domains that bind RNAs, followed by a glycine-rich C-terminus. |
| NA | ENSG00000031003 | FAM13B | family with sequence similarity 13 member B | 51306 | NA |
| NA | ENSG00000112981 | NME5 | NME/NM23 family member 5 | 8382 | NA |
| NA | ENSG00000112984 | KIF20A | kinesin family member 20A | 10112 | NA |
| NA | ENSG00000094880 | CDC23 | cell division cycle 23 | 8697 | The protein encoded by this gene shares strong similarity with Saccharomyces cerevisiae Cdc23, a protein essential for cell cycle progression through the G2/M transition. This protein is a component of anaphase-promoting complex (APC), which is composed of eight protein subunits and highly conserved in eukaryotic cells. APC catalyzes the formation of cyclin B-ubiquitin conjugate that is responsible for the ubiquitin-mediated proteolysis of B-type cyclins. This protein and 3 other members of the APC complex contain the TPR (tetratricopeptide repeat), a protein domain important for protein-protein interaction. |
| NA | ENSG00000158402 | CDC25C | cell division cycle 25C | 995 | This gene encodes a conserved protein that plays a key role in the regulation of cell division. The encoded protein directs dephosphorylation of cyclin B-bound CDC2 and triggers entry into mitosis. It also suppresses p53-induced growth arrest. Multiple alternatively spliced transcript variants of this gene have been described. |
| NA | ENSG00000120709 | FAM53C | family with sequence similarity 53 member C | 51307 | NA |
| NA | ENSG00000120733 | KDM3B | lysine demethylase 3B | 51780 | NA |
| NA | ENSG00000132563 | REEP2 | receptor accessory protein 2 | 51308 | This gene encodes a member of the receptor expression enhancing protein family. Studies of a related gene in mouse suggest that the encoded protein is found in the cell membrane and enhances the function of sweet taste receptors. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000120738 | EGR1 | early growth response 1 | 1958 | The protein encoded by this gene belongs to the EGR family of C2H2-type zinc-finger proteins. It is a nuclear protein and functions as a transcriptional regulator. The products of target genes it activates are required for differentitation and mitogenesis. Studies suggest this is a cancer suppressor gene. |
| NA | ENSG00000120705 | ETF1 | eukaryotic translation termination factor 1 | 2107 | This gene encodes a class-1 polypeptide chain release factor. The encoded protein plays an essential role in directing termination of mRNA translation from the termination codons UAA, UAG and UGA. This protein is a component of the SURF complex which promotes degradation of prematurely terminated mRNAs via the mechanism of nonsense-mediated mRNA decay (NMD). Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 6, 7, and X. |
| NA | ENSG00000113013 | HSPA9 | heat shock protein family A (Hsp70) member 9 | 3313 | This gene encodes a member of the heat shock protein 70 gene family. The encoded protein is primarily localized to the mitochondria but is also found in the endoplasmic reticulum, plasma membrane and cytoplasmic vesicles. This protein is a heat-shock cognate protein. This protein plays a role in cell proliferation, stress response and maintenance of the mitochondria. A pseudogene of this gene is found on chromosome 2. |
| NA | ENSG00000120725 | SIL1 | SIL1 nucleotide exchange factor | 64374 | This gene encodes a resident endoplasmic reticulum (ER), N-linked glycoprotein with an N-terminal ER targeting sequence, 2 putative N-glycosylation sites, and a C-terminal ER retention signal. This protein functions as a nucleotide exchange factor for another unfolded protein response protein. Mutations in this gene have been associated with Marinesco-Sjogren syndrome. Alternate transcriptional splice variants have been characterized. |
| NA | ENSG00000015479 | MATR3 | matrin 3 | 9782 | This gene encodes a nuclear matrix protein, which is proposed to stabilize certain messenger RNA species. Mutations of this gene are associated with distal myopathy 2, which often includes vocal cord and pharyngeal weakness. Alternatively spliced transcript variants, including read-through transcripts composed of the upstream small nucleolar RNA host gene 4 (non-protein coding) and matrin 3 gene sequence, have been identified. Pseudogenes of this gene are located on chromosomes 1 and X. |
| NA | ENSG00000120727 | PAIP2 | poly(A) binding protein interacting protein 2 | 51247 | NA |
| NA | ENSG00000170469 | SPATA24 | spermatogenesis associated 24 | 202051 | NA |
| NA | ENSG00000170464 | DNAJC18 | DnaJ heat shock protein family (Hsp40) member C18 | 202052 | NA |
| NA | ENSG00000249751 | ECSCR | endothelial cell surface expressed chemotaxis and apoptosis regulator | 641700 | The protein encoded by this gene is primarily found in endothelial cells and blood vessels, where it is involved in cell shape changes and EGF-induced cell migration. It can enhance the activation of vascular endothelial growth factor receptor-2/kinase insert domain receptor and also promote the proteolysis of internalized kinase insert domain receptor. This gene may play a role in angiogenesis-related diseases. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000131508 | UBE2D2 | ubiquitin conjugating enzyme E2 D2 | 7322 | Regulated degradation of misfolded, damaged or short-lived proteins in eukaryotes occurs via the ubiquitin (Ub)-proteasome system (UPS). An integral part of the UPS system is the ubiquitination of target proteins and covalent linkage of Ub-containing proteins to form polymeric chains, marking them as targets for 26S proteasome-mediated degradation. Ubiquitination of proteins is mediated by a cascade of enzymes which includes E1 (ubiquitin activating), E2 (ubiquitin conjugating), and E3 (ubiquitin ligases) enzymes. This gene encodes a member of the E2 enzyme family. Substrates of this enzyme include the tumor suppressor protein p53 and peroxisomal biogenesis factor 5 (PEX5). Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000171604 | CXXC5 | CXXC finger protein 5 | 51523 | The protein encoded by this gene is a retinoid-inducible nuclear protein containing a CXXC-type zinc finger motif. The encoded protein is involved in myelopoiesis, is required for DNA damage-induced p53 activation, regulates the differentiation of C2C12 myoblasts into myocytes, and negatively regulates cutaneous wound healing. Several transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000185129 | PURA | purine-rich element binding protein A | 5813 | This gene product is a sequence-specific, single-stranded DNA-binding protein. It binds preferentially to the single strand of the purine-rich element termed PUR, which is present at origins of replication and in gene flanking regions in a variety of eukaryotes from yeasts through humans. Thus, it is implicated in the control of both DNA replication and transcription. Deletion of this gene has been associated with myelodysplastic syndrome and acute myelogenous leukemia. |
| NA | ENSG00000120306 | CYSTM1 | cysteine rich transmembrane module containing 1 | 84418 | NA |
| NA | ENSG00000113068 | PFDN1 | prefoldin subunit 1 | 5201 | This gene encodes a member of the prefoldin beta subunit family. The encoded protein is one of six subunits of prefoldin, a molecular chaperone complex that binds and stabilizes newly synthesized polypeptides, thereby allowing them to fold correctly. The complex, consisting of two alpha and four beta subunits, forms a double beta barrel assembly with six protruding coiled-coils. |
| NA | ENSG00000113070 | HBEGF | heparin binding EGF like growth factor | 1839 | NA |
| NA | ENSG00000131503 | ANKHD1 | ankyrin repeat and KH domain containing 1 | 54882 | This gene encodes a protein with multiple ankyrin repeat domains and a single KH-domain. The protein is thought to function as a scaffolding protein, and it may be involved in the regulation of caspases and thereby play an antiapoptotic role in cell survival. Alternative splicing results in multiple transcript variants, one of which generates a fusion transcript (MASK-BP3) with the downstream eIF4E-binding protein 3 (EIF4EBP3) gene, resulting in a protein comprised of the ANKHD1 sequence for the majority of the protein and a different C-terminus due to an alternate reading frame for the EIF4EBP3 segments. |
| NA | ENSG00000243056 | EIF4EBP3 | eukaryotic translation initiation factor 4E binding protein 3 | 8637 | This gene encodes a member of the EIF4EBP family, which consists of proteins that bind to eukaryotic translation initiation factor 4E and regulate its assembly into EIF4F, the multi-subunit translation initiation factor that recognizes the mRNA cap structure. Read-through transcription from the neighboring upstream gene (MASK or ANKHD1) generates a transcript (MASK-BP3) that encodes a protein comprised of the MASK protein sequence for the majority of the protein and a different C-terminus due to an alternate reading frame for the EIF4EBP3 segments. |
| NA | ENSG00000113108 | APBB3 | amyloid beta precursor protein binding family B member 3 | 10307 | The protein encoded by this gene is a member of the APBB protein family. It is found in the cytoplasm and binds to the intracellular domain of the Alzheimer’s disease beta-amyloid precursor protein (APP) as well as to other APP-like proteins. It is thought that the protein encoded by this gene may modulate the internalization of APP. Multiple transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000176087 | SLC35A4 | solute carrier family 35 member A4 | 113829 | NA |
| NA | ENSG00000113119 | TMCO6 | transmembrane and coiled-coil domains 6 | 55374 | NA |
| NA | ENSG00000120314 | WDR55 | WD repeat domain 55 | 54853 | NA |
| NA | ENSG00000170445 | HARS | histidyl-tRNA synthetase | 3035 | Aminoacyl-tRNA synthetases are a class of enzymes that charge tRNAs with their cognate amino acids. The protein encoded by this gene is a cytoplasmic enzyme which belongs to the class II family of aminoacyl-tRNA synthetases. The enzyme is responsible for the synthesis of histidyl-transfer RNA, which is essential for the incorporation of histidine into proteins. The gene is located in a head-to-head orientation with HARSL on chromosome five, where the homologous genes share a bidirectional promoter. The gene product is a frequent target of autoantibodies in the human autoimmune disease polymyositis/dermatomyositis. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000112855 | HARS2 | histidyl-tRNA synthetase 2, mitochondrial | 23438 | Aminoacyl-tRNA synthetases are a class of enzymes that charge tRNAs with their cognate amino acids. The protein encoded by this gene is an enzyme belonging to the class II family of aminoacyl-tRNA synthetases. Functioning in the synthesis of histidyl-transfer RNA, the enzyme plays an accessory role in the regulation of protein biosynthesis. The gene is located in a head-to-head orientation with HARS on chromosome five, where the homologous genes likely share a bidirectional promoter. Mutations in this gene are associated with the pathogenesis of Perrault syndrome, which involves ovarian dysgenesis and sensorineural hearing loss. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000146007 | ZMAT2 | zinc finger matrin-type 2 | 153527 | NA |
| NA | ENSG00000251664 | PCDHA12 | protocadherin alpha 12 | 56137 | This gene is a member of the protocadherin alpha gene cluster, one of three related gene clusters tandemly linked on chromosome five that demonstrate an unusual genomic organization similar to that of B-cell and T-cell receptor gene clusters. The alpha gene cluster is composed of 15 cadherin superfamily genes related to the mouse CNR genes and consists of 13 highly similar and 2 more distantly related coding sequences. The tandem array of 15 N-terminal exons, or variable exons, are followed by downstream C-terminal exons, or constant exons, which are shared by all genes in the cluster. The large, uninterrupted N-terminal exons each encode six cadherin ectodomains while the C-terminal exons encode the cytoplasmic domain. These neural cadherin-like cell adhesion proteins are integral plasma membrane proteins that most likely play a critical role in the establishment and function of specific cell-cell connections in the brain. Alternative splicing has been observed and additional variants have been suggested but their full-length nature has yet to be determined. |
| NA | ENSG00000112852 | PCDHB2 | protocadherin beta 2 | 56133 | This gene is a member of the protocadherin beta gene cluster, one of three related gene clusters tandemly linked on chromosome five. The gene clusters demonstrate an unusual genomic organization similar to that of B-cell and T-cell receptor gene clusters. The beta cluster contains 16 genes and 3 pseudogenes, each encoding 6 extracellular cadherin domains and a cytoplasmic tail that deviates from others in the cadherin superfamily. The extracellular domains interact in a homophilic manner to specify differential cell-cell connections. Unlike the alpha and gamma clusters, the transcripts from these genes are made up of only one large exon, not sharing common 3’ exons as expected. These neural cadherin-like cell adhesion proteins are integral plasma membrane proteins. Their specific functions are unknown but they most likely play a critical role in the establishment and function of specific cell-cell neural connections. |
| NA | ENSG00000113209 | PCDHB5 | protocadherin beta 5 | 26167 | This gene is a member of the protocadherin beta gene cluster, one of three related gene clusters tandemly linked on chromosome five. The gene clusters demonstrate an unusual genomic organization similar to that of B-cell and T-cell receptor gene clusters. The beta cluster contains 16 genes and 3 pseudogenes, each encoding 6 extracellular cadherin domains and a cytoplasmic tail that deviates from others in the cadherin superfamily. The extracellular domains interact in a homophilic manner to specify differential cell-cell connections. Unlike the alpha and gamma clusters, the transcripts from these genes are made up of only one large exon, not sharing common 3’ exons as expected. These neural cadherin-like cell adhesion proteins are integral plasma membrane proteins. Their specific functions are unknown but they most likely play a critical role in the establishment and function of specific cell-cell neural connections. |
| TRUE | ENSG00000196963 | NA | NA | NA | NA |
| NA | ENSG00000113248 | PCDHB15 | protocadherin beta 15 | 56121 | This gene is a member of the protocadherin beta gene cluster, one of three related gene clusters tandemly linked on chromosome five. The gene clusters demonstrate an unusual genomic organization similar to that of B-cell and T-cell receptor gene clusters. The beta cluster contains 16 genes and 3 pseudogenes, each encoding 6 extracellular cadherin domains and a cytoplasmic tail that deviates from others in the cadherin superfamily. The extracellular domains interact in a homophilic manner to specify differential cell-cell connections. Unlike the alpha and gamma clusters, the transcripts from these genes are made up of only one large exon, not sharing common 3’ exons as expected. These neural cadherin-like cell adhesion proteins are integral plasma membrane proteins. Their specific functions are unknown but they most likely play a critical role in the establishment and function of specific cell-cell neural connections. |
| NA | ENSG00000131504 | DIAPH1 | diaphanous related formin 1 | 1729 | This gene is a homolog of the Drosophila diaphanous gene, and has been linked to autosomal dominant, fully penetrant, nonsyndromic sensorineural progressive low-frequency hearing loss. Actin polymerization involves proteins known to interact with diaphanous protein in Drosophila and mouse. It has therefore been speculated that this gene may have a role in the regulation of actin polymerization in hair cells of the inner ear. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000171720 | HDAC3 | histone deacetylase 3 | 8841 | Histones play a critical role in transcriptional regulation, cell cycle progression, and developmental events. Histone acetylation/deacetylation alters chromosome structure and affects transcription factor access to DNA. The protein encoded by this gene belongs to the histone deacetylase/acuc/apha family. It has histone deacetylase activity and represses transcription when tethered to a promoter. It may participate in the regulation of transcription through its binding with the zinc-finger transcription factor YY1. This protein can also down-regulate p53 function and thus modulate cell growth and apoptosis. This gene is regarded as a potential tumor suppressor gene. |
| NA | ENSG00000164620 | RELL2 | RELT like 2 | 285613 | NA |
| NA | ENSG00000197948 | FCHSD1 | FCH and double SH3 domains 1 | 89848 | NA |
| NA | ENSG00000120318 | ARAP3 | ArfGAP with RhoGAP domain, ankyrin repeat and PH domain 3 | 64411 | This gene encodes a phosphoinositide binding protein containing ARF-GAP, RHO-GAP, RAS-associating, and pleckstrin homology domains. The ARF-GAP and RHO-GAP domains cooperate in mediating rearrangements in the cell cytoskeleton and cell shape. It is a specific PtdIns(3,4,5)P3/PtdIns(3,4)P2-stimulated Arf6-GAP protein. An alternatively spliced transcript has been found for this gene, but its biological validity has not been determined. |
| NA | ENSG00000156453 | PCDH1 | protocadherin 1 | 5097 | This gene belongs to the protocadherin subfamily within the cadherin superfamily. The encoded protein is a membrane protein found at cell-cell boundaries. It is involved in neural cell adhesion, suggesting a possible role in neuronal development. The protein includes an extracelllular region, containing 7 cadherin-like domains, a transmembrane region and a C-terminal cytoplasmic region. Cells expressing the protein showed cell aggregation activity. Alternative splicing occurs in this gene. |
| NA | ENSG00000081791 | KIAA0141 | KIAA0141 | 9812 | NA |
| NA | ENSG00000013561 | RNF14 | ring finger protein 14 | 9604 | The protein encoded by this gene contains a RING zinc finger, a motif known to be involved in protein-protein interactions. This protein interacts with androgen receptor (AR) and may function as a coactivator that induces AR target gene expression in prostate. A dominant negative mutant of this gene has been demonstrated to inhibit the AR-mediated growth of prostate cancer. This protein also interacts with class III ubiquitin-conjugating enzymes (E2s) and may act as a ubiquitin-ligase (E3) in the ubiquitination of certain nuclear proteins. Six alternatively spliced transcript variants encoding two distinct isoforms have been reported. |
| NA | ENSG00000113552 | GNPDA1 | glucosamine-6-phosphate deaminase 1 | 10007 | Glucosamine-6-phosphate deaminase (EC 3.5.99.6) is an allosteric enzyme that catalyzes the reversible conversion of D-glucosamine-6-phosphate into D-fructose-6-phosphate and ammonium (Arreola et al., 2003 [PubMed 12965206]). |
| NA | ENSG00000131507 | NDFIP1 | Nedd4 family interacting protein 1 | 80762 | The protein encoded by this gene belongs to a small group of evolutionarily conserved proteins with three transmembrane domains. It is a potential target for ubiquitination by the Nedd4 family of proteins. This protein is thought to be part of a family of integral Golgi membrane proteins. |
| NA | ENSG00000187678 | SPRY4 | sprouty RTK signaling antagonist 4 | 81848 | This gene encodes a member of a family of cysteine- and proline-rich proteins. The encoded protein is an inhibitor of the receptor-transduced mitogen-activated protein kinase (MAPK) signaling pathway. Activity of this protein impairs the formation of active GTP-RAS. Nucleotide variation in this gene has been associated with hypogonadotropic hypogonadism 17 with or without anosmia. Alternative splicing results in a multiple transcript variants. |
| NA | ENSG00000145819 | ARHGAP26 | Rho GTPase activating protein 26 | 23092 | Interaction of a cell with the extracellular matrix triggers integrin cell surface receptors to begin signaling cascades that regulate the organization of the actin-cytoskeleton. One of the proteins involved in these cascades is focal adhesion kinase. The protein encoded by this gene is a GTPase activating protein that binds to focal adhesion kinase and mediates the activity of the GTP binding proteins RhoA and Cdc42. Defects in this gene are a cause of juvenile myelomonocytic leukemia (JMML). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000145817 | YIPF5 | Yip1 domain family member 5 | 81555 | NA |
| NA | ENSG00000186314 | PRELID2 | PRELI domain containing 2 | 153768 | NA |
| NA | ENSG00000133706 | LARS | leucyl-tRNA synthetase | 51520 | This gene encodes a cytosolic leucine-tRNA synthetase, a member of the class I aminoacyl-tRNA synthetase family. The encoded enzyme catalyzes the ATP-dependent ligation of L-leucine to tRNA(Leu). It is found in the cytoplasm as part of a multisynthetase complex and interacts with the arginine tRNA synthetase through its C-terminal domain. A mutation in this gene was found in affected individuals with infantile liver failure syndrome 1. Alternatively spliced transcript variants of this gene have been observed. |
| NA | ENSG00000091009 | RBM27 | RNA binding motif protein 27 | 54439 | NA |
| NA | ENSG00000113649 | TCERG1 | transcription elongation regulator 1 | 10915 | This gene encodes a nuclear protein that regulates transcriptional elongation and pre-mRNA splicing. The encoded protein interacts with the hyperphosphorylated C-terminal domain of RNA polymerase II via multiple FF domains, and with the pre-mRNA splicing factor SF1 via a WW domain. Alternative splicing results in multiple transcripts variants encoding different isoforms. |
| NA | ENSG00000156475 | PPP2R2B | protein phosphatase 2 regulatory subunit B, beta | 5521 | The product of this gene belongs to the phosphatase 2 regulatory subunit B family. Protein phosphatase 2 is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The B regulatory subunit might modulate substrate selectivity and catalytic activity. This gene encodes a beta isoform of the regulatory subunit B55 subfamily. Defects in this gene cause autosomal dominant spinocerebellar ataxia 12 (SCA12), a disease caused by degeneration of the cerebellum, sometimes involving the brainstem and spinal cord, and in resulting in poor coordination of speech and body movements. Multiple alternatively spliced variants, which encode different isoforms, have been identified for this gene. The 5’ UTR of some of these variants includes a CAG trinucleotide repeat sequence (7-28 copies) that can be expanded to 66-78 copies in cases of SCA12. |
| NA | ENSG00000113657 | DPYSL3 | dihydropyrimidinase like 3 | 1809 | NA |
| NA | ENSG00000176049 | JAKMIP2 | janus kinase and microtubule interacting protein 2 | 9832 | The protein encoded by this gene is reported to be a component of the Golgi matrix. It may act as a golgin protein by negatively regulating transit of secretory cargo and by acting as a structural scaffold of the Golgi. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145868 | FBXO38 | F-box protein 38 | 81545 | This gene encodes a large protein that contains an F-box domain and may participate in protein ubiquitination. The encoded protein is a transcriptional co-activator of Krueppel-like factor 7 (Klf7). A heterozygous mutation in this gene was found in individuals with autosomal dominant distal hereditary motor neuronopathy type IID. There is a pseudogene for this gene on chromosome 4. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000157510 | AFAP1L1 | actin filament associated protein 1 like 1 | 134265 | NA |
| NA | ENSG00000164284 | GRPEL2 | GrpE like 2, mitochondrial | 134266 | NA |
| NA | ENSG00000145882 | PCYOX1L | prenylcysteine oxidase 1 like | 78991 | NA |
| NA | ENSG00000113712 | CSNK1A1 | casein kinase 1 alpha 1 | 1452 | NA |
| NA | ENSG00000155846 | PPARGC1B | PPARG coactivator 1 beta | 133522 | The protein encoded by this gene stimulates the activity of several transcription factors and nuclear receptors, including estrogen receptor alpha, nuclear respiratory factor 1, and glucocorticoid receptor. The encoded protein may be involved in fat oxidation, non-oxidative glucose metabolism, and the regulation of energy expenditure. This protein is downregulated in prediabetic and type 2 diabetes mellitus patients. Certain allelic variations in this gene increase the risk of the development of obesity. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000155850 | SLC26A2 | solute carrier family 26 member 2 | 1836 | The diastrophic dysplasia sulfate transporter is a transmembrane glycoprotein implicated in the pathogenesis of several human chondrodysplasias. It apparently is critical in cartilage for sulfation of proteoglycans and matrix organization. |
| NA | ENSG00000113716 | HMGXB3 | HMG-box containing 3 | 22993 | This gene is one of the non-canonical high mobility group (HMG) genes. The encoded protein contains an HMG-box domain found in DNA binding proteins such as transcription factors and chromosomal proteins. |
| NA | ENSG00000113721 | PDGFRB | platelet derived growth factor receptor beta | 5159 | This gene encodes a cell surface tyrosine kinase receptor for members of the platelet-derived growth factor family. These growth factors are mitogens for cells of mesenchymal origin. The identity of the growth factor bound to a receptor monomer determines whether the functional receptor is a homodimer or a heterodimer, composed of both platelet-derived growth factor receptor alpha and beta polypeptides. This gene is flanked on chromosome 5 by the genes for granulocyte-macrophage colony-stimulating factor and macrophage-colony stimulating factor receptor; all three genes may be implicated in the 5-q syndrome. A translocation between chromosomes 5 and 12, that fuses this gene to that of the translocation, ETV6, leukemia gene, results in chronic myeloproliferative disorder with eosinophilia. |
| NA | ENSG00000070814 | TCOF1 | treacle ribosome biogenesis factor 1 | 6949 | This gene encodes a nucleolar protein with a LIS1 homology domain. The protein is involved in ribosomal DNA gene transcription through its interaction with upstream binding factor (UBF). Mutations in this gene have been associated with Treacher Collins syndrome, a disorder which includes abnormal craniofacial development. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000019582 | CD74 | CD74 molecule | 972 | The protein encoded by this gene associates with class II major histocompatibility complex (MHC) and is an important chaperone that regulates antigen presentation for immune response. It also serves as cell surface receptor for the cytokine macrophage migration inhibitory factor (MIF) which, when bound to the encoded protein, initiates survival pathways and cell proliferation. This protein also interacts with amyloid precursor protein (APP) and suppresses the production of amyloid beta (Abeta). Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000164587 | RPS14 | ribosomal protein S14 | 6208 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S11P family of ribosomal proteins. It is located in the cytoplasm. Transcript variants utilizing alternative transcription initiation sites have been described in the literature. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. In Chinese hamster ovary cells, mutations in this gene can lead to resistance to emetine, a protein synthesis inhibitor. Multiple alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000070614 | NDST1 | N-deacetylase/N-sulfotransferase 1 | 3340 | This gene encodes a member of the heparan sulfate/heparin GlcNAc N-deacetylase/ N-sulfotransferase family. The encoded enzyme is a type II transmembrane protein that resides in the Golgi apparatus. The encoded protein catalyzes the transfer of sulfate from 3’-phosphoadenosine 5’-phosphosulfate to nitrogen of glucosamine in heparan sulfate. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164591 | MYOZ3 | myozenin 3 | 91977 | The protein encoded by this gene is specifically expressed in the skeletal muscle, and belongs to the myozenin family. Members of this family function as calcineurin-interacting proteins that help tether calcineurin to the sarcomere of cardiac and skeletal muscle. They play an important role in modulation of calcineurin signaling. |
| NA | ENSG00000086589 | RBM22 | RNA binding motif protein 22 | 55696 | This gene encodes an RNA binding protein. The encoded protein may play a role in cell division and may be involved in pre-mRNA splicing. Related pseudogenes exist on chromosomes 6, 7, 9, 13, 16, 18, and X. |
| NA | ENSG00000132912 | DCTN4 | dynactin subunit 4 | 51164 | NA |
| NA | ENSG00000145908 | ZNF300 | zinc finger protein 300 | 91975 | The protein encoded by this gene is a C2H2-type zinc finger DNA binding protein and likely transcriptional regulator. The function of this protein is not yet known. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000211445 | GPX3 | glutathione peroxidase 3 | 2878 | This gene product belongs to the glutathione peroxidase family, which functions in the detoxification of hydrogen peroxide. It contains a selenocysteine (Sec) residue at its active site. The selenocysteine is encoded by the UGA codon, which normally signals translation termination. The 3’ UTR of Sec-containing genes have a common stem-loop structure, the sec insertion sequence (SECIS), which is necessary for the recognition of UGA as a Sec codon rather than as a stop signal. |
| NA | ENSG00000145901 | TNIP1 | TNFAIP3 interacting protein 1 | 10318 | This gene encodes an A20-binding protein which plays a role in autoimmunity and tissue homeostasis through the regulation of nuclear factor kappa-B activation. Mutations in this gene have been associated with psoriatic arthritis, rheumatoid arthritis, and systemic lupus erythematosus. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197043 | ANXA6 | annexin A6 | 309 | Annexin VI belongs to a family of calcium-dependent membrane and phospholipid binding proteins. Several members of the annexin family have been implicated in membrane-related events along exocytotic and endocytotic pathways. The annexin VI gene is approximately 60 kbp long and contains 26 exons. It encodes a protein of about 68 kDa that consists of eight 68-amino acid repeats separated by linking sequences of variable lengths. It is highly similar to human annexins I and II sequences, each of which contain four such repeats. Annexin VI has been implicated in mediating the endosome aggregation and vesicle fusion in secreting epithelia during exocytosis. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000198624 | CCDC69 | coiled-coil domain containing 69 | 26112 | NA |
| NA | ENSG00000196743 | GM2A | GM2 ganglioside activator | 2760 | This gene encodes a small glycolipid transport protein which acts as a substrate specific co-factor for the lysosomal enzyme beta-hexosaminidase A. Beta-hexosaminidase A, together with GM2 ganglioside activator, catalyzes the degradation of the ganglioside GM2, and other molecules containing terminal N-acetyl hexosamines. Mutations in this gene result in GM2-gangliosidosis type AB or the AB variant of Tay-Sachs disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000123643 | SLC36A1 | solute carrier family 36 member 1 | 206358 | This gene encodes a member of the eukaryote-specific amino acid/auxin permease (AAAP) 1 transporter family. The encoded protein functions as a proton-dependent, small amino acid transporter. This gene is clustered with related family members on chromosome 5q33.1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000113140 | SPARC | secreted protein acidic and cysteine rich | 6678 | This gene encodes a cysteine-rich acidic matrix-associated protein. The encoded protein is required for the collagen in bone to become calcified but is also involved in extracellular matrix synthesis and promotion of changes to cell shape. The gene product has been associated with tumor suppression but has also been correlated with metastasis based on changes to cell shape which can promote tumor cell invasion. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000177556 | ATOX1 | antioxidant 1 copper chaperone | 475 | This gene encodes a copper chaperone that plays a role in copper homeostasis by binding and transporting cytosolic copper to ATPase proteins in the trans-Golgi network for later incorporation to the ceruloplasmin. This protein also functions as an antioxidant against superoxide and hydrogen peroxide, and therefore, may play a significant role in cancer carcinogenesis. Because of its cytogenetic location, this gene represents a candidate gene for 5q-syndrome. |
| NA | ENSG00000145907 | G3BP1 | G3BP stress granule assembly factor 1 | 10146 | This gene encodes one of the DNA-unwinding enzymes which prefers partially unwound 3’-tailed substrates and can also unwind partial RNA/DNA and RNA/RNA duplexes in an ATP-dependent fashion. This enzyme is a member of the heterogeneous nuclear RNA-binding proteins and is also an element of the Ras signal transduction pathway. It binds specifically to the Ras-GTPase-activating protein by associating with its SH3 domain. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000055147 | FAM114A2 | family with sequence similarity 114 member A2 | 10827 | NA |
| NA | ENSG00000164574 | GALNT10 | polypeptide N-acetylgalactosaminyltransferase 10 | 55568 | This gene encodes a member of the GalNAc polypeptide N-acetylgalactosaminyltransferases. These enzymes catalyze the first step in the synthesis of mucin-type oligosaccharides. These proteins transfer GalNAc from UDP-GalNAc to either serine or threonine residues of polypeptide acceptors. The protein encoded by this locus may have increased catalytic activity toward glycosylated peptides compared to activity toward non-glycosylated peptides. |
| NA | ENSG00000164576 | SAP30L | SAP30-like | 79685 | NA |
| NA | ENSG00000155506 | LARP1 | La ribonucleoprotein domain family member 1 | 23367 | NA |
| NA | ENSG00000170271 | FAXDC2 | fatty acid hydroxylase domain containing 2 | 10826 | NA |
| NA | ENSG00000082516 | GEMIN5 | gem nuclear organelle associated protein 5 | 25929 | This gene encodes a WD repeat protein that is a component of the survival of motor neurons (SMN) complex. The SMN complex plays a critical role in mRNA splicing through the assembly of spliceosomal small nuclear ribonucleoproteins (snRNPs), and may also mediate the assembly and transport of other classes of ribonucleoproteins. The encoded protein is the snRNA-binding component of the SMN complex. Dysregulation of this gene may play a role in alternative mRNA splicing and tumor cell motility. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000082515 | MRPL22 | mitochondrial ribosomal protein L22 | 29093 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein that belongs to the L22 ribosomal protein family. A pseudogene corresponding to this gene is found on chromosome 4q. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000226650 | KIF4B | kinesin family member 4B | 285643 | NA |
| NA | ENSG00000155868 | MED7 | mediator complex subunit 7 | 9443 | The activation of gene transcription is a multistep process that is triggered by factors that recognize transcriptional enhancer sites in DNA. These factors work with co-activators to direct transcriptional initiation by the RNA polymerase II apparatus. The protein encoded by this gene is a subunit of the CRSP (cofactor required for SP1 activation) complex, which, along with TFIID, is required for efficient activation by SP1. This protein is also a component of other multisubunit complexes e.g. thyroid hormone receptor-(TR-) associated proteins which interact with TR and facilitate TR function on DNA templates in conjunction with initiation factors and cofactors. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000135074 | ADAM19 | ADAM metallopeptidase domain 19 | 8728 | This gene encodes a member of the ADAM (a disintegrin and metalloprotease domain) family. Members of this family are membrane-anchored proteins structurally related to snake venom disintegrins and have been implicated in a variety of biological processes involving cell-cell and cell-matrix interactions, including fertilization, muscle development, and neurogenesis. This member is a type I transmembrane protein and serves as a marker for dendritic cell differentiation. It has been demonstrated to be an active metalloproteinase, which may be involved in normal physiological processes such as cell migration, cell adhesion, cell-cell and cell-matrix interactions, and signal transduction. It is proposed to play a role in pathological processes, such as cancer, inflammatory diseases, renal diseases, and Alzheimer’s disease. |
| NA | ENSG00000113272 | THG1L | tRNA-histidine guanylyltransferase 1 like | 54974 | The protein encoded by this gene is a mitochondrial protein that is induced by high levels of glucose and is associated with diabetic nephropathy. The encoded protein appears to increase mitochondrial biogenesis, which could lead to renal fibrosis. Another function of this protein is that of a guanyltransferase, adding GMP to the 5’ end of tRNA(His). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000155858 | LSM11 | LSM11, U7 small nuclear RNA associated | 134353 | NA |
| NA | ENSG00000113282 | CLINT1 | clathrin interactor 1 | 9685 | This gene encodes a protein with similarity to the epsin family of endocytic adapter proteins. The encoded protein interacts with clathrin, the adapter protein AP-1 and phosphoinositides. This protein may be involved in the formation of clathrin coated vesicles and trafficking between the trans-Golgi network and endosomes. Mutations in this gene are associated with a susceptibility to schizophrenia and psychotic disorders. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000145860 | RNF145 | ring finger protein 145 | 153830 | NA |
| NA | ENSG00000164332 | UBLCP1 | ubiquitin like domain containing CTD phosphatase 1 | 134510 | NA |
| NA | ENSG00000113312 | TTC1 | tetratricopeptide repeat domain 1 | 7265 | This gene encodes a protein that belongs to the tetratrico peptide repeat superfamily of proteins. The encoded protein plays a role in protein-protein interactions, and binds to the Galpha subunit of G protein-coupled receptors to activate the Ras signaling pathway. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000170234 | PWWP2A | PWWP domain containing 2A | 114825 | NA |
| NA | ENSG00000170231 | FABP6 | fatty acid binding protein 6 | 2172 | This gene encodes the ileal fatty acid binding protein. Fatty acid binding proteins are a family of small, highly conserved, cytoplasmic proteins that bind long-chain fatty acids and other hydrophobic ligands. FABP6 and FABP1 (the liver fatty acid binding protein) are also able to bind bile acids. It is thought that FABPs roles include fatty acid uptake, transport, and metabolism. Transcript variants generated by alternate transcription promoters and/or alternate splicing have been found for this gene. |
| NA | ENSG00000135083 | CCNJL | cyclin J like | 79616 | NA |
| NA | ENSG00000221886 | ZBED8 | zinc finger BED-type containing 8 | 63920 | NA |
| NA | ENSG00000164609 | SLU7 | SLU7 homolog, splicing factor | 10569 | Pre-mRNA splicing occurs in two sequential transesterification steps. The protein encoded by this gene is a splicing factor that has been found to be essential during the second catalytic step in the pre-mRNA splicing process. It associates with the spliceosome and contains a zinc knuckle motif that is found in other splicing factors and is involved in protein-nucleic acid and protein-protein interactions. |
| NA | ENSG00000145864 | GABRB2 | gamma-aminobutyric acid type A receptor beta2 subunit | 2561 | The gamma-aminobutyric acid (GABA) A receptor is a multisubunit chloride channel that mediates the fastest inhibitory synaptic transmission in the central nervous system. This gene encodes GABA A receptor, beta 2 subunit. It is mapped to chromosome 5q34 in a cluster comprised of genes encoding alpha 1 and gamma 2 subunits of the GABA A receptor. Alternative splicing of this gene generates 2 transcript variants, differing by a 114 bp insertion. |
| NA | ENSG00000113327 | GABRG2 | gamma-aminobutyric acid type A receptor gamma2 subunit | 2566 | This gene encodes a gamma-aminobutyric acid (GABA) receptor. GABA is the major inhibitory neurotransmitter in the mammlian brain, where it acts at GABA-A receptors, which are ligand-gated chloride channels. GABA-A receptors are pentameric, consisting of proteins from several subunit classes: alpha, beta, gamma, delta and rho. Mutations in this gene have been associated with epilepsy and febrile seizures. Multiple transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000170584 | NUDCD2 | NudC domain containing 2 | 134492 | NA |
| NA | ENSG00000145934 | TENM2 | teneurin transmembrane protein 2 | 57451 | NA |
| NA | ENSG00000113645 | WWC1 | WW and C2 domain containing 1 | 23286 | The protein encoded by this gene is a cytoplasmic phosphoprotein that interacts with PRKC-zeta and dynein light chain-1. Alleles of this gene have been found that enhance memory in some individuals. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000113643 | RARS | arginyl-tRNA synthetase | 5917 | Aminoacyl-tRNA synthetases catalyze the aminoacylation of tRNA by their cognate amino acid. Because of their central role in linking amino acids with nucleotide triplets contained in tRNAs, aminoacyl-tRNA synthetases are thought to be among the first proteins that appeared in evolution. Arginyl-tRNA synthetase belongs to the class-I aminoacyl-tRNA synthetase family. |
| NA | ENSG00000188573 | FBLL1 | fibrillarin-like 1 | ENSG00000188573 | NA |
| NA | ENSG00000040275 | SPDL1 | spindle apparatus coiled-coil protein 1 | 54908 | NA |
| NA | ENSG00000234511 | C5orf58 | chromosome 5 open reading frame 58 | 133874 | NA |
| NA | ENSG00000094755 | GABRP | gamma-aminobutyric acid type A receptor pi subunit | 2568 | The gamma-aminobutyric acid (GABA) A receptor is a multisubunit chloride channel that mediates the fastest inhibitory synaptic transmission in the central nervous system. The subunit encoded by this gene is expressed in several non-neuronal tissues including the uterus and ovaries. This subunit can assemble with known GABA A receptor subunits, and the presence of this subunit alters the sensitivity of recombinant receptors to modulatory agents such as pregnanolone. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000204764 | RANBP17 | RAN binding protein 17 | 64901 | The transport of protein and large RNAs through the nuclear pore complexes (NPC) is an energy-dependent and regulated process. The import of proteins with a nuclear localization signal (NLS) is accomplished by recognition of one or more clusters of basic amino acids by the importin-alpha/beta complex; see MIM 600685 and MIM 602738. The small GTPase RAN (MIM 601179) plays a key role in NLS-dependent protein import. RAN-binding protein-17 is a member of the importin-beta superfamily of nuclear transport receptors. |
| NA | ENSG00000181163 | NPM1 | nucleophosmin (nucleolar phosphoprotein B23, numatrin) | 4869 | This gene encodes a phosphoprotein which moves between the nucleus and the cytoplasm. The gene product is thought to be involved in several processes including regulation of the ARF/p53 pathway. A number of genes are fusion partners have been characterized, in particular the anaplastic lymphoma kinase gene on chromosome 2. Mutations in this gene are associated with acute myeloid leukemia. More than a dozen pseudogenes of this gene have been identified. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000156427 | FGF18 | fibroblast growth factor 18 | 8817 | The protein encoded by this gene is a member of the fibroblast growth factor (FGF) family. FGF family members possess broad mitogenic and cell survival activities, and are involved in a variety of biological processes, including embryonic development, cell growth, morphogenesis, tissue repair, tumor growth, and invasion. It has been shown in vitro that this protein is able to induce neurite outgrowth in PC12 cells. Studies of the similar proteins in mouse and chick suggested that this protein is a pleiotropic growth factor that stimulates proliferation in a number of tissues, most notably the liver and small intestine. Knockout studies of the similar gene in mice implied the role of this protein in regulating proliferation and differentiation of midline cerebellar structures. |
| NA | ENSG00000072803 | FBXW11 | F-box and WD repeat domain containing 11 | 23291 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbws class and, in addition to an F-box, contains multiple WD40 repeats. This gene contains at least 14 exons, and its alternative splicing generates 3 transcript variants diverging at the presence/absence of two alternate exons. |
| NA | ENSG00000072786 | STK10 | serine/threonine kinase 10 | 6793 | This gene encodes a member of the Ste20 family of serine/threonine protein kinases, and is similar to several known polo-like kinase kinases. The protein can associate with and phosphorylate polo-like kinase 1, and overexpression of a kinase-dead version of the protein interferes with normal cell cycle progression. The kinase can also negatively regulate interleukin 2 expression in T-cells via the mitogen activated protein kinase kinase 1 pathway. |
| NA | ENSG00000168246 | UBTD2 | ubiquitin domain containing 2 | 92181 | NA |
| NA | ENSG00000174705 | SH3PXD2B | SH3 and PX domains 2B | 285590 | This gene encodes an adapter protein that is characterized by a PX domain and four Src homology 3 domains. The encoded protein is required for podosome formation and is involved in cell adhesion and migration of numerous cell types. Mutations in this gene are the cause of Frank-ter Haar syndrome (FTHS), and also Borrone Dermato-Cardio-Skeletal (BDCS) syndrome. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000214357 | NEURL1B | neuralized E3 ubiquitin protein ligase 1B | 54492 | NA |
| NA | ENSG00000120129 | DUSP1 | dual specificity phosphatase 1 | 1843 | The expression of DUSP1 gene is induced in human skin fibroblasts by oxidative/heat stress and growth factors. It specifies a protein with structural features similar to members of the non-receptor-type protein-tyrosine phosphatase family, and which has significant amino-acid sequence similarity to a Tyr/Ser-protein phosphatase encoded by the late gene H1 of vaccinia virus. The bacterially expressed and purified DUSP1 protein has intrinsic phosphatase activity, and specifically inactivates mitogen-activated protein (MAP) kinase in vitro by the concomitant dephosphorylation of both its phosphothreonine and phosphotyrosine residues. Furthermore, it suppresses the activation of MAP kinase by oncogenic ras in extracts of Xenopus oocytes. Thus, DUSP1 may play an important role in the human cellular response to environmental stress as well as in the negative regulation of cellular proliferation. |
| NA | ENSG00000037241 | RPL26L1 | ribosomal protein L26 like 1 | 51121 | This gene encodes a protein that shares high sequence similarity with ribosomal protein L26. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000113732 | ATP6V0E1 | ATPase H+ transporting V0 subunit e1 | 8992 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A and three B subunits, two G subunits plus the C, D, E, F, and H subunits. The V1 domain contains the ATP catalytic site. The V0 domain consists of five different subunits: a, c, c’, c’, and d. Additional isoforms of many of the V1 and V0 subunit proteins are encoded by multiple genes or alternatively spliced transcript variants. This encoded protein is possibly part of the V0 subunit. Since two nontranscribed pseudogenes have been found in dog, it is possible that the localization to chromosome 2 for this gene by radiation hybrid mapping is representing a pseudogene. Genomic mapping puts the chromosomal location on 5q35.3. |
| NA | ENSG00000164463 | CREBRF | CREB3 regulatory factor | 153222 | NA |
| NA | ENSG00000113734 | BNIP1 | BCL2/adenovirus E1B 19kDa interacting protein 1 | 662 | This gene is a member of the BCL2/adenovirus E1B 19 kd-interacting protein (BNIP) family. It interacts with the E1B 19 kDa protein, which protects cells from virally-induced cell death. The encoded protein also interacts with E1B 19 kDa-like sequences of BCL2, another apoptotic protector. In addition, this protein is involved in vesicle transport into the endoplasmic reticulum. Alternative splicing of this gene results in four protein products with identical N- and C-termini. |
| NA | ENSG00000113739 | STC2 | stanniocalcin 2 | 8614 | This gene encodes a secreted, homodimeric glycoprotein that is expressed in a wide variety of tissues and may have autocrine or paracrine functions. The encoded protein has 10 of its 15 cysteine residues conserved among stanniocalcin family members and is phosphorylated by casein kinase 2 exclusively on its serine residues. Its C-terminus contains a cluster of histidine residues which may interact with metal ions. The protein may play a role in the regulation of renal and intestinal calcium and phosphate transport, cell metabolism, or cellular calcium/phosphate homeostasis. Constitutive overexpression of human stanniocalcin 2 in mice resulted in pre- and postnatal growth restriction, reduced bone and skeletal muscle growth, and organomegaly. Expression of this gene is induced by estrogen and altered in some breast cancers. |
| NA | ENSG00000145919 | BOD1 | biorientation of chromosomes in cell division 1 | 91272 | NA |
| NA | ENSG00000113742 | CPEB4 | cytoplasmic polyadenylation element binding protein 4 | 80315 | NA |
| NA | ENSG00000164466 | SFXN1 | sideroflexin 1 | 94081 | NA |
| NA | ENSG00000113749 | HRH2 | histamine receptor H2 | 3274 | Histamine is a ubiquitous messenger molecule released from mast cells, enterochromaffin-like cells, and neurons. Its various actions are mediated by histamine receptors H1, H2, H3 and H4. Histamine receptor H2 belongs to the family 1 of G protein-coupled receptors. It is an integral membrane protein and stimulates gastric acid secretion. It also regulates gastrointestinal motility and intestinal secretion and is thought to be involved in regulating cell growth and differentiation. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000051596 | THOC3 | THO complex 3 | 84321 | This gene encodes a component of the nuclear THO transcription elongation complex, which is part of the larger transcription export (TREX) complex that couples messenger RNA processing and export. In humans, the transcription export complex is recruited to the 5’-end of messenger RNAs in a splicing- and cap-dependent manner. Studies of a related complex in mouse suggest that the metazoan transcription export complex is involved in cell differentiation and development. A pseudogene of this gene has been defined on chromosome 5. |
| NA | ENSG00000170085 | SIMC1 | SUMO interacting motifs containing 1 | 375484 | NA |
| NA | ENSG00000122203 | KIAA1191 | KIAA1191 | 57179 | NA |
| NA | ENSG00000175414 | ARL10 | ADP ribosylation factor like GTPase 10 | 285598 | NA |
| NA | ENSG00000048162 | NOP16 | NOP16 nucleolar protein | 51491 | This gene encodes a protein that is localized to the nucleolus. Expression of this gene is induced by estrogens and Myc protein and is a marker of poor patient survival in breast cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000146066 | HIGD2A | HIG1 hypoxia inducible domain family member 2A | 192286 | NA |
| NA | ENSG00000175416 | CLTB | clathrin light chain B | 1212 | Clathrin is a large, soluble protein composed of heavy and light chains. It functions as the main structural component of the lattice-type cytoplasmic face of coated pits and vesicles which entrap specific macromolecules during receptor-mediated endocytosis. This gene encodes one of two clathrin light chain proteins which are believed to function as regulatory elements. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000113194 | FAF2 | Fas associated factor family member 2 | 23197 | The protein encoded by this gene is highly expressed in peripheral blood of patients with atopic dermatitis (AD), compared to normal individuals. It may play a role in regulating the resistance to apoptosis that is observed in T cells and eosinophils of AD patients. |
| NA | ENSG00000146083 | RNF44 | ring finger protein 44 | 22838 | The protein encoded by this gene contains a RING finger, a motif present in a variety of functionally distinct proteins and known to be involved in protein-protein and protein-DNA interactions. |
| NA | ENSG00000169258 | GPRIN1 | G protein regulated inducer of neurite outgrowth 1 | 114787 | NA |
| NA | ENSG00000074317 | SNCB | synuclein beta | 6620 | This gene encodes a member of a small family of proteins that inhibit phospholipase D2 and may function in neuronal plasticity. The encoded protein is abundant in lesions of patients with Alzheimer disease. A mutation in this gene was found in individuals with dementia with Lewy bodies. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000048140 | TSPAN17 | tetraspanin 17 | 26262 | This gene encodes a member of the transmembrane 4 superfamily. It is characterized by four tetraspanin transmembrane segments. The function of this gene has not yet been determined. |
| NA | ENSG00000087206 | UIMC1 | ubiquitin interaction motif containing 1 | 51720 | This gene encodes a nuclear protein that interacts with Brca1 (breast cancer 1) in a complex to recognize and repair DNA lesions. This protein binds ubiquitinated lysine 63 of histone H2A and H2AX. This protein may also function as a repressor of transcription. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000113761 | ZNF346 | zinc finger protein 346 | 23567 | The protein encoded by this gene is a nucleolar, zinc finger protein that preferentially binds to double-stranded (ds) RNA or RNA/DNA hybrids, rather than DNA alone. Mutational studies indicate that the zinc finger domains are not only essential for dsRNA binding, but are also required for its nucleolar localization. The encoded protein may be involved in cell growth and survival. It plays a role in protecting neurons by inhibiting cell cycle re-entry via stimulation of p21 gene expression. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000160867 | FGFR4 | fibroblast growth factor receptor 4 | 2264 | The protein encoded by this gene is a member of the fibroblast growth factor receptor family, where amino acid sequence is highly conserved between members and throughout evolution. FGFR family members differ from one another in their ligand affinities and tissue distribution. A full-length representative protein would consist of an extracellular region, composed of three immunoglobulin-like domains, a single hydrophobic membrane-spanning segment and a cytoplasmic tyrosine kinase domain. The extracellular portion of the protein interacts with fibroblast growth factors, setting in motion a cascade of downstream signals, ultimately influencing mitogenesis and differentiation. The genomic organization of this gene, compared to members 1-3, encompasses 18 exons rather than 19 or 20. Although alternative splicing has been observed, there is no evidence that the C-terminal half of the IgIII domain of this protein varies between three alternate forms, as indicated for members 1-3. This particular family member preferentially binds acidic fibroblast growth factor and, although its specific function is unknown, it is overexpressed in gynecological tumor samples, suggesting a role in breast and ovarian tumorigenesis. |
| NA | ENSG00000165671 | NSD1 | nuclear receptor binding SET domain protein 1 | 64324 | This gene encodes a protein containing a SET domain, 2 LXXLL motifs, 3 nuclear translocation signals (NLSs), 4 plant homeodomain (PHD) finger regions, and a proline-rich region. The encoded protein enhances androgen receptor (AR) transactivation, and this enhancement can be increased further in the presence of other androgen receptor associated coregulators. This protein may act as a nucleus-localized, basic transcriptional factor and also as a bifunctional transcriptional regulator. Mutations of this gene have been associated with Sotos syndrome and Weaver syndrome. One version of childhood acute myeloid leukemia is the result of a cryptic translocation with the breakpoints occurring within nuclear receptor-binding Su-var, enhancer of zeste, and trithorax domain protein 1 on chromosome 5 and nucleoporin, 98-kd on chromosome 11. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000169228 | RAB24 | RAB24, member RAS oncogene family | 53917 | RAB24 is a small GTPase of the Rab subfamily of Ras-related proteins that regulate intracellular protein trafficking (Olkkonen et al., 1993 [PubMed 8126105]). |
| NA | ENSG00000213347 | MXD3 | MAX dimerization protein 3 | 83463 | This gene encodes a member of the Myc superfamily of basic helix-loop-helix leucine zipper transcriptional regulators. The encoded protein forms a heterodimer with the cofactor MAX which binds specific E-box DNA motifs in the promoters of target genes and regulates their transcription. Disruption of the MAX-MXD3 complex is associated with uncontrolled cell proliferation and tumorigenesis. Transcript variants of this gene encoding different isoforms have been described. |
| NA | ENSG00000169230 | PRELID1 | PRELI domain containing 1 | 27166 | This gene encodes a member of the late embryogenesis abundant motif-containing protein family. The encoded protein is localized to mitochondria and may function as a cytoprotectant by regulating cell death and differentiation. Alternative splicing results in multiple transcript variants encoding different isoforms. Several related pseudogenes have been identified. |
| NA | ENSG00000169223 | LMAN2 | lectin, mannose binding 2 | 10960 | This gene encodes a type I transmembrane lectin that shuttles between the endoplasmic reticulum, the Golgi apparatus and the plasma membrane. The encoded protein binds high mannose type glycoproteins and may facilitate their sorting, trafficking and quality control. |
| NA | ENSG00000169220 | RGS14 | regulator of G-protein signaling 14 | 10636 | This gene encodes a member of the regulator of G-protein signaling family. This protein contains one RGS domain, two Raf-like Ras-binding domains (RBDs), and one GoLoco domain. The protein attenuates the signaling activity of G-proteins by binding, through its GoLoco domain, to specific types of activated, GTP-bound G alpha subunits. Acting as a GTPase activating protein (GAP), the protein increases the rate of conversion of the GTP to GDP. This hydrolysis allows the G alpha subunits to bind G beta/gamma subunit heterodimers, forming inactive G-protein heterotrimers, thereby terminating the signal. Alternate transcriptional splice variants of this gene have been observed but have not been thoroughly characterized. |
| NA | ENSG00000131187 | F12 | coagulation factor XII | 2161 | This gene encodes coagulation factor XII which circulates in blood as a zymogen. This single chain zymogen is converted to a two-chain serine protease with an heavy chain (alpha-factor XIIa) and a light chain. The heavy chain contains two fibronectin-type domains, two epidermal growth factor (EGF)-like domains, a kringle domain and a proline-rich domain, whereas the light chain contains only a catalytic domain. On activation, further cleavages takes place in the heavy chain, resulting in the production of beta-factor XIIa light chain and the alpha-factor XIIa light chain becomes beta-factor XIIa heavy chain. Prekallikrein is cleaved by factor XII to form kallikrein, which then cleaves factor XII first to alpha-factor XIIa and then to beta-factor XIIa. The active factor XIIa participates in the initiation of blood coagulation, fibrinolysis, and the generation of bradykinin and angiotensin. It activates coagulation factors VII and XI. Defects in this gene do not cause any clinical symptoms and the sole effect is that whole-blood clotting time is prolonged. |
| NA | ENSG00000198055 | GRK6 | G protein-coupled receptor kinase 6 | 2870 | This gene encodes a member of the guanine nucleotide-binding protein (G protein)-coupled receptor kinase subfamily of the Ser/Thr protein kinase family. The protein phosphorylates the activated forms of G protein-coupled receptors thus initiating their deactivation. Several transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000131188 | PRR7 | proline rich 7 (synaptic) | 80758 | NA |
| NA | ENSG00000113758 | DBN1 | drebrin 1 | 1627 | The protein encoded by this gene is a cytoplasmic actin-binding protein thought to play a role in the process of neuronal growth. It is a member of the drebrin family of proteins that are developmentally regulated in the brain. A decrease in the amount of this protein in the brain has been implicated as a possible contributing factor in the pathogenesis of memory disturbance in Alzheimer’s disease. At least two alternative splice variants encoding different protein isoforms have been described for this gene. |
| NA | ENSG00000196923 | PDLIM7 | PDZ and LIM domain 7 | 9260 | The protein encoded by this gene is representative of a family of proteins composed of conserved PDZ and LIM domains. LIM domains are proposed to function in protein-protein recognition in a variety of contexts including gene transcription and development and in cytoskeletal interaction. The LIM domains of this protein bind to protein kinases, whereas the PDZ domain binds to actin filaments. The gene product is involved in the assembly of an actin filament-associated complex essential for transmission of ret/ptc2 mitogenic signaling. The biological function is likely to be that of an adapter, with the PDZ domain localizing the LIM-binding proteins to actin filaments of both skeletal muscle and nonmuscle tissues. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000146094 | DOK3 | docking protein 3 | 79930 | NA |
| NA | ENSG00000183258 | DDX41 | DEAD-box helicase 41 | 51428 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure, such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of the DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a member of this family. The function of this member has not been determined. Based on studies in Drosophila, the abstrakt gene is widely required during post-transcriptional gene expression. |
| NA | ENSG00000146067 | FAM193B | family with sequence similarity 193 member B | 54540 | NA |
| NA | ENSG00000184840 | TMED9 | transmembrane p24 trafficking protein 9 | 54732 | NA |
| NA | ENSG00000027847 | B4GALT7 | xylosylprotein beta 1,4-galactosyltransferase, polypeptide 7 | 11285 | This gene is a member of the beta-1,4-galactosyltransferase (beta4GalT) family. Family members encode type II membrane-bound glycoproteins that appear to have exclusive specificity for the donor substrate UDP-galactose. Each beta4GalT member has a distinct function in the biosynthesis of different glycoconjugates and saccharide structures. As type II membrane proteins, they have an N-terminal hydrophobic signal sequence that directs the protein to the Golgi apparatus which then remains uncleaved to function as a transmembrane anchor. The enzyme encoded by this gene attaches the first galactose in the common carbohydrate-protein linkage (GlcA-beta1,3-Gal-beta1,3-Gal-beta1,4-Xyl-beta1-O-Ser) found in proteoglycans. This enzyme differs from other beta4GalTs because it lacks the conserved Cys residues found in beta4GalT1-beta4GalT6 and it is located in cis-Golgi instead of trans-Golgi. Mutations in this gene have been associated with the progeroid form of Ehlers-Danlos syndrome. |
| NA | ENSG00000145911 | N4BP3 | NEDD4 binding protein 3 | 23138 | NA |
| NA | ENSG00000145916 | RMND5B | required for meiotic nuclear division 5 homolog B | 64777 | NA |
| NA | ENSG00000145912 | NHP2 | NHP2 ribonucleoprotein | 55651 | This gene is a member of the H/ACA snoRNPs (small nucleolar ribonucleoproteins) gene family. snoRNPs are involved in various aspects of rRNA processing and modification and have been classified into two families: C/D and H/ACA. The H/ACA snoRNPs also include the DKC1, NOLA1 and NOLA3 proteins. These four H/ACA snoRNP proteins localize to the dense fibrillar components of nucleoli and to coiled (Cajal) bodies in the nucleus. Both 18S rRNA production and rRNA pseudouridylation are impaired if any one of the four proteins is depleted. The four H/ACA snoRNP proteins are also components of the telomerase complex. This gene encodes a protein related to Saccharomyces cerevisiae Nhp2p. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197451 | HNRNPAB | heterogeneous nuclear ribonucleoprotein A/B | 3182 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are produced by RNA polymerase II and are components of the heterogeneous nuclear RNA (hnRNA) complexes. They are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene, which binds to one of the components of the multiprotein editosome complex, has two repeats of quasi-RRM (RNA recognition motif) domains that bind to RNAs. Two alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000175309 | PHYKPL | 5-phosphohydroxy-L-lysine phospho-lyase | 85007 | This is a nuclear gene encoding a mitochondrial enzyme that catalyzes the conversion of 5-phosphonooxy-L-lysine to ammonia, inorganic phosphate, and 2-aminoadipate semialdehyde. Mutations in this gene may cause phosphohydroxylysinuria. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000050767 | COL23A1 | collagen type XXIII alpha 1 | 91522 | COL23A1 is a member of the transmembrane collagens, a subfamily of the nonfibrillar collagens that contain a single pass hydrophobic transmembrane domain (Banyard et al., 2003 [PubMed 12644459]). |
| NA | ENSG00000113240 | CLK4 | CDC like kinase 4 | 57396 | The protein encoded by this gene belongs to the CDC2-like protein kinase (CLK) family. This protein kinase can interact with and phosphorylate the serine- and arginine-rich (SR) proteins, which are known to play an important role in the formation of spliceosomes, and thus may be involved in the regulation of alternative splicing. Studies in the Israeli sand rat Psammomys obesus suggested that the ubiquitin-like 5 (UBL5/BEACON), a highly conserved ubiquitin-like protein, may interact with and regulate the activity of this kinase. Multiple alternatively spliced transcript variants have been observed, but the full-length natures of which have not yet been determined. |
| NA | ENSG00000169131 | ZNF354A | zinc finger protein 354A | 6940 | NA |
| NA | ENSG00000178338 | ZNF354B | zinc finger protein 354B | 117608 | NA |
| NA | ENSG00000234284 | ZNF879 | zinc finger protein 879 | 345462 | NA |
| NA | ENSG00000177932 | ZNF354C | zinc finger protein 354C | 30832 | NA |
| NA | ENSG00000087116 | ADAMTS2 | ADAM metallopeptidase with thrombospondin type 1 motif 2 | 9509 | This gene encodes a member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motifs) protein family. Members of the family share several distinct protein modules, including a propeptide region, a metalloproteinase domain, a disintegrin-like domain, and a thrombospondin type 1 (TS) motif. Individual members of this family differ in the number of C-terminal TS motifs, and some have unique C-terminal domains. The encoded preproprotein is proteolytically processed to generate the mature procollagen N-proteinase. This proteinase excises the N-propeptide of the fibrillar procollagens types I-III and type V. Mutations in this gene cause Ehlers-Danlos syndrome type VIIC, a recessively inherited connective-tissue disorder. Alternative splicing results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000176783 | RUFY1 | RUN and FYVE domain containing 1 | 80230 | This gene encodes a protein that contains a RUN domain and a FYVE-type zinc finger domain. The encoded protein binds to phosphatidylinositol-3-phosphate (PI3P) and plays a role in early endosomal trafficking, tethering and fusion through interactions with small GTPases including Rab4, Rab5 and Rab14. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000169045 | HNRNPH1 | heterogeneous nuclear ribonucleoprotein H1 (H) | 3187 | This gene encodes a member of a subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins that complex with heterogeneous nuclear RNA. These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some may shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has three repeats of quasi-RRM domains that bind to RNA and is very similar to the family member HNRPF. This gene may be associated with hereditary lymphedema type I. Alternatively spliced transcript variants have been described |
| NA | ENSG00000127022 | CANX | calnexin | 821 | This gene encodes a member of the calnexin family of molecular chaperones. The encoded protein is a calcium-binding, endoplasmic reticulum (ER)-associated protein that interacts transiently with newly synthesized N-linked glycoproteins, facilitating protein folding and assembly. It may also play a central role in the quality control of protein folding by retaining incorrectly folded protein subunits within the ER for degradation. Alternatively spliced transcript variants encoding the same protein have been described. |
| NA | ENSG00000161021 | MAML1 | mastermind like transcriptional coactivator 1 | 9794 | This protein is the human homolog of mastermind, a Drosophila protein that plays a role in the Notch signaling pathway involved in cell-fate determination. There is in vitro evidence that the human homolog forms a complex with the intracellular portion of human Notch receptors and can increase expression of a Notch-induced gene. This evidence supports its proposed function as a transcriptional co-activator in the Notch signaling pathway. |
| NA | ENSG00000161013 | MGAT4B | mannosyl (alpha-1,3-)-glycoprotein beta-1,4-N-acetylglucosaminyltransferase, isozyme B | 11282 | This gene encodes a key glycosyltransferase that regulates the formation of tri- and multiantennary branching structures in the Golgi apparatus. The encoded protein, in addition to the related isoenzyme A, catalyzes the transfer of N-acetylglucosamine (GlcNAc) from UDP-GlcNAc in a beta-1,4 linkage to the Man-alpha-1,3-Man-beta-1,4-GlcNAc arm of R-Man-alpha-1,6(GlcNAc-beta-1,2-Man-alpha-1,3)Man-beta-1, 4-GlcNAc-beta-1,4-GlcNAc-beta-1-Asn. The encoded protein may play a role in regulating the availability of serum glycoproteins, oncogenesis, and differentiation. |
| NA | ENSG00000161011 | SQSTM1 | sequestosome 1 | 8878 | This gene encodes a multifunctional protein that binds ubiquitin and regulates activation of the nuclear factor kappa-B (NF-kB) signaling pathway. The protein functions as a scaffolding/adaptor protein in concert with TNF receptor-associated factor 6 to mediate activation of NF-kB in response to upstream signals. Alternatively spliced transcript variants encoding either the same or different isoforms have been identified for this gene. Mutations in this gene result in sporadic and familial Paget disease of bone. |
| NA | ENSG00000161010 | C5orf45 | chromosome 5 open reading frame 45 | 51149 | NA |
| NA | ENSG00000197226 | TBC1D9B | TBC1 domain family member 9B | 23061 | NA |
| NA | ENSG00000113269 | RNF130 | ring finger protein 130 | 55819 | The protein encoded by this gene contains a RING finger motif and is similar to g1, a Drosophila zinc-finger protein that is expressed in mesoderm and involved in embryonic development. The expression of the mouse counterpart was found to be upregulated in myeloblastic cells following IL3 deprivation, suggesting that this gene may regulate growth factor withdrawal-induced apoptosis of myeloid precursor cells. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000050748 | MAPK9 | mitogen-activated protein kinase 9 | 5601 | The protein encoded by this gene is a member of the MAP kinase family. MAP kinases act as an integration point for multiple biochemical signals, and are involved in a wide variety of cellular processes such as proliferation, differentiation, transcription regulation and development. This kinase targets specific transcription factors, and thus mediates immediate-early gene expression in response to various cell stimuli. It is most closely related to MAPK8, both of which are involved in UV radiation induced apoptosis, thought to be related to the cytochrome c-mediated cell death pathway. This gene and MAPK8 are also known as c-Jun N-terminal kinases. This kinase blocks the ubiquitination of tumor suppressor p53, and thus it increases the stability of p53 in nonstressed cells. Studies of this gene’s mouse counterpart suggest a key role in T-cell differentiation. Several alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000131459 | GFPT2 | glutamine-fructose-6-phosphate transaminase 2 | 9945 | NA |
| NA | ENSG00000037280 | FLT4 | fms related tyrosine kinase 4 | 2324 | This gene encodes a tyrosine kinase receptor for vascular endothelial growth factors C and D. The protein is thought to be involved in lymphangiogenesis and maintenance of the lymphatic endothelium. Mutations in this gene cause hereditary lymphedema type IA. |
| NA | ENSG00000131446 | MGAT1 | mannosyl (alpha-1,3-)-glycoprotein beta-1,2-N-acetylglucosaminyltransferase | 4245 | There are believed to be over 100 different glycosyltransferases involved in the synthesis of protein-bound and lipid-bound oligosaccharides. UDP-N-acetylglucosamine:alpha-3-D-mannoside beta-1,2-N-acetylglucosaminyltransferase I is a medial-Golgi enzyme essential for the synthesis of hybrid and complex N-glycans. The protein, encoded by a single exon, shows typical features of a type II transmembrane protein. The protein is believed to be essential for normal embryogenesis. Several variants encoding the same protein have been found for this gene. |
| NA | ENSG00000196670 | ZFP62 | ZFP62 zinc finger protein | 643836 | NA |
| NA | ENSG00000146063 | TRIM41 | tripartite motif containing 41 | 90933 | This gene encodes a member of the tripartite motif (TRIM) family. The TRIM family is characterized by a signature motif composed of a RING finger, one or more B-box domains, and a coiled-coil region. This encoded protein may play a role in protein kinase C signaling. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000204628 | RACK1 | receptor for activated C kinase 1 | 10399 | NA |
| NA | ENSG00000183718 | TRIM52 | tripartite motif containing 52 | 84851 | NA |
| TRUE | ENSG00000268397 | NA | NA | NA | NA |
| NA | ENSG00000112679 | DUSP22 | dual specificity phosphatase 22 | 56940 | NA |
| NA | ENSG00000112699 | GMDS | GDP-mannose 4,6-dehydratase | 2762 | GDP-mannose 4,6-dehydratase (GMD; EC 4.2.1.47) catalyzes the conversion of GDP-mannose to GDP-4-keto-6-deoxymannose, the first step in the synthesis of GDP-fucose from GDP-mannose, using NADP+ as a cofactor. The second and third steps of the pathway are catalyzed by a single enzyme, GDP-keto-6-deoxymannose 3,5-epimerase, 4-reductase, designated FX in humans (MIM 137020). |
| NA | ENSG00000124535 | WRNIP1 | Werner helicase interacting protein 1 | 56897 | Werner’s syndrome is a rare autosomal recessive disorder characterized by accelerated aging that is caused by defects in the Werner syndrome ATP-dependent helicase gene (WRN). The protein encoded by this gene interacts with the exonuclease-containing N-terminal portion of the Werner protein. This protein has a ubiquitin-binding zinc-finger domain in the N-terminus, an ATPase domain, and two leucine zipper motifs in the C-terminus. It has sequence similarity to replication factor C family proteins and is conserved from E. coli to human. This protein likely accumulates at sites of DNA damage by interacting with polyubiquinated proteins and also binds to DNA polymerase delta and increases the initiation frequency of DNA polymerase delta-mediated DNA synthesis. This protein also interacts with nucleoporins at nuclear pore complexes. Two transcript variants encoding different isoforms have been isolated for this gene. |
| NA | ENSG00000021355 | SERPINB1 | serpin peptidase inhibitor, clade B (ovalbumin), member 1 | 1992 | The protein encoded by this gene is a member of the serpin family of proteinase inhibitors. Members of this family maintain homeostasis by neutralizing overexpressed proteinase activity through their function as suicide substrates. This protein inhibits the neutrophil-derived proteinases neutrophil elastase, cathepsin G, and proteinase-3 and thus protects tissues from damage at inflammatory sites. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000170542 | SERPINB9 | serpin peptidase inhibitor, clade B (ovalbumin), member 9 | 5272 | This gene encodes a member of the serine protease inhibitor family which are also known as serpins. The encoded protein belongs to a subfamily of intracellular serpins. This protein inhibits the activity of the effector molecule granzyme B. Overexpression of this protein may prevent cytotoxic T-lymphocytes from eliminating certain tumor cells. A pseudogene of this gene is found on chromosome 6. |
| NA | ENSG00000124570 | SERPINB6 | serpin peptidase inhibitor, clade B (ovalbumin), member 6 | 5269 | The protein encoded by this gene is a member of the serpin (serine proteinase inhibitor) superfamily, and ovalbumin(ov)-serpin subfamily. It was originally discovered as a placental thrombin inhibitor. The mouse homolog was found to be expressed in the hair cells of the inner ear. Mutations in this gene are associated with nonsyndromic progressive hearing loss, suggesting that this serpin plays an important role in the inner ear in the protection against leakage of lysosomal content during stress, and that loss of this protection results in cell death and sensorineural hearing loss. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000137275 | RIPK1 | receptor interacting serine/threonine kinase 1 | 8737 | NA |
| NA | ENSG00000137267 | TUBB2A | tubulin beta 2A class IIa | 7280 | Microtubules, key participants in processes such as mitosis and intracellular transport, are composed of heterodimers of alpha- and beta-tubulins. The protein encoded by this gene is a beta-tubulin. Defects in this gene are associated with complex cortical dysplasia with other brain malformations-5. Two transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000137285 | TUBB2B | tubulin beta 2B class IIb | 347733 | The protein encoded by this gene is a beta isoform of tubulin, which binds GTP and is a major component of microtubules. This gene is highly similar to TUBB2A and TUBB2C. Defects in this gene are a cause of asymmetric polymicrogyria. |
| NA | ENSG00000180822 | PSMG4 | proteasome (prosome, macropain) assembly chaperone 4 | 389362 | NA |
| NA | ENSG00000145945 | FAM50B | family with sequence similarity 50 member B | 26240 | This gene contains an intronless ORF that arose from ancestral retroposition. The encoded protein is related to a plant protein that plays a role in the circadian clock. This gene is adjacent to a differentially methylated region (DMR) and is imprinted and paternally expressed in many tissues. |
| NA | ENSG00000112739 | PRPF4B | pre-mRNA processing factor 4B | 8899 | Pre-mRNA splicing occurs in two sequential transesterification steps, and the protein encoded by this gene is thought to be involved in pre-mRNA splicing and in signal transduction. This protein belongs to a kinase family that includes serine/arginine-rich protein-specific kinases and cyclin-dependent kinases (CDKs). This protein is regarded as a CDK-like kinase (Clk) with homology to mitogen-activated protein kinases (MAPKs). |
| NA | ENSG00000198721 | ECI2 | enoyl-CoA delta isomerase 2 | 10455 | This gene encodes a member of the hydratase/isomerase superfamily. The protein encoded is a key mitochondrial enzyme involved in beta-oxidation of unsaturated fatty acids. It catalyzes the transformation of 3-cis and 3-trans-enoyl-CoA esters arising during the stepwise degradation of cis-, mono-, and polyunsaturated fatty acids to the 2-trans-enoyl-CoA intermediates. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000153046 | CDYL | chromodomain protein, Y-like | 9425 | Chromodomain Y is a primate-specific Y-chromosomal gene family expressed exclusively in the testis and implicated in infertility. Although the Y-linked genes are testis-specific, this autosomal gene is ubiquitously expressed. The Y-linked genes arose by retrotransposition of an mRNA from this gene, followed by amplification of the retroposed gene. Proteins encoded by this gene superfamily possess a chromodomain, a motif implicated in chromatin binding and gene suppression, and a catalytic domain believed to be involved in histone acetylation. Multiple proteins are encoded by transcript variants of this gene. |
| NA | ENSG00000145982 | FARS2 | phenylalanyl-tRNA synthetase 2, mitochondrial | 10667 | This gene encodes a protein that transfers phenylalanine to its cognate tRNA. This protein localizes to the mitochondrion and plays a role in mitochondrial protein translation. Mutations in this gene can cause combined oxidative phosphorylation deficiency 14 (Alpers encephalopathy). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000124782 | RREB1 | ras responsive element binding protein 1 | 6239 | The protein encoded by this gene is a zinc finger transcription factor that binds to RAS-responsive elements (RREs) of gene promoters. It has been shown that the calcitonin gene promoter contains an RRE and that the encoded protein binds there and increases expression of calcitonin, which may be involved in Ras/Raf-mediated cell differentiation. Multiple transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000124783 | SSR1 | signal sequence receptor, alpha | 6745 | The signal sequence receptor (SSR) is a glycosylated endoplasmic reticulum (ER) membrane receptor associated with protein translocation across the ER membrane. The SSR consists of 2 subunits, a 34-kD glycoprotein encoded by this gene and a 22-kD glycoprotein. This gene generates several mRNA species as a result of complex alternative polyadenylation. This gene is unusual in that it utilizes arrays of polyA signal sequences that are mostly non-canonical. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000124784 | RIOK1 | RIO kinase 1 | 83732 | This gene includes two alternatively spliced transcript variants, which encode different isoforms. The function of this gene has not been determined. |
| NA | ENSG00000096696 | DSP | desmoplakin | 1832 | This gene encodes a protein that anchors intermediate filaments to desmosomal plaques and forms an obligate component of functional desmosomes. Mutations in this gene are the cause of several cardiomyopathies and keratodermas, including skin fragility-woolly hair syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168566 | SNRNP48 | small nuclear ribonucleoprotein U11/U12 subunit 48 | 154007 | NA |
| NA | ENSG00000188428 | BLOC1S5 | biogenesis of lysosomal organelles complex 1 subunit 5 | 63915 | This gene encodes a component of BLOC-1 (biogenesis of lysosome-related organelles complex 1). Components of this complex are involved in the biogenesis of organelles such as melanosomes and platelet-dense granules. A mouse model for Hermansky-Pudlak Syndrome is mutated in the murine version of this gene. Alternative splicing results in multiple transcript variants. Read-through transcription exists between this gene and the upstream EEF1E1 (eukaryotic translation elongation factor 1 epsilon 1) gene, as well as with the downstream TXNDC5 (thioredoxin domain containing 5) gene. |
| NA | ENSG00000124802 | EEF1E1 | eukaryotic translation elongation factor 1 epsilon 1 | 9521 | This gene encodes a multifunctional protein that localizes to both the cytoplasm and nucleus. In the cytoplasm, the encoded protein is an auxiliary component of the macromolecular aminoacyl-tRNA synthase complex. However, its mouse homolog has been shown to translocate to the nucleus in response to DNA damage, and it plays a positive role in ATM/ATR-mediated p53 activation. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the neighboring downstream MUTED (muted homolog) gene. An EEF1E1-related pseudogene has been identified on chromosome 2. |
| NA | ENSG00000124786 | SLC35B3 | solute carrier family 35 member B3 | 51000 | This gene is a member of the solute carrier family. The encoded protein is involved in the transport of 3-prime phosphoadenosine 5-prime phosphosulfate (PAPS) from the nucleus or the cytosol to the Golgi lumen. This gene has been reported to be expressed preferentially in the human colon tissues. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000111846 | GCNT2 | glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group) | 2651 | This gene encodes the enzyme responsible for formation of the blood group I antigen. The i and I antigens are distinguished by linear and branched poly-N-acetyllactosaminoglycans, respectively. The encoded protein is the I-branching enzyme, a beta-1,6-N-acetylglucosaminyltransferase responsible for the conversion of fetal i antigen to adult I antigen in erythrocytes during embryonic development. Mutations in this gene have been associated with adult i blood group phenotype. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000111845 | PAK1IP1 | PAK1 interacting protein 1 | 55003 | NA |
| NA | ENSG00000111843 | TMEM14C | transmembrane protein 14C | 51522 | NA |
| NA | ENSG00000137210 | TMEM14B | transmembrane protein 14B | 81853 | NA |
| NA | ENSG00000224531 | SMIM13 | small integral membrane protein 13 | 221710 | NA |
| NA | ENSG00000111859 | NEDD9 | neural precursor cell expressed, developmentally down-regulated 9 | 4739 | The protein encoded by this gene is a member of the CRK-associated substrates family. Members of this family are adhesion docking molecules that mediate protein-protein interactions for signal transduction pathways. This protein is a focal adhesion protein that acts as a scaffold to regulate signaling complexes important in cell attachment, migration and invasion as well as apoptosis and the cell cycle. This protein has also been reported to have a role in cancer metastasis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000205269 | TMEM170B | transmembrane protein 170B | 100113407 | NA |
| NA | ENSG00000095951 | HIVEP1 | human immunodeficiency virus type I enhancer binding protein 1 | 3096 | This gene encodes a transcription factor belonging to the ZAS family, members of which are large proteins that contain a ZAS domain - a modular protein structure consisting of a pair of C2H2 zinc fingers with an acidic-rich region and a serine/threonine-rich sequence. These proteins bind specifically to the DNA sequence motif, GGGACTTTCC, found in the enhancer elements of several viral promoters, including human immunodeficiency virus (HIV), and to related sequences found in the enhancer elements of a number of cellular promoters. This protein binds to this sequence motif, suggesting a role in the transcriptional regulation of both viral and cellular genes. |
| NA | ENSG00000112137 | PHACTR1 | phosphatase and actin regulator 1 | 221692 | NA |
| NA | ENSG00000145979 | TBC1D7 | TBC1 domain family member 7 | 51256 | This gene encodes a member of the TBC-domain containing protein family. The encoded protein functions as a subunit of the tuberous sclerosis TSC1-TSC2 complex which plays a role in the regulation of cellular growth and differentiation. Mutations in this gene have been associated with autosomal recessive megalencephaly. Alternative splicing results in multiple transcript variants. Naturally occurring readthrough transcription occurs between this locus and downstream LOC100130357. |
| NA | ENSG00000145990 | GFOD1 | glucose-fructose oxidoreductase domain containing 1 | 54438 | NA |
| NA | ENSG00000124523 | SIRT5 | sirtuin 5 | 23408 | This gene encodes a member of the sirtuin family of proteins, homologs to the yeast Sir2 protein. Members of the sirtuin family are characterized by a sirtuin core domain and grouped into four classes. The functions of human sirtuins have not yet been determined; however, yeast sirtuin proteins are known to regulate epigenetic gene silencing and suppress recombination of rDNA. Studies suggest that the human sirtuins may function as intracellular regulatory proteins with mono-ADP-ribosyltransferase activity. The protein encoded by this gene is included in class III of the sirtuin family. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000225921 | NOL7 | nucleolar protein 7 | 51406 | The protein encoded by this gene localizes to the nucleolus, where it maintains nucleolar structure and cell growth rates. The encoded protein also functions as a tumor suppressor and regulator of angiogenesis. The RB tumor suppressor gene recruits transcription factors to this gene and positively regulates its expression. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000010017 | RANBP9 | RAN binding protein 9 | 10048 | This gene encodes a protein that binds RAN, a small GTP binding protein belonging to the RAS superfamily that is essential for the translocation of RNA and proteins through the nuclear pore complex. The protein encoded by this gene has also been shown to interact with several other proteins, including met proto-oncogene, homeodomain interacting protein kinase 2, androgen receptor, and cyclin-dependent kinase 11. |
| NA | ENSG00000050393 | MCUR1 | mitochondrial calcium uniporter regulator 1 | 63933 | NA |
| NA | ENSG00000180537 | RNF182 | ring finger protein 182 | 221687 | NA |
| NA | ENSG00000112149 | CD83 | CD83 molecule | 9308 | The protein encoded by this gene is a single-pass type I membrane protein and member of the immunoglobulin superfamily of receptors. The encoded protein may be involved in the regulation of antigen presentation. A soluble form of this protein can bind to dendritic cells and inhibit their maturation. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000008083 | JARID2 | jumonji and AT-rich interaction domain containing 2 | 3720 | This gene encodes a Jumonji- and AT-rich interaction domain (ARID)-domain-containing protein. The encoded protein is a DNA-binding protein that functions as a transcriptional repressor. This protein interacts with the Polycomb repressive complex 2 (PRC2) which plays an essential role in regulating gene expression during embryonic development. This protein facilitates the recruitment of the PRC2 complex to target genes. Alternate splicing results in multiple transcript variants. Mutations in this gene are associated with chronic myeloid malignancies. |
| NA | ENSG00000047579 | DTNBP1 | dystrobrevin binding protein 1 | 84062 | This gene encodes a protein that may play a role in organelle biogenesis associated with melanosomes, platelet dense granules, and lysosomes. A similar protein in mouse is a component of a protein complex termed biogenesis of lysosome-related organelles complex 1 (BLOC-1), and binds to alpha- and beta-dystrobrevins, which are components of the dystrophin-associated protein complex (DPC). Mutations in this gene are associated with Hermansky-Pudlak syndrome type 7. This gene may also be associated with schizophrenia. Multiple transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000007944 | MYLIP | myosin regulatory light chain interacting protein | 29116 | The ERM protein family members ezrin, radixin, and moesin are cytoskeletal effector proteins linking actin to membrane-bound proteins at the cell surface. Myosin regulatory light chain interacting protein (MYLIP) is a novel ERM-like protein that interacts with myosin regulatory light chain and inhibits neurite outgrowth. |
| NA | ENSG00000112186 | CAP2 | CAP, adenylate cyclase-associated protein, 2 (yeast) | 10486 | This gene was identified by its similarity to the gene for human adenylyl cyclase-associated protein. The function of the protein encoded by this gene is unknown. However, the protein appears to be able to interact with adenylyl cyclase-associated protein and actin. |
| NA | ENSG00000137414 | FAM8A1 | family with sequence similarity 8 member A1 | 51439 | NA |
| NA | ENSG00000124789 | NUP153 | nucleoporin 153kDa | 9972 | Nuclear pore complexes regulate the transport of macromolecules between the nucleus and cytoplasm. They are composed of at least 100 different polypeptide subunits, many of which belong to the nucleoporin family. Nucleoporins are glycoproteins found in nuclear pores and contain characteristic pentapeptide XFXFG repeats as well as O-linked N-acetylglucosamine residues oriented towards the cytoplasm. The protein encoded by this gene has three distinct domains: a N-terminal region containing a pore targeting and an RNA-binding domain domain, a central region containing multiple zinc finger motifs, and a C-terminal region containing multiple XFXFG repeats. Alternative splicing results in multiple transcript variants of this gene. |
| NA | ENSG00000137177 | KIF13A | kinesin family member 13A | 63971 | This gene encodes a member of the kinesin family of microtubule-based motor proteins that function in the positioning of endosomes. This family member can direct mannose-6-phosphate receptor-containing vesicles from the trans-Golgi network to the plasma membrane, and it is necessary for the steady-state distribution of late endosomes/lysosomes. It is also required for the translocation of FYVE-CENT and TTC19 from the centrosome to the midbody during cytokinesis, and it plays a role in melanosome maturation. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000137364 | TPMT | thiopurine S-methyltransferase | 7172 | This gene encodes the enzyme that metabolizes thiopurine drugs via S-adenosyl-L-methionine as the S-methyl donor and S-adenosyl-L-homocysteine as a byproduct. Thiopurine drugs such as 6-mercaptopurine are used as chemotherapeutic agents. Genetic polymorphisms that affect this enzymatic activity are correlated with variations in sensitivity and toxicity to such drugs within individuals, causing thiopurine S-methyltransferase deficiency. Related pseudogenes have been identified on chromosomes 3, 18 and X. |
| NA | ENSG00000165097 | KDM1B | lysine demethylase 1B | 221656 | Flavin-dependent histone demethylases, such as KDM1B, regulate histone lysine methylation, an epigenetic mark that regulates gene expression and chromatin function (Karytinos et al., 2009 [PubMed 19407342]). |
| NA | ENSG00000124795 | DEK | DEK proto-oncogene | 7913 | This gene encodes a protein with one SAP domain. This protein binds to cruciform and superhelical DNA and induces positive supercoils into closed circular DNA, and is also involved in splice site selection during mRNA processing. Chromosomal aberrations involving this region, increased expression of this gene, and the presence of antibodies against this protein are all associated with various diseases. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137393 | RNF144B | ring finger protein 144B | 255488 | NA |
| NA | ENSG00000172201 | ID4 | inhibitor of DNA binding 4, HLH protein | 3400 | This gene encodes a member of the inhibitor of DNA binding (ID) protein family. These proteins are basic helix-loop-helix transcription factors which can act as tumor suppressors but lack DNA binding activity. Consequently, the activity of the encoded protein depends on the protein binding partner. |
| NA | ENSG00000172197 | MBOAT1 | membrane bound O-acyltransferase domain containing 1 | 154141 | This gene belongs to the membrane-bound O-acetyltransferase superfamily. The encoded transmembrane protein is an enzyme that transfers organic compounds, preferably from oleoyl-CoA, to hydroxyl groups of protein targets in membranes. A translocation disrupting this gene may be associated with brachydactyly syndactyly syndrome. Alternately spliced transcript variants have been described for this gene. |
| NA | ENSG00000112242 | E2F3 | E2F transcription factor 3 | 1871 | This gene encodes a member of a small family of transcription factors that function through binding of DP interaction partner proteins. The encoded protein recognizes a specific sequence motif in DNA and interacts directly with the retinoblastoma protein (pRB) to regulate the expression of genes involved in the cell cycle. Altered copy number and activity of this gene have been observed in a number of human cancers. There are pseudogenes for this gene on chromosomes 2 and 17. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000145996 | CDKAL1 | CDK5 regulatory subunit associated protein 1 like 1 | 54901 | The protein encoded by this gene is a member of the methylthiotransferase family. The function of this gene is not known. Genome-wide association studies have linked single nucleotide polymorphisms in an intron of this gene with susceptibilty to type 2 diabetes. |
| NA | ENSG00000124766 | SOX4 | SRY-box 4 | 6659 | This intronless gene encodes a member of the SOX (SRY-related HMG-box) family of transcription factors involved in the regulation of embryonic development and in the determination of the cell fate. The encoded protein may act as a transcriptional regulator after forming a protein complex with other proteins, such as syndecan binding protein (syntenin). The protein may function in the apoptosis pathway leading to cell death as well as to tumorigenesis and may mediate downstream effects of parathyroid hormone (PTH) and PTH-related protein (PTHrP) in bone development. The solution structure has been resolved for the HMG-box of a similar mouse protein. |
| NA | ENSG00000124532 | MRS2 | MRS2, magnesium transporter | 57380 | NA |
| NA | ENSG00000112293 | GPLD1 | glycosylphosphatidylinositol specific phospholipase D1 | 2822 | Many proteins are tethered to the extracellular face of eukaryotic plasma membranes by a glycosylphosphatidylinositol (GPI) anchor. The GPI-anchor is a glycolipid found on many blood cells. The protein encoded by this gene is a GPI degrading enzyme. Glycosylphosphatidylinositol specific phospholipase D1 hydrolyzes the inositol phosphate linkage in proteins anchored by phosphatidylinositol glycans, thereby releasing the attached protein from the plasma membrane. |
| NA | ENSG00000112294 | ALDH5A1 | aldehyde dehydrogenase 5 family member A1 | 7915 | This protein belongs to the aldehyde dehydrogenase family of proteins. This gene encodes a mitochondrial NAD(+)-dependent succinic semialdehyde dehydrogenase. A deficiency of this enzyme, known as 4-hydroxybutyricaciduria, is a rare inborn error in the metabolism of the neurotransmitter 4-aminobutyric acid (GABA). In response to the defect, physiologic fluids from patients accumulate GHB, a compound with numerous neuromodulatory properties. Two transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000111802 | TDP2 | tyrosyl-DNA phosphodiesterase 2 | 51567 | This gene encodes a member of a superfamily of divalent cation-dependent phosphodiesterases. The encoded protein associates with CD40, tumor necrosis factor (TNF) receptor-75 and TNF receptor associated factors (TRAFs), and inhibits nuclear factor-kappa-B activation. This protein has sequence and structural similarities with APE1 endonuclease, which is involved in both DNA repair and the activation of transcription factors. |
| NA | ENSG00000112304 | ACOT13 | acyl-CoA thioesterase 13 | 55856 | This gene encodes a member of the thioesterase superfamily. In humans, the protein co-localizes with microtubules and is essential for sustained cell proliferation. The orthologous mouse protein forms a homotetramer and is associated with mitochondria. The mouse protein functions as a medium- and long-chain acyl-CoA thioesterase. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000112308 | C6orf62 | chromosome 6 open reading frame 62 | 81688 | NA |
| NA | ENSG00000111913 | FAM65B | family with sequence similarity 65 member B | 9750 | The protein encoded by this gene stimulates the formation of a non-mitotic multinucleate syncytium from proliferative cytotrophoblasts during trophoblast differentiation. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000079691 | LRRC16A | leucine rich repeat containing 16A | 55604 | NA |
| NA | ENSG00000112343 | TRIM38 | tripartite motif containing 38 | 10475 | This gene encodes a member of the tripartite motif (TRIM) family. The encoded protein contains a RING-type zinc finger, B box-type zinc finger and SPRY domain. The function of this protein has not been identified. A pseudogene of this gene is located on the long arm of chromosome 4. |
| TRUE | ENSG00000196176 | NA | NA | NA | NA |
| TRUE | ENSG00000124529 | NA | NA | NA | NA |
| TRUE | ENSG00000137259 | NA | NA | NA | NA |
| NA | ENSG00000187837 | HIST1H1C | histone cluster 1, H1c | 3006 | Histones are basic nuclear proteins responsible for nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H1 family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the large histone gene cluster on chromosome 6. |
| NA | ENSG00000197061 | HIST1H4C | histone cluster 1, H4c | 8364 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H4 family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the large histone gene cluster on chromosome 6. |
| NA | ENSG00000180596 | HIST1H2BC | histone cluster 1, H2bc | 8347 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. The protein has antibacterial and antifungal antimicrobial activity. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H2B family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the large histone gene cluster on chromosome 6. |
| NA | ENSG00000168298 | HIST1H1E | histone cluster 1, H1e | 3008 | Histones are basic nuclear proteins responsible for nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H1 family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the large histone gene cluster on chromosome 6. |
| TRUE | ENSG00000197697 | NA | NA | NA | NA |
| NA | ENSG00000197409 | HIST1H3D | histone cluster 1, H3d | 8351 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H3 family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the large histone gene cluster on chromosome 6. |
| TRUE | ENSG00000197846 | NA | NA | NA | NA |
| TRUE | ENSG00000198518 | NA | NA | NA | NA |
| TRUE | ENSG00000187990 | NA | NA | NA | NA |
| TRUE | ENSG00000168274 | NA | NA | NA | NA |
| NA | ENSG00000124575 | HIST1H1D | histone cluster 1, H1d | 3007 | Histones are basic nuclear proteins responsible for nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H1 family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the large histone gene cluster on chromosome 6. |
| TRUE | ENSG00000198327 | NA | NA | NA | NA |
| TRUE | ENSG00000197459 | NA | NA | NA | NA |
| NA | ENSG00000158406 | HIST1H4H | histone cluster 1, H4h | 8365 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H4 family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the large histone gene cluster on chromosome 6. |
| NA | ENSG00000124508 | BTN2A2 | butyrophilin subfamily 2 member A2 | 10385 | Butyrophilin is the major protein associated with fat droplets in the milk. This gene is a member of the BTN2 subfamily of genes, which encode proteins belonging to the butyrophilin protein family. The gene is located in a cluster on chromosome 6, consisting of seven genes belonging to the expanding B7/butyrophilin-like group, a subset of the immunoglobulin gene superfamily. The encoded protein is a type I receptor glycoprotein involved in lipid, fatty-acid and sterol metabolism. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000026950 | BTN3A1 | butyrophilin subfamily 3 member A1 | 11119 | The butyrophilin (BTN) genes are a group of major histocompatibility complex (MHC)-associated genes that encode type I membrane proteins with 2 extracellular immunoglobulin (Ig) domains and an intracellular B30.2 (PRYSPRY) domain. Three subfamilies of human BTN genes are located in the MHC class I region: the single-copy BTN1A1 gene (MIM 601610) and the BTN2 (e.g., BTN2A1; MIM 613590) and BTN3 (e.g., BNT3A1) genes, which have undergone tandem duplication, resulting in 3 copies of each (summary by Smith et al., 2010 [PubMed 20208008]). |
| NA | ENSG00000112763 | BTN2A1 | butyrophilin subfamily 2 member A1 | 11120 | This gene encodes a member of the immunoglobulin superfamily. The gene is located in a cluster of butyrophilin-like genes in the juxta-telomeric region of the major histocompatibility complex on chromosome 6. A pseudogene of this gene has been identified in this cluster. The encoded protein is an integral plasma membrane protein involved in lipid, fatty-acid, and sterol metabolism. Alterations in this gene may be associated with several disease states including metabolic syndrome. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000182952 | HMGN4 | high mobility group nucleosomal binding domain 4 | 10473 | The protein encoded by this gene, a member of the HMGN protein family, is thought to reduce the compactness of the chromatin fiber in nucleosomes, thereby enhancing transcription from chromatin templates. |
| NA | ENSG00000146109 | ABT1 | activator of basal transcription 1 | 29777 | Basal transcription of genes by RNA polymerase II requires the interaction of TATA-binding protein (TBP) with the core region of class II promoters. Studies in mouse suggest that the protein encoded by this gene likely activates basal transcription from class II promoters by interaction with TBP and the class II promoter DNA. |
| NA | ENSG00000124635 | HIST1H2BJ | histone cluster 1, H2bj | 8970 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H2B family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the histone microcluster on chromosome 6p21.33. |
| NA | ENSG00000196787 | HIST1H2AG | histone cluster 1, H2ag | 8969 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H2A family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the histone microcluster on chromosome 6p21.33. |
| NA | ENSG00000197903 | HIST1H2BK | histone cluster 1, H2bk | 85236 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene encodes a replication-dependent histone that is a member of the histone H2B family. The protein encoded is an antimicrobial protein with antibacterial and antifungal activity. Two transcripts that encode the same protein have been identified for this gene, which is found in the histone microcluster on chromosome 6p21.33. |
| TRUE | ENSG00000198339 | NA | NA | NA | NA |
| TRUE | ENSG00000184825 | NA | NA | NA | NA |
| NA | ENSG00000112812 | PRSS16 | protease, serine 16 | 10279 | This gene encodes a serine protease expressed exclusively in the thymus. It is thought to play a role in the alternative antigen presenting pathway used by cortical thymic epithelial cells during the positive selection of T cells. The gene is found in the large histone gene cluster on chromosome 6, near the major histocompatibility complex (MHC) class I region. A second transcript variant has been described, but its full length nature has not been determined. |
| NA | ENSG00000124613 | ZNF391 | zinc finger protein 391 | 346157 | NA |
| NA | ENSG00000185130 | HIST1H2BL | histone cluster 1, H2bl | 8340 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H2B family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the small histone gene cluster on chromosome 6p22-p21.3. |
| NA | ENSG00000196747 | HIST1H2AI | histone cluster 1, H2ai | 8329 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H2A family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the small histone gene cluster on chromosome 6p22-p21.3. |
| TRUE | ENSG00000182611 | NA | NA | NA | NA |
| NA | ENSG00000197238 | HIST1H4J | histone cluster 1, H4j | 8363 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H4 family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the small histone gene cluster on chromosome 6p22-p21.3. |
| NA | ENSG00000233822 | HIST1H2BN | histone cluster 1, H2bn | 8341 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Two molecules of each of the four core histones (H2A, H2B, H3, and H4) form an octamer, around which approximately 146 bp of DNA is wrapped in repeating units, called nucleosomes. The linker histone, H1, interacts with linker DNA between nucleosomes and functions in the compaction of chromatin into higher order structures. This gene is intronless and encodes a replication-dependent histone that is a member of the histone H2B family. Transcripts from this gene lack polyA tails but instead contain a palindromic termination element. This gene is found in the small histone gene cluster on chromosome 6p22-p21.3. |
| TRUE | ENSG00000198374 | NA | NA | NA | NA |
| TRUE | ENSG00000198558 | NA | NA | NA | NA |
| TRUE | ENSG00000233224 | NA | NA | NA | NA |
| TRUE | ENSG00000196331 | NA | NA | NA | NA |
| NA | ENSG00000197279 | ZNF165 | zinc finger protein 165 | 7718 | This gene encodes a member of the Kruppel family of zinc finger proteins. Members of this DNA-binding protein family act as transcriptional regulators. This gene is located within a cluster of zinc finger family members. The encoded protein may play a role in spermatogenesis. |
| NA | ENSG00000196812 | ZSCAN16 | zinc finger and SCAN domain containing 16 | 80345 | NA |
| NA | ENSG00000198315 | ZKSCAN8 | zinc finger with KRAB and SCAN domains 8 | 7745 | NA |
| NA | ENSG00000137185 | ZSCAN9 | zinc finger and SCAN domain containing 9 | 7746 | NA |
| NA | ENSG00000187626 | ZKSCAN4 | zinc finger with KRAB and SCAN domains 4 | 387032 | NA |
| NA | ENSG00000137338 | PGBD1 | piggyBac transposable element derived 1 | 84547 | The piggyBac family of proteins, found in diverse animals, are transposases related to the transposase of the canonical piggyBac transposon from the moth, Trichoplusia ni. This family also includes genes in several genomes, including human, that appear to have been derived from the piggyBac transposons. This gene belongs to the subfamily of piggyBac transposable element derived (PGBD) genes. The PGBD proteins appear to be novel, with no obvious relationship to other transposases, or other known protein families. This gene product is specifically expressed in the brain, however, its exact function is not known. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000235109 | ZSCAN31 | zinc finger and SCAN domain containing 31 | 64288 | This gene encodes a protein containing multiple C2H2-type zinc finger motifs. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000189298 | ZKSCAN3 | zinc finger with KRAB and SCAN domains 3 | 80317 | NA |
| NA | ENSG00000158691 | ZSCAN12 | zinc finger and SCAN domain containing 12 | 9753 | NA |
| NA | ENSG00000187987 | ZSCAN23 | zinc finger and SCAN domain containing 23 | 222696 | NA |
| NA | ENSG00000232040 | ZBED9 | zinc finger BED-type containing 9 | 114821 | NA |
| NA | ENSG00000204713 | TRIM27 | tripartite motif containing 27 | 5987 | This gene encodes a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. This protein localizes to the nuclear matrix. It interacts with the enhancer of polycomb protein and represses gene transcription. It is also thought to be involved in the differentiation of male germ cells. Fusion of the N-terminus of this protein with the truncated C-terminus of the RET gene product has been shown to result in production of the ret transforming protein. |
| NA | ENSG00000197935 | ZNF311 | zinc finger protein 311 | 282890 | NA |
| NA | ENSG00000204681 | GABBR1 | gamma-aminobutyric acid type B receptor subunit 1 | 2550 | This gene encodes a receptor for gamma-aminobutyric acid (GABA), which is the main inhibitory neurotransmitter in the mammalian central nervous system. This receptor functions as a heterodimer with GABA(B) receptor 2. Defects in this gene may underlie brain disorders such as schizophrenia and epilepsy. Alternative splicing generates multiple transcript variants, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000204642 | HLA-F | major histocompatibility complex, class I, F | 3134 | This gene belongs to the HLA class I heavy chain paralogues. It encodes a non-classical heavy chain that forms a heterodimer with a beta-2 microglobulin light chain, with the heavy chain anchored in the membrane. Unlike most other HLA heavy chains, this molecule is localized in the endoplasmic reticulum and Golgi apparatus, with a small amount present at the cell surface in some cell types. It contains a divergent peptide-binding groove, and is thought to bind a restricted subset of peptides for immune presentation. This gene exhibits few polymorphisms. Multiple transcript variants encoding different isoforms have been found for this gene. These variants lack a coding exon found in transcripts from other HLA paralogues due to an altered splice acceptor site, resulting in a shorter cytoplasmic domain. |
| NA | ENSG00000204632 | HLA-G | major histocompatibility complex, class I, G | 3135 | HLA-G belongs to the HLA class I heavy chain paralogues. This class I molecule is a heterodimer consisting of a heavy chain and a light chain (beta-2 microglobulin). The heavy chain is anchored in the membrane. HLA-G is expressed on fetal derived placental cells. The heavy chain is approximately 45 kDa and its gene contains 8 exons. Exon one encodes the leader peptide, exons 2 and 3 encode the alpha1 and alpha2 domain, which both bind the peptide, exon 4 encodes the alpha3 domain, exon 5 encodes the transmembrane region, and exon 6 encodes the cytoplasmic tail. |
| NA | ENSG00000206503 | HLA-A | major histocompatibility complex, class I, A | 3105 | HLA-A belongs to the HLA class I heavy chain paralogues. This class I molecule is a heterodimer consisting of a heavy chain and a light chain (beta-2 microglobulin). The heavy chain is anchored in the membrane. Class I molecules play a central role in the immune system by presenting peptides derived from the endoplasmic reticulum lumen. They are expressed in nearly all cells. The heavy chain is approximately 45 kDa and its gene contains 8 exons. Exon 1 encodes the leader peptide, exons 2 and 3 encode the alpha1 and alpha2 domains, which both bind the peptide, exon 4 encodes the alpha3 domain, exon 5 encodes the transmembrane region, and exons 6 and 7 encode the cytoplasmic tail. Polymorphisms within exon 2 and exon 3 are responsible for the peptide binding specificity of each class one molecule. Typing for these polymorphisms is routinely done for bone marrow and kidney transplantation. Hundreds of HLA-A alleles have been described. |
| NA | ENSG00000066379 | ZNRD1 | zinc ribbon domain containing 1 | 30834 | This gene encodes a DNA-directed RNA polymerase I subunit. The encoded protein contains two potential zinc-binding motifs and may play a role in regulation of cell proliferation. The encoded protein may be involved in cancer and human immunodeficiency virus progression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204619 | PPP1R11 | protein phosphatase 1 regulatory inhibitor subunit 11 | 6992 | This gene encodes a specific inhibitor of protein phosphatase-1 (PP1) with a differential sensitivity toward the metal-independent and metal-dependent forms of PP1. The gene is located within the major histocompatibility complex class I region on chromosome 6. |
| NA | ENSG00000234127 | TRIM26 | tripartite motif containing 26 | 7726 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The protein localizes to cytoplasmic bodies. Although the function of the protein is unknown, the RING domain suggests that the protein may have DNA-binding activity. The gene localizes to the major histocompatibility complex (MHC) class I region on chromosome 6. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000204599 | TRIM39 | tripartite motif containing 39 | 56658 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The function of this protein has not been identified. This gene lies within the major histocompatibility complex class I region on chromosome 6. Alternate splicing results in two transcript variants encoding different isoforms. |
| NA | ENSG00000204599 | TRIM39-RPP21 | TRIM39-RPP21 readthrough | 202658 | This locus represents naturally occurring read-through transcription between the neighboring TRIM39 (tripartite motif-containing 39) and RPP21 (ribonuclease P/MRP 21kDa subunit) genes on chromosome 6. The read-through transcript encodes a fusion protein that shares sequence identity with each individual gene product. |
| NA | ENSG00000204592 | HLA-E | major histocompatibility complex, class I, E | 3133 | HLA-E belongs to the HLA class I heavy chain paralogues. This class I molecule is a heterodimer consisting of a heavy chain and a light chain (beta-2 microglobulin). The heavy chain is anchored in the membrane. HLA-E binds a restricted subset of peptides derived from the leader peptides of other class I molecules. The heavy chain is approximately 45 kDa and its gene contains 8 exons. Exon one encodes the leader peptide, exons 2 and 3 encode the alpha1 and alpha2 domains, which both bind the peptide, exon 4 encodes the alpha3 domain, exon 5 encodes the transmembrane region, and exons 6 and 7 encode the cytoplasmic tail. |
| NA | ENSG00000204590 | GNL1 | G protein nucleolar 1 (putative) | 2794 | The GNL1 gene, identified in the human major histocompatibility complex class I region, shows a high degree of similarity with its mouse counterpart. The GNL1 gene is located less than 2 kb centromeric to HLA-E, in the same transcriptional orientation. GNL1 is telomeric to HLA-B and HLA-C. |
| NA | ENSG00000204576 | PRR3 | proline rich 3 | 80742 | NA |
| NA | ENSG00000204574 | ABCF1 | ATP binding cassette subfamily F member 1 | 23 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the GCN20 subfamily. Unlike other members of the superfamily, this protein lacks the transmembrane domains which are characteristic of most ABC transporters. This protein may be regulated by tumor necrosis factor-alpha and play a role in enhancement of protein synthesis and the inflammation process. |
| NA | ENSG00000204569 | PPP1R10 | protein phosphatase 1 regulatory subunit 10 | 5514 | This gene encodes a protein phosphatase 1 binding protein. The encoded protein plays a role in many cellular processes including cell cycle progression, DNA repair and apoptosis by regulating the activity of protein phosphatase 1. This gene lies within the major histocompatibility complex class I region on chromosome 6, and alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000204568 | MRPS18B | mitochondrial ribosomal protein S18B | 28973 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S18P family. The encoded protein is one of three that has significant sequence similarity to bacterial S18 proteins. The primary sequences of the three human mitochondrial S18 proteins are no more closely related to each other than they are to the prokaryotic S18 proteins. Pseudogenes corresponding to this gene are found on chromosomes 1q and 2q. |
| NA | ENSG00000137343 | ATAT1 | alpha tubulin acetyltransferase 1 | 79969 | This gene encodes a protein that localizes to clathrin-coated pits, where it acetylates alpha tubulin on lysine 40. This process may be important in microtubule growth, for instance during chemotaxis and the formation of cilium. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204564 | C6orf136 | chromosome 6 open reading frame 136 | 221545 | NA |
| NA | ENSG00000204560 | DHX16 | DEAH-box helicase 16 | 8449 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which is a functional homolog of fission yeast Prp8 protein involved in cell cycle progression. This gene is mapped to the MHC region on chromosome 6p21.3, a region where many malignant, genetic and autoimmune disease genes are linked. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000146112 | PPP1R18 | protein phosphatase 1 regulatory subunit 18 | 170954 | Protein phosphatase-1 (PP1; see MIM 176875) interacts with regulatory subunits that target the enzyme to different cellular locations and change its activity toward specific substrates. Phostensin is a regulatory subunit that targets PP1 to F-actin (see MIM 102610) cytoskeleton (Kao et al., 2007 [PubMed 17374523]). |
| NA | ENSG00000137337 | MDC1 | mediator of DNA damage checkpoint 1 | 9656 | The protein encoded by this gene contains an N-terminal forkhead domain, two BRCA1 C-terminal (BRCT) motifs and a central domain with 13 repetitions of an approximately 41-amino acid sequence. The encoded protein is required to activate the intra-S phase and G2/M phase cell cycle checkpoints in response to DNA damage. This nuclear protein interacts with phosphorylated histone H2AX near sites of DNA double-strand breaks through its BRCT motifs, and facilitates recruitment of the ATM kinase and meiotic recombination 11 protein complex to DNA damage foci. |
| NA | ENSG00000196230 | TUBB | tubulin beta class I | 203068 | This gene encodes a beta tubulin protein. This protein forms a dimer with alpha tubulin and acts as a structural component of microtubules. Mutations in this gene cause cortical dysplasia, complex, with other brain malformations 6. Alternative splicing results in multiple splice variants. There are multiple pseudogenes for this gene on chromosomes 1, 6, 7, 8, 9, and 13. |
| NA | ENSG00000137312 | FLOT1 | flotillin 1 | 10211 | This gene encodes an protein that localizes to the caveolae, which are small domains on the inner cell membranes. This protein plays a role in vesicle trafficking and cell morphology. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000137331 | IER3 | immediate early response 3 | 8870 | This gene functions in the protection of cells from Fas- or tumor necrosis factor type alpha-induced apoptosis. Partially degraded and unspliced transcripts are found after virus infection in vitro, but these transcripts are not found in vivo and do not generate a valid protein. |
| NA | ENSG00000204580 | DDR1 | discoidin domain receptor tyrosine kinase 1 | 780 | Receptor tyrosine kinases play a key role in the communication of cells with their microenvironment. These kinases are involved in the regulation of cell growth, differentiation and metabolism. The protein encoded by this gene belongs to a subfamily of tyrosine kinase receptors with homology to Dictyostelium discoideum protein discoidin I in their extracellular domain, and that are activated by various types of collagen. Expression of this protein is restricted to epithelial cells, particularly in the kidney, lung, gastrointestinal tract, and brain. In addition, it has been shown to be significantly overexpressed in several human tumors. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000137411 | VARS2 | valyl-tRNA synthetase 2, mitochondrial | 57176 | This gene encodes a mitochondrial aminoacyl-tRNA synthetase, which catalyzes the attachment of valine to tRNA(Val) for mitochondrial translation. Mutations in this gene cause combined oxidative phosphorylation deficiency-20, and are also associated with early-onset mitochondrial encephalopathies. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000204536 | CCHCR1 | coiled-coil alpha-helical rod protein 1 | 54535 | NA |
| NA | ENSG00000137310 | TCF19 | transcription factor 19 | 6941 | This gene encodes a protein that contains a PHD-type zinc finger domain and likely functions as a transcription factor. The encoded protein plays a role proliferation and apoptosis of pancreatic beta cells. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204531 | POU5F1 | POU class 5 homeobox 1 | 5460 | This gene encodes a transcription factor containing a POU homeodomain that plays a key role in embryonic development and stem cell pluripotency. Aberrant expression of this gene in adult tissues is associated with tumorigenesis. This gene can participate in a translocation with the Ewing’s sarcoma gene on chromosome 21, which also leads to tumor formation. Alternative splicing, as well as usage of alternative AUG and non-AUG translation initiation codons, results in multiple isoforms. One of the AUG start codons is polymorphic in human populations. Related pseudogenes have been identified on chromosomes 1, 3, 8, 10, and 12. |
| NA | ENSG00000204525 | HLA-C | major histocompatibility complex, class I, C | 3107 | HLA-C belongs to the HLA class I heavy chain paralogues. This class I molecule is a heterodimer consisting of a heavy chain and a light chain (beta-2 microglobulin). The heavy chain is anchored in the membrane. Class I molecules play a central role in the immune system by presenting peptides derived from endoplasmic reticulum lumen. They are expressed in nearly all cells. The heavy chain is approximately 45 kDa and its gene contains 8 exons. Exon one encodes the leader peptide, exons 2 and 3 encode the alpha1 and alpha2 domain, which both bind the peptide, exon 4 encodes the alpha3 domain, exon 5 encodes the transmembrane region, and exons 6 and 7 encode the cytoplasmic tail. Polymorphisms within exon 2 and exon 3 are responsible for the peptide binding specificity of each class one molecule. Typing for these polymorphisms is routinely done for bone marrow and kidney transplantation. Over one hundred HLA-C alleles have been described |
| NA | ENSG00000234745 | HLA-B | major histocompatibility complex, class I, B | 3106 | HLA-B belongs to the HLA class I heavy chain paralogues. This class I molecule is a heterodimer consisting of a heavy chain and a light chain (beta-2 microglobulin). The heavy chain is anchored in the membrane. Class I molecules play a central role in the immune system by presenting peptides derived from the endoplasmic reticulum lumen. They are expressed in nearly all cells. The heavy chain is approximately 45 kDa and its gene contains 8 exons. Exon 1 encodes the leader peptide, exon 2 and 3 encode the alpha1 and alpha2 domains, which both bind the peptide, exon 4 encodes the alpha3 domain, exon 5 encodes the transmembrane region and exons 6 and 7 encode the cytoplasmic tail. Polymorphisms within exon 2 and exon 3 are responsible for the peptide binding specificity of each class one molecule. Typing for these polymorphisms is routinely done for bone marrow and kidney transplantation. Hundreds of HLA-B alleles have been described. |
| NA | ENSG00000204520 | MICA | MHC class I polypeptide-related sequence A | 100507436 | This gene encodes the highly polymorphic major histocompatability complex class I chain-related protein A. The protein product is expressed on the cell surface, although unlike canonical class I molecules it does not seem to associate with beta-2-microglobulin. It is a ligand for the NKG2-D type II integral membrane protein receptor. The protein functions as a stress-induced antigen that is broadly recognized by intestinal epithelial gamma delta T cells. Variations in this gene have been associated with susceptibility to psoriasis 1 and psoriatic arthritis, and the shedding of MICA-related antibodies and ligands is involved in the progression from monoclonal gammopathy of undetermined significance to multiple myeloma. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000204516 | MICB | MHC class I polypeptide-related sequence B | 4277 | This gene encodes a heavily glycosylated protein which is a ligand for the NKG2D type II receptor. Binding of the ligand activates the cytolytic response of natural killer (NK) cells, CD8 alphabeta T cells, and gammadelta T cells which express the receptor. This protein is stress-induced and is similar to MHC class I molecules; however, it does not associate with beta-2-microglobulin or bind peptides. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000198563 | DDX39B | DEAD-box helicase 39B | 7919 | This gene encodes a member of the DEAD box family of RNA-dependent ATPases that mediate ATP hydrolysis during pre-mRNA splicing. The encoded protein is an essential splicing factor required for association of U2 small nuclear ribonucleoprotein with pre-mRNA, and it also plays an important role in mRNA export from the nucleus to the cytoplasm. This gene belongs to a cluster of genes localized in the vicinity of the genes encoding tumor necrosis factor alpha and tumor necrosis factor beta. These genes are all within the human major histocompatibility complex class III region. Mutations in this gene may be associated with rheumatoid arthritis. Alternative splicing results in multiple transcript variants. Related pseudogenes have been identified on both chromosomes 6 and 11. Read-through transcription also occurs between this gene and the upstream ATP6V1G2 (ATPase, H+ transporting, lysosomal 13kDa, V1 subunit G2) gene. |
| NA | ENSG00000204498 | NFKBIL1 | NFKB inhibitor like 1 | 4795 | This gene encodes a divergent member of the I-kappa-B family of proteins. Its function has not been determined. The gene lies within the major histocompatibility complex (MHC) class I region on chromosome 6. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000204472 | AIF1 | allograft inflammatory factor 1 | 199 | This gene encodes a protein that binds actin and calcium. This gene is induced by cytokines and interferon and may promote macrophage activation and growth of vascular smooth muscle cells and T-lymphocytes. Polymorphisms in this gene may be associated with systemic sclerosis. Alternative splicing results in multiple transcript variants, but the full-length and coding nature of some of these variants is not certain. |
| NA | ENSG00000204469 | PRRC2A | proline rich coiled-coil 2A | 7916 | A cluster of genes, BAT1-BAT5, has been localized in the vicinity of the genes for TNF alpha and TNF beta. These genes are all within the human major histocompatibility complex class III region. This gene has microsatellite repeats which are associated with the age-at-onset of insulin-dependent diabetes mellitus (IDDM) and possibly thought to be involved with the inflammatory process of pancreatic beta-cell destruction during the development of IDDM. This gene is also a candidate gene for the development of rheumatoid arthritis. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000204463 | BAG6 | BCL2 associated athanogene 6 | 7917 | This gene was first characterized as part of a cluster of genes located within the human major histocompatibility complex class III region. This gene encodes a nuclear protein that is cleaved by caspase 3 and is implicated in the control of apoptosis. In addition, the protein forms a complex with E1A binding protein p300 and is required for the acetylation of p53 in response to DNA damage. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000204444 | APOM | apolipoprotein M | 55937 | The protein encoded by this gene is an apolipoprotein and member of the lipocalin protein family. It is found associated with high density lipoproteins and to a lesser extent with low density lipoproteins and triglyceride-rich lipoproteins. The encoded protein is secreted through the plasma membrane but remains membrane-bound, where it is involved in lipid transport. Alternate splicing results in both coding and non-coding variants of this gene. |
| NA | ENSG00000204439 | C6orf47 | chromosome 6 open reading frame 47 | 57827 | NA |
| NA | ENSG00000204438 | GPANK1 | G-patch domain and ankyrin repeats 1 | 7918 | This gene is located in a cluster of HLA-B-associated transcripts, which is included in the human major histocompatability complex III region. This gene encodes a protein which is thought to play a role in immunity. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000204435 | CSNK2B | casein kinase 2 beta | 1460 | This gene encodes the beta subunit of casein kinase II, a ubiquitous protein kinase which regulates metabolic pathways, signal transduction, transcription, translation, and replication. The enzyme is composed of three subunits, alpha, alpha prime and beta, which form a tetrameric holoenzyme. The alpha and alpha prime subunits are catalytic, while the beta subunit serves regulatory functions. The enzyme localizes to the endoplasmic reticulum and the Golgi apparatus. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000204427 | ABHD16A | abhydrolase domain containing 16A | 7920 | A cluster of genes, BAT1-BAT5, has been localized in the vicinity of the genes for tumor necrosis factor alpha and tumor necrosis factor beta. These genes are all within the human major histocompatibility complex class III region. The protein encoded by this gene is thought to be involved in some aspects of immunity. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000213722 | DDAH2 | dimethylarginine dimethylaminohydrolase 2 | 23564 | This gene encodes a dimethylarginine dimethylaminohydrolase. The encoded enzyme functions in nitric oxide generation by regulating the cellular concentrations of methylarginines, which in turn inhibit nitric oxide synthase activity. The protein may be localized to the mitochondria. Alternative splicing resulting in multiple transcript variants. |
| NA | ENSG00000213719 | CLIC1 | chloride intracellular channel 1 | 1192 | Chloride channels are a diverse group of proteins that regulate fundamental cellular processes including stabilization of cell membrane potential, transepithelial transport, maintenance of intracellular pH, and regulation of cell volume. Chloride intracellular channel 1 is a member of the p64 family; the protein localizes principally to the cell nucleus and exhibits both nuclear and plasma membrane chloride ion channel activity. |
| NA | ENSG00000204394 | VARS | valyl-tRNA synthetase | 7407 | Aminoacyl-tRNA synthetases catalyze the aminoacylation of tRNA by their cognate amino acid. Because of their central role in linking amino acids with nucleotide triplets contained in tRNAs, aminoacyl-tRNA synthetases are thought to be among the first proteins that appeared in evolution. The protein encoded by this gene belongs to class-I aminoacyl-tRNA synthetase family and is located in the class III region of the major histocompatibility complex. |
| NA | ENSG00000204392 | LSM2 | LSM2 homolog, U6 small nuclear RNA and mRNA degradation associated | 57819 | This gene encodes a member of the LSm family of RNA-binding proteins. LSm proteins form stable heteromers that bind specifically to the 3’-terminal oligo(U) tract of U6 snRNA and may play a role in pre-mRNA splicing by mediating U4/U6 snRNP formation. Pseudogenes of this gene are located on the short arm of chromosomes 6 and 19. |
| NA | ENSG00000204389 | HSPA1A | heat shock protein family A (Hsp70) member 1A | 3303 | This intronless gene encodes a 70kDa heat shock protein which is a member of the heat shock protein 70 family. In conjuction with other heat shock proteins, this protein stabilizes existing proteins against aggregation and mediates the folding of newly translated proteins in the cytosol and in organelles. It is also involved in the ubiquitin-proteasome pathway through interaction with the AU-rich element RNA-binding protein 1. The gene is located in the major histocompatibility complex class III region, in a cluster with two closely related genes which encode similar proteins. |
| NA | ENSG00000204388 | HSPA1B | heat shock protein family A (Hsp70) member 1B | 3304 | This intronless gene encodes a 70kDa heat shock protein which is a member of the heat shock protein 70 family. In conjuction with other heat shock proteins, this protein stabilizes existing proteins against aggregation and mediates the folding of newly translated proteins in the cytosol and in organelles. It is also involved in the ubiquitin-proteasome pathway through interaction with the AU-rich element RNA-binding protein 1. The gene is located in the major histocompatibility complex class III region, in a cluster with two closely related genes which encode similar proteins. |
| NA | ENSG00000204386 | NEU1 | neuraminidase 1 (lysosomal sialidase) | 4758 | The protein encoded by this gene is a lysosomal enzyme that cleaves terminal sialic acid residues from substrates such as glycoproteins and glycolipids. In the lysosome, this enzyme is part of a heterotrimeric complex together with beta-galactosidase and cathepsin A (the latter is also referred to as ‘protective protein’). Mutations in this gene can lead to sialidosis, a lysosomal storage disease that can be type 1 (cherry red spot-myoclonus syndrome or normosomatic type), which is late-onset, or type 2 (the dysmorphic type), which occurs at an earlier age with increased severity. |
| NA | ENSG00000204371 | EHMT2 | euchromatic histone-lysine N-methyltransferase 2 | 10919 | This gene encodes a methyltransferase that methylates lysine residues of histone H3. Methylation of H3 at lysine 9 by this protein results in recruitment of additional epigenetic regulators and repression of transcription. This gene was initially thought to be two different genes, NG36 and G9a, adjacent to each other in the HLA locus. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204356 | NELFE | negative elongation factor complex member E | 7936 | The protein encoded by this gene is part of a complex termed negative elongation factor (NELF) which represses RNA polymerase II transcript elongation. This protein bears similarity to nuclear RNA-binding proteins; however, it has not been demonstrated that this protein binds RNA. The protein contains a tract of alternating basic and acidic residues, largely arginine (R) and aspartic acid (D). The gene localizes to the major histocompatibility complex (MHC) class III region on chromosome 6. |
| NA | ENSG00000204351 | SKIV2L | Ski2 like RNA helicase | 6499 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a DEAD box protein, which is a human homologue of yeast SKI2 and may be involved in antiviral activity by blocking translation of poly(A) deficient mRNAs. This gene is located in the class III region of the major histocompatibility complex. |
| NA | ENSG00000204348 | DXO | decapping exoribonuclease | 1797 | This gene localizes to the major histocompatibility complex (MHC) class III region on chromosome 6. The function of its protein product is unknown, but its ubiquitous expression and conservation in both simple and complex eukaryotes suggests that this may be a housekeeping gene. |
| NA | ENSG00000204344 | STK19 | serine/threonine kinase 19 | 8859 | This gene encodes a serine/threonine kinase which localizes predominantly to the nucleus. Its specific function is unknown; it is possible that phosphorylation of this protein is involved in transcriptional regulation. This gene localizes to the major histocompatibility complex (MHC) class III region on chromosome 6 and expresses two transcript variants. |
| NA | ENSG00000213676 | ATF6B | activating transcription factor 6 beta | 1388 | The protein encoded by this gene is a transcription factor in the unfolded protein response (UPR) pathway during ER stress. Either as a homodimer or as a heterodimer with ATF6-alpha, the encoded protein binds to the ER stress response element, interacting with nuclear transcription factor Y to activate UPR target genes. The protein is normally found in the membrane of the endoplasmic reticulum; however, under ER stress, the N-terminal cytoplasmic domain is cleaved from the rest of the protein and translocates to the nucleus. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000204315 | FKBPL | FK506 binding protein like | 63943 | The protein encoded by this gene has similarity to the immunophilin protein family, which play a role in immunoregulation and basic cellular processes involving protein folding and trafficking. The encoded protein is thought to have a potential role in the induced radioresistance. Also it appears to have some involvement in the control of the cell cycle. |
| NA | ENSG00000221988 | PPT2 | palmitoyl-protein thioesterase 2 | 9374 | This gene encodes a member of the palmitoyl-protein thioesterase family. The encoded glycosylated lysosomal protein has palmitoyl-CoA hydrolase activity in vitro, but does not hydrolyze palmitate from cysteine residues in proteins. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the downstream EGFL8 (EGF-like-domain, multiple 8) gene. |
| NA | ENSG00000204310 | AGPAT1 | 1-acylglycerol-3-phosphate O-acyltransferase 1 | 10554 | This gene encodes an enzyme that converts lysophosphatidic acid (LPA) into phosphatidic acid (PA). LPA and PA are two phospholipids involved in signal transduction and in lipid biosynthesis in cells. This enzyme localizes to the endoplasmic reticulum. This gene is located in the class III region of the human major histocompatibility complex. Alternative splicing results in two transcript variants encoding the same protein. |
| NA | ENSG00000204305 | AGER | advanced glycosylation end product-specific receptor | 177 | The advanced glycosylation end product (AGE) receptor encoded by this gene is a member of the immunoglobulin superfamily of cell surface receptors. It is a multiligand receptor, and besides AGE, interacts with other molecules implicated in homeostasis, development, and inflammation, and certain diseases, such as diabetes and Alzheimer’s disease. Many alternatively spliced transcript variants encoding different isoforms, as well as non-protein-coding variants, have been described for this gene (PMID:18089847). |
| NA | ENSG00000204304 | PBX2 | pre-B-cell leukemia homeobox 2 | 5089 | This gene encodes a ubiquitously expressed member of the TALE/PBX homeobox family. It was identified by its similarity to a homeobox gene which is involved in t(1;19) translocation in acute pre-B-cell leukemias. This protein is a transcriptional activator which binds to the TLX1 promoter. The gene is located within the major histocompatibility complex (MHC) on chromosome 6. |
| NA | ENSG00000213654 | GPSM3 | G-protein signaling modulator 3 | 63940 | NA |
| NA | ENSG00000204287 | HLA-DRA | major histocompatibility complex, class II, DR alpha | 3122 | HLA-DRA is one of the HLA class II alpha chain paralogues. This class II molecule is a heterodimer consisting of an alpha and a beta chain, both anchored in the membrane. It plays a central role in the immune system by presenting peptides derived from extracellular proteins. Class II molecules are expressed in antigen presenting cells (APC: B lymphocytes, dendritic cells, macrophages). The alpha chain is approximately 33-35 kDa and its gene contains 5 exons. Exon 1 encodes the leader peptide, exons 2 and 3 encode the two extracellular domains, and exon 4 encodes the transmembrane domain and the cytoplasmic tail. DRA does not have polymorphisms in the peptide binding part and acts as the sole alpha chain for DRB1, DRB3, DRB4 and DRB5. |
| NA | ENSG00000196126 | LOC105369230 | HLA class II histocompatibility antigen, DRB1-7 beta chain | 105369230 | NA |
| NA | ENSG00000196126 | HLA-DRB1 | major histocompatibility complex, class II, DR beta 1 | 3123 | HLA-DRB1 belongs to the HLA class II beta chain paralogs. The class II molecule is a heterodimer consisting of an alpha (DRA) and a beta chain (DRB), both anchored in the membrane. It plays a central role in the immune system by presenting peptides derived from extracellular proteins. Class II molecules are expressed in antigen presenting cells (APC: B lymphocytes, dendritic cells, macrophages). The beta chain is approximately 26-28 kDa. It is encoded by 6 exons. Exon one encodes the leader peptide; exons 2 and 3 encode the two extracellular domains; exon 4 encodes the transmembrane domain; and exon 5 encodes the cytoplasmic tail. Within the DR molecule the beta chain contains all the polymorphisms specifying the peptide binding specificities. Hundreds of DRB1 alleles have been described and typing for these polymorphisms is routinely done for bone marrow and kidney transplantation. DRB1 is expressed at a level five times higher than its paralogs DRB3, DRB4 and DRB5. DRB1 is present in all individuals. Allelic variants of DRB1 are linked with either none or one of the genes DRB3, DRB4 and DRB5. There are 4 related pseudogenes: DRB2, DRB6, DRB7, DRB8 and DRB9. |
| NA | ENSG00000179344 | HLA-DQB1 | major histocompatibility complex, class II, DQ beta 1 | 3119 | HLA-DQB1 belongs to the HLA class II beta chain paralogs. This class II molecule is a heterodimer consisting of an alpha (DQA) and a beta chain (DQB), both anchored in the membrane. It plays a central role in the immune system by presenting peptides derived from extracellular proteins. Class II molecules are expressed in antigen presenting cells (APC: B lymphocytes, dendritic cells, macrophages). The beta chain is approximately 26-28 kDa and it contains six exons. Exon 1 encodes the leader peptide, exons 2 and 3 encode the two extracellular domains, exon 4 encodes the transmembrane domain and exon 5 encodes the cytoplasmic tail. Within the DQ molecule both the alpha chain and the beta chain contain the polymorphisms specifying the peptide binding specificities, resulting in up to four different molecules. Typing for these polymorphisms is routinely done for bone marrow transplantation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204267 | TAP2 | transporter 2, ATP-binding cassette, sub-family B (MDR/TAP) | 6891 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MDR/TAP subfamily. Members of the MDR/TAP subfamily are involved in multidrug resistance. This gene is located 7 kb telomeric to gene family member ABCB2. The protein encoded by this gene is involved in antigen presentation. This protein forms a heterodimer with ABCB2 in order to transport peptides from the cytoplasm to the endoplasmic reticulum. Mutations in this gene may be associated with ankylosing spondylitis, insulin-dependent diabetes mellitus, and celiac disease. Alternative splicing of this gene produces products which differ in peptide selectivity and level of restoration of surface expression of MHC class I molecules. |
| NA | ENSG00000204264 | PSMB8 | proteasome subunit beta 8 | 5696 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the proteasome B-type family, also known as the T1B family, that is a 20S core beta subunit. This gene is located in the class II region of the MHC (major histocompatibility complex). Expression of this gene is induced by gamma interferon and this gene product replaces catalytic subunit 3 (proteasome beta 5 subunit) in the immunoproteasome. Proteolytic processing is required to generate a mature subunit. Two alternative transcripts encoding two isoforms have been identified; both isoforms are processed to yield the same mature subunit. |
| NA | ENSG00000240065 | PSMB9 | proteasome subunit beta 9 | 5698 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the proteasome B-type family, also known as the T1B family, that is a 20S core beta subunit. This gene is located in the class II region of the MHC (major histocompatibility complex). Expression of this gene is induced by gamma interferon and this gene product replaces catalytic subunit 1 (proteasome beta 6 subunit) in the immunoproteasome. Proteolytic processing is required to generate a mature subunit. |
| NA | ENSG00000168394 | TAP1 | transporter 1, ATP-binding cassette, sub-family B (MDR/TAP) | 6890 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MDR/TAP subfamily. Members of the MDR/TAP subfamily are involved in multidrug resistance. The protein encoded by this gene is involved in the pumping of degraded cytosolic peptides across the endoplasmic reticulum into the membrane-bound compartment where class I molecules assemble. Mutations in this gene may be associated with ankylosing spondylitis, insulin-dependent diabetes mellitus, and celiac disease. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000242574 | HLA-DMB | major histocompatibility complex, class II, DM beta | 3109 | HLA-DMB belongs to the HLA class II beta chain paralogues. This class II molecule is a heterodimer consisting of an alpha (DMA) and a beta (DMB) chain, both anchored in the membrane. It is located in intracellular vesicles. DM plays a central role in the peptide loading of MHC class II molecules by helping to release the CLIP (class II-associated invariant chain peptide) molecule from the peptide binding site. Class II molecules are expressed in antigen presenting cells (APC: B lymphocytes, dendritic cells, macrophages). The beta chain is approximately 26-28 kDa and its gene contains 6 exons. Exon one encodes the leader peptide, exons 2 and 3 encode the two extracellular domains, exon 4 encodes the transmembrane domain and exon 5 encodes the cytoplasmic tail. |
| NA | ENSG00000204257 | HLA-DMA | major histocompatibility complex, class II, DM alpha | 3108 | HLA-DMA belongs to the HLA class II alpha chain paralogues. This class II molecule is a heterodimer consisting of an alpha (DMA) and a beta chain (DMB), both anchored in the membrane. It is located in intracellular vesicles. DM plays a central role in the peptide loading of MHC class II molecules by helping to release the CLIP molecule from the peptide binding site. Class II molecules are expressed in antigen presenting cells (APC: B lymphocytes, dendritic cells, macrophages). The alpha chain is approximately 33-35 kDa and its gene contains 5 exons. Exon one encodes the leader peptide, exons 2 and 3 encode the two extracellular domains, exon 4 encodes the transmembrane domain and the cytoplasmic tail. |
| NA | ENSG00000204256 | BRD2 | bromodomain containing 2 | 6046 | This gene encodes a transcriptional regulator that belongs to the BET (bromodomains and extra terminal domain) family of proteins. This protein associates with transcription complexes and with acetylated chromatin during mitosis, and it selectively binds to the acetylated lysine-12 residue of histone H4 via its two bromodomains. The gene maps to the major histocompatability complex (MHC) class II region on chromosome 6p21.3, but sequence comparison suggests that the protein is not involved in the immune response. This gene has been implicated in juvenile myoclonic epilepsy, a common form of epilepsy that becomes apparent in adolescence. Multiple alternatively spliced variants have been described for this gene. |
| NA | ENSG00000204252 | HLA-DOA | major histocompatibility complex, class II, DO alpha | 3111 | HLA-DOA belongs to the HLA class II alpha chain paralogues. HLA-DOA forms a heterodimer with HLA-DOB. The heterodimer, HLA-DO, is found in lysosomes in B cells and regulates HLA-DM-mediated peptide loading on MHC class II molecules. In comparison with classical HLA class II molecules, this gene exhibits very little sequence variation, especially at the protein level. |
| NA | ENSG00000231389 | HLA-DPA1 | major histocompatibility complex, class II, DP alpha 1 | 3113 | HLA-DPA1 belongs to the HLA class II alpha chain paralogues. This class II molecule is a heterodimer consisting of an alpha (DPA) and a beta (DPB) chain, both anchored in the membrane. It plays a central role in the immune system by presenting peptides derived from extracellular proteins. Class II molecules are expressed in antigen presenting cells (APC: B lymphocytes, dendritic cells, macrophages). The alpha chain is approximately 33-35 kDa and its gene contains 5 exons. Exon one encodes the leader peptide, exons 2 and 3 encode the two extracellular domains, exon 4 encodes the transmembrane domain and the cytoplasmic tail. Within the DP molecule both the alpha chain and the beta chain contain the polymorphisms specifying the peptide binding specificities, resulting in up to 4 different molecules. |
| NA | ENSG00000223865 | HLA-DPB1 | major histocompatibility complex, class II, DP beta 1 | 3115 | HLA-DPB belongs to the HLA class II beta chain paralogues. This class II molecule is a heterodimer consisting of an alpha (DPA) and a beta chain (DPB), both anchored in the membrane. It plays a central role in the immune system by presenting peptides derived from extracellular proteins. Class II molecules are expressed in antigen presenting cells (APC: B lymphocytes, dendritic cells, macrophages). The beta chain is approximately 26-28 kDa and its gene contains 6 exons. Exon one encodes the leader peptide, exons 2 and 3 encode the two extracellular domains, exon 4 encodes the transmembrane domain and exon 5 encodes the cytoplasmic tail. Within the DP molecule both the alpha chain and the beta chain contain the polymorphisms specifying the peptide binding specificities, resulting in up to 4 different molecules. |
| NA | ENSG00000204231 | RXRB | retinoid X receptor beta | 6257 | This gene encodes a member of the retinoid X receptor (RXR) family of nuclear receptors which are involved in mediating the effects of retinoic acid (RA). The encoded protein forms homodimers with the retinoic acid, thyroid hormone, and vitamin D receptors, increasing both DNA binding and transcriptional function on their respective response elements. This gene lies within the major histocompatibility complex (MHC) class II region on chromosome 6. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000112473 | SLC39A7 | solute carrier family 39 member 7 | 7922 | The protein encoded by this gene transports zinc from the Golgi and endoplasmic reticulum to the cytoplasm. This transport may be important for activation of tyrosine kinases, some of which could be involved in cancer progression. Therefore, modulation of the encoded protein could be useful as a therapeutic agent against cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000204228 | HSD17B8 | hydroxysteroid (17-beta) dehydrogenase 8 | 7923 | In mice, the Ke6 protein is a 17-beta-hydroxysteroid dehydrogenase that can regulate the concentration of biologically active estrogens and androgens. It is preferentially an oxidative enzyme and inactivates estradiol, testosterone, and dihydrotestosterone. However, the enzyme has some reductive activity and can synthesize estradiol from estrone. The protein encoded by this gene is similar to Ke6 and is a member of the short-chain dehydrogenase superfamily. An alternatively spliced transcript of this gene has been detected, but the full-length nature of this variant has not been determined. |
| NA | ENSG00000223501 | VPS52 | VPS52, GARP complex subunit | 6293 | This gene encodes a protein that is similar to the yeast suppressor of actin mutations 2 gene. The yeast protein forms a subunit of the tetrameric Golgi-associated retrograde protein complex that is involved in vesicle trafficking from from both early and late endosomes, back to the trans-Golgi network. This gene is located on chromosome 6 in a head-to-head orientation with the gene encoding ribosomal protein S18. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000231500 | RPS18 | ribosomal protein S18 | 6222 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S13P family of ribosomal proteins. It is located in the cytoplasm. The gene product of the E. coli ortholog (ribosomal protein S13) is involved in the binding of fMet-tRNA, and thus, in the initiation of translation. This gene is an ortholog of mouse Ke3. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000227057 | WDR46 | WD repeat domain 46 | 9277 | NA |
| NA | ENSG00000204220 | PFDN6 | prefoldin subunit 6 | 10471 | PFDN6 is a subunit of the heteromeric prefoldin complex that chaperones nascent actin (see MIM 102560) and alpha- and beta-tubulin (see MIM 602529 and MIM 191130, respectively) chains pending their transfer to the cytosolic chaperonin containing TCP1 (MIM 186980) (CCT) complex (Hansen et al., 1999 [PubMed 10209023]). |
| NA | ENSG00000237441 | RGL2 | ral guanine nucleotide dissociation stimulator like 2 | 5863 | NA |
| NA | ENSG00000231925 | TAPBP | TAP binding protein (tapasin) | 6892 | This gene encodes a transmembrane glycoprotein which mediates interaction between newly assembled major histocompatibility complex (MHC) class I molecules and the transporter associated with antigen processing (TAP), which is required for the transport of antigenic peptides across the endoplasmic reticulum membrane. This interaction is essential for optimal peptide loading on the MHC class I molecule. Up to four complexes of MHC class I and this protein may be bound to a single TAP molecule. This protein contains a C-terminal double-lysine motif (KKKAE) known to maintain membrane proteins in the endoplasmic reticulum. This gene lies within the major histocompatibility complex on chromosome 6. Alternative splicing results in three transcript variants encoding different isoforms. |
| NA | ENSG00000236104 | ZBTB22 | zinc finger and BTB domain containing 22 | 9278 | NA |
| NA | ENSG00000204209 | DAXX | death-domain associated protein | 1616 | This gene encodes a multifunctional protein that resides in multiple locations in the nucleus and in the cytoplasm. It interacts with a wide variety of proteins, such as apoptosis antigen Fas, centromere protein C, and transcription factor erythroblastosis virus E26 oncogene homolog 1. In the nucleus, the encoded protein functions as a potent transcription repressor that binds to sumoylated transcription factors. Its repression can be relieved by the sequestration of this protein into promyelocytic leukemia nuclear bodies or nucleoli. This protein also associates with centromeres in G2 phase. In the cytoplasm, the encoded protein may function to regulate apoptosis. The subcellular localization and function of this protein are modulated by post-translational modifications, including sumoylation, phosphorylation and polyubiquitination. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000237649 | KIFC1 | kinesin family member C1 | 3833 | NA |
| NA | ENSG00000112511 | PHF1 | PHD finger protein 1 | 5252 | This gene encodes a Polycomb group protein. The protein is a component of a histone H3 lysine-27 (H3K27)-specific methyltransferase complex, and functions in transcriptional repression of homeotic genes. The protein is also recruited to double-strand breaks, and reduced protein levels results in X-ray sensitivity and increased homologous recombination. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000112514 | CUTA | cutA divalent cation tolerance homolog (E. coli) | 51596 | NA |
| NA | ENSG00000197283 | SYNGAP1 | synaptic Ras GTPase activating protein 1 | 8831 | The protein encoded by this gene is a major component of the postsynaptic density (PSD), a group of proteins found associated with NMDA receptors at synapses. The encoded protein is phosphorylated by calmodulin-dependent protein kinase II and dephosphorylated by NMDA receptor activation. Defects in this gene are a cause of mental retardation autosomal dominant type 5 (MRD5). |
| NA | ENSG00000213588 | ZBTB9 | zinc finger and BTB domain containing 9 | 221504 | NA |
| NA | ENSG00000030110 | BAK1 | BCL2 antagonist/killer 1 | 578 | The protein encoded by this gene belongs to the BCL2 protein family. BCL2 family members form oligomers or heterodimers and act as anti- or pro-apoptotic regulators that are involved in a wide variety of cellular activities. This protein localizes to mitochondria, and functions to induce apoptosis. It interacts with and accelerates the opening of the mitochondrial voltage-dependent anion channel, which leads to a loss in membrane potential and the release of cytochrome c. This protein also interacts with the tumor suppressor P53 after exposure to cell stress. |
| NA | ENSG00000096433 | ITPR3 | inositol 1,4,5-trisphosphate receptor type 3 | 3710 | This gene encodes a receptor for inositol 1,4,5-trisphosphate, a second messenger that mediates the release of intracellular calcium. The receptor contains a calcium channel at the C-terminus and the ligand-binding site at the N-terminus. Knockout studies in mice suggest that type 2 and type 3 inositol 1,4,5-trisphosphate receptors play a key role in exocrine secretion underlying energy metabolism and growth. |
| NA | ENSG00000137288 | UQCC2 | ubiquinol-cytochrome c reductase complex assembly factor 2 | 84300 | This gene encodes a nucleoid protein localized to the mitochondria inner membrane. The encoded protein affects regulation of insulin secretion, mitochondrial ATP production, and myogenesis through modulation of mitochondrial respiratory chain activity. |
| NA | ENSG00000161904 | LEMD2 | LEM domain containing 2 | 221496 | NA |
| NA | ENSG00000124493 | GRM4 | glutamate receptor, metabotropic 4 | 2914 | L-glutamate is the major excitatory neurotransmitter in the central nervous system and activates both ionotropic and metabotropic glutamate receptors. Glutamatergic neurotransmission is involved in most aspects of normal brain function and can be perturbed in many neuropathologic conditions. The metabotropic glutamate receptors are a family of G protein-coupled receptors, that have been divided into 3 groups on the basis of sequence homology, putative signal transduction mechanisms, and pharmacologic properties. Group I includes GRM1 and GRM5 and these receptors have been shown to activate phospholipase C. Group II includes GRM2 and GRM3 while Group III includes GRM4, GRM6, GRM7 and GRM8. Group II and III receptors are linked to the inhibition of the cyclic AMP cascade but differ in their agonist selectivities. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137309 | HMGA1 | high mobility group AT-hook 1 | 3159 | This gene encodes a chromatin-associated protein involved in the regulation of gene transcription, integration of retroviruses into chromosomes, and the metastatic progression of cancer cells. The encoded protein preferentially binds to the minor groove of AT-rich regions in double-stranded DNA. Multiple transcript variants encoding different isoforms have been found for this gene. Pseudogenes of this gene have been identified on multiple chromosomes. |
| NA | ENSG00000186577 | C6orf1 | chromosome 6 open reading frame 1 | 221491 | NA |
| NA | ENSG00000272325 | NUDT3 | nudix hydrolase 3 | 11165 | NUDT3 belongs to the MutT, or Nudix, protein family. Nudix proteins act as homeostatic checkpoints at important stages in nucleoside phosphate metabolic pathways, guarding against elevated levels of potentially dangerous intermediates, like 8-oxo-dGTP, which promotes AT-to-CG transversions (Safrany et al., 1998 [PubMed 9822604]). |
| NA | ENSG00000124614 | RPS10 | ribosomal protein S10 | 6204 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S10E family of ribosomal proteins. It is located in the cytoplasm. Variable expression of this gene in colorectal cancers compared to adjacent normal tissues has been observed, although no correlation between the level of expression and the severity of the disease has been found. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Alternate splicing results in multiple transcript variants that encode the same protein. Naturally occurring read-through transcription occurs between this locus and the neighboring locus NUDT3 (nudix (nucleoside diphosphate linked moiety X)-type motif 3). |
| NA | ENSG00000124507 | PACSIN1 | protein kinase C and casein kinase substrate in neurons 1 | 29993 | NA |
| NA | ENSG00000196821 | C6orf106 | chromosome 6 open reading frame 106 | 64771 | NA |
| NA | ENSG00000124562 | SNRPC | small nuclear ribonucleoprotein polypeptide C | 6631 | This gene encodes one of the specific protein components of the U1 small nuclear ribonucleoprotein (snRNP) particle required for the formation of the spliceosome. The encoded protein participates in the processing of nuclear precursor messenger RNA splicing. snRNP particles are attacked by autoantibodies frequently produced by patients with connective tissue diseases. The genome contains several pseudogenes of this functional gene. Alternative splicing results in a non-coding transcript variant. |
| NA | ENSG00000065060 | UHRF1BP1 | UHRF1 binding protein 1 | 54887 | NA |
| NA | ENSG00000064995 | TAF11 | TATA-box binding protein associated factor 11 | 6882 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes a small subunit of TFIID that is present in all TFIID complexes and interacts with TBP. This subunit also interacts with another small subunit, TAF13, to form a heterodimer with a structure similar to the histone core structure. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000064999 | ANKS1A | ankyrin repeat and sterile alpha motif domain containing 1A | 23294 | NA |
| NA | ENSG00000065029 | ZNF76 | zinc finger protein 76 | 7629 | NA |
| NA | ENSG00000023892 | DEF6 | DEF6, guanine nucleotide exchange factor | 50619 | DEF6, or IBP, is a guanine nucleotide exchange factor (GEF) for RAC (MIM 602048) and CDC42 (MIM 116952) that is highly expressed in B and T cells (Gupta et al., 2003 [PubMed 12923183]). |
| NA | ENSG00000112033 | PPARD | peroxisome proliferator activated receptor delta | 5467 | This gene encodes a member of the peroxisome proliferator-activated receptor (PPAR) family. PPARs are nuclear hormone receptors that bind peroxisome proliferators and control the size and number of peroxisomes produced by cells. PPARs mediate a variety of biological processes, and may be involved in the development of several chronic diseases, including diabetes, obesity, atherosclerosis, and cancer. This protein is a potent inhibitor of ligand-induced transcription activity of PPAR alpha and PPAR gamma. It may function as an integrator of transcription repression and nuclear receptor signaling. The expression of this gene is found to be elevated in colorectal cancer cells. The elevated expression can be repressed by adenomatosis polyposis coli (APC), a tumor suppressor protein related to APC/beta-catenin signaling pathway. Knockout studies in mice suggested the role of this protein in myelination of the corpus callosum, lipid metabolism, and epidermal cell proliferation. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000112039 | FANCE | Fanconi anemia complementation group E | 2178 | The Fanconi anemia complementation group (FANC) currently includes FANCA, FANCB, FANCC, FANCD1 (also called BRCA2), FANCD2, FANCE, FANCF, FANCG, FANCI, FANCJ (also called BRIP1), FANCL, FANCM and FANCN (also called PALB2). The previously defined group FANCH is the same as FANCA. Fanconi anemia is a genetically heterogeneous recessive disorder characterized by cytogenetic instability, hypersensitivity to DNA crosslinking agents, increased chromosomal breakage, and defective DNA repair. The members of the Fanconi anemia complementation group do not share sequence similarity; they are related by their assembly into a common nuclear protein complex. This gene encodes the protein for complementation group E. |
| NA | ENSG00000198755 | RPL10A | ribosomal protein L10a | 4736 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L1P family of ribosomal proteins. It is located in the cytoplasm. The expression of this gene is downregulated in the thymus by cyclosporin-A (CsA), an immunosuppressive drug. Studies in mice have shown that the expression of the ribosomal protein L10a gene is downregulated in neural precursor cells during development. This gene previously was referred to as NEDD6 (neural precursor cell expressed, developmentally downregulated 6), but it has been renamed RPL10A (ribosomal protein 10a). As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000007866 | TEAD3 | TEA domain transcription factor 3 | 7005 | This gene product is a member of the transcriptional enhancer factor (TEF) family of transcription factors, which contain the TEA/ATTS DNA-binding domain. It is predominantly expressed in the placenta and is involved in the transactivation of the chorionic somatomammotropin-B gene enhancer. Translation of this protein is initiated at a non-AUG (AUA) start codon. |
| NA | ENSG00000112041 | TULP1 | tubby like protein 1 | 7287 | This gene encodes a member of the tubby-like gene family (TULPs). Members of this family have been identified in plants, vertebrates, and invertebrates and encode proteins of unknown function. TULP proteins share a conserved C-terminal region of approximately 200 amino acid residues. Mutations in this gene may be associated with juvenile retinitis pigmentosa and Leber congenital amaurosis-15. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000096060 | FKBP5 | FK506 binding protein 5 | 2289 | The protein encoded by this gene is a member of the immunophilin protein family, which play a role in immunoregulation and basic cellular processes involving protein folding and trafficking. This encoded protein is a cis-trans prolyl isomerase that binds to the immunosuppressants FK506 and rapamycin. It is thought to mediate calcineurin inhibition. It also interacts functionally with mature hetero-oligomeric progesterone receptor complexes along with the 90 kDa heat shock protein and P23 protein. This gene has been found to have multiple polyadenylation sites. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000096063 | SRPK1 | SRSF protein kinase 1 | 6732 | This gene encodes a serine/arginine protein kinase specific for the SR (serine/arginine-rich domain) family of splicing factors. The protein localizes to the nucleus and the cytoplasm. It is thought to play a role in regulation of both constitutive and alternative splicing by regulating intracellular localization of splicing factors. Alternative splicing of this gene results in multiple transcript variants. Additional alternatively spliced transcript variants have been described for this gene, but their full length nature have not been determined. |
| NA | ENSG00000112062 | MAPK14 | mitogen-activated protein kinase 14 | 1432 | The protein encoded by this gene is a member of the MAP kinase family. MAP kinases act as an integration point for multiple biochemical signals, and are involved in a wide variety of cellular processes such as proliferation, differentiation, transcription regulation and development. This kinase is activated by various environmental stresses and proinflammatory cytokines. The activation requires its phosphorylation by MAP kinase kinases (MKKs), or its autophosphorylation triggered by the interaction of MAP3K7IP1/TAB1 protein with this kinase. The substrates of this kinase include transcription regulator ATF2, MEF2C, and MAX, cell cycle regulator CDC25B, and tumor suppressor p53, which suggest the roles of this kinase in stress related transcription and cell cycle regulation, as well as in genotoxic stress response. Four alternatively spliced transcript variants of this gene encoding distinct isoforms have been reported. |
| NA | ENSG00000156711 | MAPK13 | mitogen-activated protein kinase 13 | 5603 | This gene encodes a member of the mitogen-activated protein (MAP) kinase family. MAP kinases act as an integration point for multiple biochemical signals, and are involved in a wide variety of cellular processes such as proliferation, differentiation, transcription regulation and development. The encoded protein is a p38 MAP kinase and is activated by proinflammatory cytokines and cellular stress. Substrates of the encoded protein include the transcription factor ATF2 and the microtubule dynamics regulator stathmin. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000096070 | BRPF3 | bromodomain and PHD finger containing 3 | 27154 | NA |
| NA | ENSG00000112078 | KCTD20 | potassium channel tetramerization domain containing 20 | 222658 | NA |
| NA | ENSG00000112079 | STK38 | serine/threonine kinase 38 | 11329 | This gene encodes a member of the AGC serine/threonine kinase family of proteins. The kinase activity of this protein is regulated by autophosphorylation and phosphorylation by other upstream kinases. This protein has been shown to function in the cell cycle and apoptosis. This protein has also been found to regulate the protein stability and transcriptional activity of the MYC oncogene. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000112081 | SRSF3 | serine/arginine-rich splicing factor 3 | 6428 | The protein encoded by this gene is a member of the serine/arginine (SR)-rich family of pre-mRNA splicing factors, which constitute part of the spliceosome. Each of these factors contains an RNA recognition motif (RRM) for binding RNA and an RS domain for binding other proteins. The RS domain is rich in serine and arginine residues and facilitates interaction between different SR splicing factors. In addition to being critical for mRNA splicing, the SR proteins have also been shown to be involved in mRNA export from the nucleus and in translation. Two transcript variants, one protein-coding and the other non-coding, have been found for this gene. |
| NA | ENSG00000124762 | CDKN1A | cyclin-dependent kinase inhibitor 1A | 1026 | This gene encodes a potent cyclin-dependent kinase inhibitor. The encoded protein binds to and inhibits the activity of cyclin-cyclin-dependent kinase2 or -cyclin-dependent kinase4 complexes, and thus functions as a regulator of cell cycle progression at G1. The expression of this gene is tightly controlled by the tumor suppressor protein p53, through which this protein mediates the p53-dependent cell cycle G1 phase arrest in response to a variety of stress stimuli. This protein can interact with proliferating cell nuclear antigen, a DNA polymerase accessory factor, and plays a regulatory role in S phase DNA replication and DNA damage repair. This protein was reported to be specifically cleaved by CASP3-like caspases, which thus leads to a dramatic activation of cyclin-dependent kinase2, and may be instrumental in the execution of apoptosis following caspase activation. Mice that lack this gene have the ability to regenerate damaged or missing tissue. Multiple alternatively spliced variants have been found for this gene. |
| NA | ENSG00000137168 | PPIL1 | peptidylprolyl isomerase like 1 | 51645 | This gene is a member of the cyclophilin family of peptidylprolyl isomerases (PPIases). The cyclophilins are a highly conserved, ubiquitous family, members of which play an important role in protein folding, immunosuppression by cyclosporin A, and infection of HIV-1 virions. Based on similarity to other PPIases, this protein could accelerate the folding of proteins and might catalyze the cis-trans isomerization of proline imidic peptide bonds in oligopeptides. |
| NA | ENSG00000198663 | C6orf89 | chromosome 6 open reading frame 89 | 221477 | NA |
| NA | ENSG00000137409 | MTCH1 | mitochondrial carrier 1 | 23787 | This gene encodes a member of the mitochondrial carrier family. The encoded protein is localized to the mitochondrion inner membrane and induces apoptosis independent of the proapoptotic proteins Bax and Bak. Pseudogenes on chromosomes 6 and 11 have been identified for this gene. Alternatively spliced transcript variants encoding multiple isoforms have been observed. |
| NA | ENSG00000226976 | COX6A1P2 | cytochrome c oxidase subunit VIa polypeptide 1 pseudogene 2 | ENSG00000226976 | NA |
| NA | ENSG00000137193 | PIM1 | Pim-1 proto-oncogene, serine/threonine kinase | 5292 | The protein encoded by this gene belongs to the Ser/Thr protein kinase family, and PIM subfamily. This gene is expressed primarily in B-lymphoid and myeloid cell lines, and is overexpressed in hematopoietic malignancies and in prostate cancer. It plays a role in signal transduction in blood cells, contributing to both cell proliferation and survival, and thus provides a selective advantage in tumorigenesis. Both the human and orthologous mouse genes have been reported to encode two isoforms (with preferential cellular localization) resulting from the use of alternative in-frame translation initiation codons, the upstream non-AUG (CUG) and downstream AUG codons (PMIDs:16186805, 1825810). |
| NA | ENSG00000065491 | TBC1D22B | TBC1 domain family member 22B | 55633 | NA |
| NA | ENSG00000112130 | RNF8 | ring finger protein 8 | 9025 | The protein encoded by this gene contains a RING finger motif and an FHA domain. This protein has been shown to interact with several class II ubiquitin-conjugating enzymes (E2), including UBE2E1/UBCH6, UBE2E2, and UBE2E3, and may act as an ubiquitin ligase (E3) in the ubiquitination of certain nuclear proteins. This protein is also known to play a role in the DNA damage response and depletion of this protein causes cell growth inhibition and cell cycle arrest. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000137200 | CMTR1 | cap methyltransferase 1 | 23070 | NA |
| NA | ENSG00000183826 | BTBD9 | BTB domain containing 9 | 114781 | This locus encodes a BTB/POZ domain-containing protein. This domain is known to be involved in protein-protein interactions. Polymorphisms at this locus have been reported to be associated with susceptibility to Restless Legs Syndrome and may also be associated with Tourette Syndrome. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000124767 | GLO1 | glyoxalase I | 2739 | The enzyme encoded by this gene is responsible for the catalysis and formation of S-lactoyl-glutathione from methylglyoxal condensation and reduced glutatione. Glyoxalase I is linked to HLA and is localized to 6p21.3-p21.1, between HLA and the centromere. |
| NA | ENSG00000112167 | SAYSD1 | SAYSVFN motif domain containing 1 | 55776 | NA |
| NA | ENSG00000164626 | KCNK5 | potassium two pore domain channel subfamily K member 5 | 8645 | This gene encodes one of the members of the superfamily of potassium channel proteins containing two pore-forming P domains. The message for this gene is mainly expressed in the cortical distal tubules and collecting ducts of the kidney. The protein is highly sensitive to external pH and this, in combination with its expression pattern, suggests it may play an important role in renal potassium transport. |
| NA | ENSG00000124780 | KCNK17 | potassium two pore domain channel subfamily K member 17 | 89822 | The protein encoded by this gene belongs to the family of potassium channel proteins containing two pore-forming P domains. This channel is an open rectifier which primarily passes outward current under physiological K+ concentrations. This gene is activated at alkaline pH. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164627 | KIF6 | kinesin family member 6 | 221458 | NA |
| NA | ENSG00000124615 | MOCS1 | molybdenum cofactor synthesis 1 | 4337 | Molybdenum cofactor biosynthesis is a conserved pathway leading to the biological activation of molybdenum. The protein encoded by this gene is involved in this pathway. This gene was originally thought to produce a bicistronic mRNA with the potential to produce two proteins (MOCS1A and MOCS1B) from adjacent open reading frames. However, only the first open reading frame (MOCS1A) has been found to encode a protein from the putative bicistronic mRNA, whereas additional splice variants, whose full-length natures have yet to be determined, are likely to produce a fusion between the two open reading frames. This gene is defective in patients with molybdenum cofactor deficiency, type A. A related pseudogene has been identified on chromosome 16. |
| NA | ENSG00000124596 | OARD1 | O-acyl-ADP-ribose deacylase 1 | 221443 | NA |
| NA | ENSG00000001167 | NFYA | nuclear transcription factor Y subunit alpha | 4800 | The protein encoded by this gene is one subunit of a trimeric complex, forming a highly conserved transcription factor that binds to CCAAT motifs in the promoter regions in a variety of genes. Subunit A associates with a tight dimer composed of the B and C subunits, resulting in a trimer that binds to DNA with high specificity and affinity. The sequence specific interactions of the complex are made by the A subunit, suggesting a role as the regulatory subunit. In addition, there is evidence of post-transcriptional regulation in this gene product, either by protein degradation or control of translation. Further regulation is represented by alternative splicing in the glutamine-rich activation domain, with clear tissue-specific preferences for the two isoforms. |
| NA | ENSG00000137166 | FOXP4 | forkhead box P4 | 116113 | This gene belongs to subfamily P of the forkhead box (FOX) transcription factor family. Forkhead box transcription factors play important roles in the regulation of tissue- and cell type-specific gene transcription during both development and adulthood. Many members of the forkhead box gene family, including members of subfamily P, have roles in mammalian oncogenesis. This gene may play a role in the development of tumors of the kidney and larynx. Alternative splicing of this gene produces multiple transcript variants, some encoding different isoforms. |
| NA | ENSG00000112559 | MDFI | MyoD family inhibitor | 4188 | This protein is a transcription factor that negatively regulates other myogenic family proteins. Studies of the mouse homolog, I-mf, show that it interferes with myogenic factor function by masking nuclear localization signals and preventing DNA binding. Knockout mouse studies show defects in the formation of vertebrae and ribs that also involve cartilage formation in these structures. |
| NA | ENSG00000164663 | USP49 | ubiquitin specific peptidase 49 | 25862 | NA |
| NA | ENSG00000124641 | MED20 | mediator complex subunit 20 | 9477 | This gene encodes a component of the mediator complex (also known as TRAP, SMCC, DRIP, or ARC), a transcriptional coactivator complex thought to be required for the expression of almost all genes. The mediator complex is recruited by transcriptional activators or nuclear receptors to induce gene expression, by interacting with RNA polymerase II and promoting the formation of a transcriptional pre-initiation complex. A mutation in this gene has been associated with a novel infantile-onset neurodegenerative movement disorder. Alternatively spliced transcript variants have been identified. |
| NA | ENSG00000112578 | BYSL | bystin like | 705 | Bystin is expressed as a 2-kb major transcript and a 3.6-kb minor transcript in SNG-M cells and in human trophoblastic teratocarcinoma HT-H cells. Protein binding assays determined that bystin binds directly to trophinin and tastin, and that binding is enhanced when cytokeratins 8 and 18 are present. Immunocytochemistry of HT-H cells showed that bystin colocalizes with trophinin, tastin, and the cytokeratins, suggesting that these molecules form a complex in trophectoderm cells at the time of implantation. Using immunohistochemistry it was determined that trophinin and bystin are found in the placenta from the sixth week of pregnancy. Both proteins were localized in the cytoplasm of the syncytiotrophoblast in the chorionic villi and in endometrial decidual cells at the uteroplacental interface. After week 10, the levels of trophinin, tastin, and bystin decreased and then disappeared from placental villi. |
| NA | ENSG00000112576 | CCND3 | cyclin D3 | 896 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance through the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. This cyclin forms a complex with and functions as a regulatory subunit of CDK4 or CDK6, whose activtiy is required for cell cycle G1/S transition. This protein has been shown to interact with and be involved in the phosphorylation of tumor suppressor protein Rb. The CDK4 activity associated with this cyclin was reported to be necessary for cell cycle progression through G2 phase into mitosis after UV radiation. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137413 | TAF8 | TATA-box binding protein associated factor 8 | 129685 | This gene encodes one of several TATA-binding protein (TBP)-associated factors (TAFs), which are integral subunits of the general transcription factor complex TFIID. TFIID recognizes the core promoter of many genes and nucleates the assembly of a transcription preinitiation complex containing RNA polymerase II and other initiation factors. The protein encoded by this gene contains an H4-like histone fold domain, and interacts with several subunits of TFIID including TBP and the histone-fold protein TAF10. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000188112 | C6orf132 | chromosome 6 open reading frame 132 | 647024 | NA |
| NA | ENSG00000048544 | MRPS10 | mitochondrial ribosomal protein S10 | 55173 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S10P family. Pseudogenes corresponding to this gene are found on chromosomes 1q, 3p, and 9p. |
| NA | ENSG00000124496 | TRERF1 | transcriptional regulating factor 1 | 55809 | This gene encodes a zinc-finger transcriptional regulating protein which interacts with CBP/p300 to regulate the human gene CYP11A1. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000024048 | UBR2 | ubiquitin protein ligase E3 component n-recognin 2 | 23304 | This gene encodes an E3 ubiquitin ligase of the N-end rule proteolytic pathway that targets proteins with destabilizing N-terminal residues for polyubiquitylation and proteasome-mediated degradation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000112624 | GLTSCR1L | GLTSCR1 like | 23506 | NA |
| NA | ENSG00000146223 | RPL7L1 | ribosomal protein L7 like 1 | 285855 | NA |
| NA | ENSG00000221821 | C6orf226 | chromosome 6 open reading frame 226 | 441150 | NA |
| NA | ENSG00000137161 | CNPY3 | canopy FGF signaling regulator 3 | 10695 | This gene encodes a protein that binds members of the toll-like receptor protein family and functions as a chaperone to aid in folding and export of these proteins. Alternative splicing results in multiple transcript variants. Naturally occuring readthrough transcription occurs between this locus and the downstream GNMT (glycine N-methyltransferase) gene and is represented with GeneID:107080644. |
| NA | ENSG00000124587 | PEX6 | peroxisomal biogenesis factor 6 | 5190 | This gene encodes a member of the AAA (ATPases associated with diverse cellular activities) family of ATPases. This member is a predominantly cytoplasmic protein, which plays a direct role in peroxisomal protein import and is required for PTS1 (peroxisomal targeting signal 1, a C-terminal tripeptide of the sequence ser-lys-leu) receptor activity. Mutations in this gene cause peroxisome biogenesis disorders of complementation group 4 and complementation group 6. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000112640 | PPP2R5D | protein phosphatase 2 regulatory subunit B’, delta | 5528 | The product of this gene belongs to the phosphatase 2A regulatory subunit B family. Protein phosphatase 2A is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The B regulatory subunit might modulate substrate selectivity and catalytic activity. This gene encodes a delta isoform of the regulatory subunit B56 subfamily. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000124702 | KLHDC3 | kelch domain containing 3 | 116138 | The protein encoded by this gene contains six repeated kelch motifs that are structurally similar to recombination activating gene 2, a protein involved in the activation of the V(D)J recombination. In mouse, this gene is found to be expressed specifically in testis. Its expression in pachytene spermatocytes is localized to cytoplasma and meiotic chromatin, suggesting that this gene may be involved in meiotic recombination. |
| NA | ENSG00000124541 | RRP36 | ribosomal RNA processing 36 | 88745 | RRP36 functions at an early stage in the processing of 35S preribosomal RNA into the mature 18S species (Gerus et al., 2010 [PubMed 20038530]). |
| NA | ENSG00000044090 | CUL7 | cullin 7 | 9820 | The protein encoded by this gene is a component of an E3 ubiquitin-protein ligase complex. The encoded protein interacts with TP53, CUL9, and FBXW8 proteins. Defects in this gene are a cause of 3M syndrome type 1 (3M1). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137171 | KLC4 | kinesin light chain 4 | 89953 | NA |
| NA | ENSG00000112651 | MRPL2 | mitochondrial ribosomal protein L2 | 51069 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein that belongs to the EcoL2 ribosomal protein family. A pseudogene corresponding to this gene is found on chromosome 12q. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000112655 | PTK7 | protein tyrosine kinase 7 (inactive) | 5754 | This gene encodes a member of the receptor protein tyrosine kinase family of proteins that transduce extracellular signals across the cell membrane. The encoded protein lacks detectable catalytic tyrosine kinase activity, is involved in the Wnt signaling pathway and plays a role in multiple cellular processes including polarity and adhesion. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000112658 | SRF | serum response factor | 6722 | This gene encodes a ubiquitous nuclear protein that stimulates both cell proliferation and differentiation. It is a member of the MADS (MCM1, Agamous, Deficiens, and SRF) box superfamily of transcription factors. This protein binds to the serum response element (SRE) in the promoter region of target genes. This protein regulates the activity of many immediate-early genes, for example c-fos, and thereby participates in cell cycle regulation, apoptosis, cell growth, and cell differentiation. This gene is the downstream target of many pathways; for example, the mitogen-activated protein kinase pathway (MAPK) that acts through the ternary complex factors (TCFs). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000112659 | CUL9 | cullin 9 | 23113 | NA |
| NA | ENSG00000146216 | TTBK1 | tau tubulin kinase 1 | 84630 | NA |
| NA | ENSG00000146215 | CRIP3 | cysteine rich protein 3 | 401262 | NA |
| NA | ENSG00000171467 | ZNF318 | zinc finger protein 318 | 24149 | NA |
| NA | ENSG00000124574 | ABCC10 | ATP binding cassette subfamily C member 10 | 89845 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, and White). This ABC full-transporter is a member of the MRP subfamily which is involved in multi-drug resistance. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137221 | TJAP1 | tight junction associated protein 1 | 93643 | This gene encodes a tight junction-associated protein. Incorporation of the encoded protein into tight junctions occurs at a late stage of formation of the junctions. The encoded protein localizes to the Golgi and may function in vesicle trafficking. Alternatively spliced transcript variants have been described. A related pseudogene exists on the X chromosome. |
| NA | ENSG00000137207 | YIPF3 | Yip1 domain family member 3 | 25844 | NA |
| NA | ENSG00000124571 | XPO5 | exportin 5 | 57510 | This gene encodes a member of the karyopherin family that is required for the transport of small RNAs and double-stranded RNA-binding proteins from the nucleus to the cytoplasm. The encoded protein translocates cargo through the nuclear pore complex in a RanGTP-dependent process. |
| NA | ENSG00000170734 | POLH | polymerase (DNA) eta | 5429 | This gene encodes a member of the Y family of specialized DNA polymerases. It copies undamaged DNA with a lower fidelity than other DNA-directed polymerases. However, it accurately replicates UV-damaged DNA; when thymine dimers are present, this polymerase inserts the complementary nucleotides in the newly synthesized DNA, thereby bypassing the lesion and suppressing the mutagenic effect of UV-induced DNA damage. This polymerase is thought to be involved in hypermutation during immunoglobulin class switch recombination. Mutations in this gene result in XPV, a variant type of xeroderma pigmentosum. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000172432 | GTPBP2 | GTP binding protein 2 | 54676 | GTP-binding proteins, or G proteins, constitute a superfamily capable of binding GTP or GDP. G proteins are activated by binding GTP and are inactivated by hydrolyzing GTP to GDP. This general mechanism enables G proteins to perform a wide range of biologic activities. |
| NA | ENSG00000124688 | MAD2L1BP | MAD2L1 binding protein | 9587 | The protein encoded by this gene was identified as a binding protein of the MAD2 mitotic arrest deficient-like 1 (MAD2/MAD2L1). MAD2 is a key component of the spindle checkpoint that delays the onset of anaphase until all the kinetochores are attached to the spindle. This protein may interact with the spindle checkpoint and coordinate cell cycle events in late mitosis. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000096080 | MRPS18A | mitochondrial ribosomal protein S18A | 55168 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S18P family. The encoded protein is one of three that has significant sequence similarity to bacterial S18 proteins. The primary sequences of the three human mitochondrial S18 proteins are no more closely related to each other than they are to the prokaryotic S18 proteins. A pseudogene corresponding to this gene is found on chromosome 3p. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000112715 | VEGFA | vascular endothelial growth factor A | 7422 | This gene is a member of the PDGF/VEGF growth factor family. It encodes a heparin-binding protein, which exists as a disulfide-linked homodimer. This growth factor induces proliferation and migration of vascular endothelial cells, and is essential for both physiological and pathological angiogenesis. Disruption of this gene in mice resulted in abnormal embryonic blood vessel formation. This gene is upregulated in many known tumors and its expression is correlated with tumor stage and progression. Elevated levels of this protein are found in patients with POEMS syndrome, also known as Crow-Fukase syndrome. Allelic variants of this gene have been associated with microvascular complications of diabetes 1 (MVCD1) and atherosclerosis. Alternatively spliced transcript variants encoding different isoforms have been described. There is also evidence for alternative translation initiation from upstream non-AUG (CUG) codons resulting in additional isoforms. A recent study showed that a C-terminally extended isoform is produced by use of an alternative in-frame translation termination codon via a stop codon readthrough mechanism, and that this isoform is antiangiogenic. Expression of some isoforms derived from the AUG start codon is regulated by a small upstream open reading frame, which is located within an internal ribosome entry site. |
| NA | ENSG00000137216 | TMEM63B | transmembrane protein 63B | 55362 | NA |
| NA | ENSG00000112759 | SLC29A1 | solute carrier family 29 member 1 (Augustine blood group) | 2030 | This gene is a member of the equilibrative nucleoside transporter family. The gene encodes a transmembrane glycoprotein that localizes to the plasma and mitochondrial membranes and mediates the cellular uptake of nucleosides from the surrounding medium. The protein is categorized as an equilibrative (as opposed to concentrative) transporter that is sensitive to inhibition by nitrobenzylthioinosine (NBMPR). Nucleoside transporters are required for nucleotide synthesis in cells that lack de novo nucleoside synthesis pathways, and are also necessary for the uptake of cytotoxic nucleosides used for cancer and viral chemotherapies. Multiple alternatively spliced variants, encoding the same protein, have been found for this gene. |
| NA | ENSG00000096384 | HSP90AB1 | heat shock protein 90kDa alpha family class B member 1 | 3326 | This gene encodes a member of the heat shock protein 90 family; these proteins are involved in signal transduction, protein folding and degradation and morphological evolution. This gene encodes the constitutive form of the cytosolic 90 kDa heat-shock protein and is thought to play a role in gastric apoptosis and inflammation. Alternative splicing results in multiple transcript variants. Pseudogenes have been identified on multiple chromosomes. |
| NA | ENSG00000157593 | SLC35B2 | solute carrier family 35 member B2 | 347734 | Sulfotransferases (e.g., SULT4A1; MIM 608359) use an activated form of sulfate, 3-prime-phosphoadenosine 5-prime-phosphosulfate (PAPS), as a common sulfate donor for sulfation of glycoproteins, proteoglycans, and glycolipids in the endoplasmic reticulum and Golgi apparatus. SLC35B2 is located in the microsomal membrane and transports PAPS from the cytosol, where it is synthesized, into the Golgi lumen (Kamiyama et al., 2003 [PubMed 12716889]). |
| NA | ENSG00000146232 | NFKBIE | NFKB inhibitor epsilon | 4794 | The protein encoded by this gene binds to components of NF-kappa-B, trapping the complex in the cytoplasm and preventing it from activating genes in the nucleus. Phosphorylation of the encoded protein targets it for destruction by the ubiquitin pathway, which activates NF-kappa-B by making it available to translocate to the nucleus. |
| NA | ENSG00000178233 | TMEM151B | transmembrane protein 151B | 441151 | NA |
| NA | ENSG00000124608 | AARS2 | alanyl-tRNA synthetase 2, mitochondrial | 57505 | The protein encoded by this gene belongs to the class-II aminoacyl-tRNA synthetase family. Aminoacyl-tRNA synthetases play critical roles in mRNA translation by charging tRNAs with their cognate amino acids. The encoded protein is a mitochondrial enzyme that specifically aminoacylates alanyl-tRNA. Mutations in this gene are a cause of combined oxidative phosphorylation deficiency 8. |
| NA | ENSG00000096401 | CDC5L | cell division cycle 5 like | 988 | The protein encoded by this gene shares a significant similarity with Schizosaccharomyces pombe cdc5 gene product, which is a cell cycle regulator important for G2/M transition. This protein has been demonstrated to act as a positive regulator of cell cycle G2/M progression. It was also found to be an essential component of a non-snRNA spliceosome, which contains at least five additional protein factors and is required for the second catalytic step of pre-mRNA splicing. |
| NA | ENSG00000196284 | SUPT3H | SPT3 homolog, SAGA and STAGA complex component | 8464 | NA |
| NA | ENSG00000001561 | ENPP4 | ectonucleotide pyrophosphatase/phosphodiesterase 4 (putative) | 22875 | NA |
| NA | ENSG00000172348 | RCAN2 | regulator of calcineurin 2 | 10231 | This gene encodes a member of the regulator of calcineurin (RCAN) protein family. These proteins play a role in many physiological processes by binding to the catalytic domain of calcineurin A, inhibiting calcineurin-mediated nuclear translocation of the transcription factor NFATC1. Expression of this gene in skin fibroblasts is upregulated by thyroid hormone, and the encoded protein may also play a role in endothelial cell function and angiogenesis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000146233 | CYP39A1 | cytochrome P450 family 39 subfamily A member 1 | 51302 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. This endoplasmic reticulum protein is involved in the conversion of cholesterol to bile acids. Its substrates include the oxysterols 25-hydroxycholesterol, 27-hydroxycholesterol and 24-hydroxycholesterol. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000153291 | SLC25A27 | solute carrier family 25 member 27 | 9481 | Mitochondrial uncoupling proteins (UCP) are members of the larger family of mitochondrial anion carrier proteins (MACP). UCPs separate oxidative phosphorylation from ATP synthesis with energy dissipated as heat, also referred to as the mitochondrial proton leak. UCPs facilitate the transfer of anions from the inner to the outer mitochondrial membrane and the return transfer of protons from the outer to the inner mitochondrial membrane. They also reduce the mitochondrial membrane potential in mammalian cells. Tissue specificity occurs for the different UCPs and the exact methods of how UCPs transfer H+/OH- are not known. UCPs contain the three homologous protein domains of MACPs. Transcripts of this gene are only detected in brain tissue and are specifically modulated by various environmental conditions. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000146070 | PLA2G7 | phospholipase A2 group VII | 7941 | The protein encoded by this gene is a secreted enzyme that catalyzes the degradation of platelet-activating factor to biologically inactive products. Defects in this gene are a cause of platelet-activating factor acetylhydrolase deficiency. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000146072 | TNFRSF21 | tumor necrosis factor receptor superfamily member 21 | 27242 | This gene encodes a member of the tumor necrosis factor receptor superfamily. The encoded protein activates nuclear factor kappa-B and mitogen-activated protein kinase 8 (also called c-Jun N-terminal kinase 1), and induces cell apoptosis. Through its death domain, the encoded receptor interacts with tumor necrosis factor receptor type 1-associated death domain (TRADD) protein, which is known to mediate signal transduction of tumor necrosis factor receptors. Knockout studies in mice suggest that this gene plays a role in T-helper cell activation, and may be involved in inflammation and immune regulation. |
| NA | ENSG00000198087 | CD2AP | CD2-associated protein | 23607 | This gene encodes a scaffolding molecule that regulates the actin cytoskeleton. The protein directly interacts with filamentous actin and a variety of cell membrane proteins through multiple actin binding sites, SH3 domains, and a proline-rich region containing binding sites for SH3 domains. The cytoplasmic protein localizes to membrane ruffles, lipid rafts, and the leading edges of cells. It is implicated in dynamic actin remodeling and membrane trafficking that occurs during receptor endocytosis and cytokinesis. Haploinsufficiency of this gene is implicated in susceptibility to glomerular disease. |
| NA | ENSG00000146085 | MUT | methylmalonyl-CoA mutase | 4594 | This gene encodes the mitochondrial enzyme methylmalonyl Coenzyme A mutase. In humans, the product of this gene is a vitamin B12-dependent enzyme which catalyzes the isomerization of methylmalonyl-CoA to succinyl-CoA, while in other species this enzyme may have different functions. Mutations in this gene may lead to various types of methylmalonic aciduria. |
| NA | ENSG00000031691 | CENPQ | centromere protein Q | 55166 | CENPQ is a subunit of a CENPH (MIM 605607)-CENPI (MIM 300065)-associated centromeric complex that targets CENPA (MIM 117139) to centromeres and is required for proper kinetochore function and mitotic progression (Okada et al., 2006 [PubMed 16622420]). |
| NA | ENSG00000197261 | C6orf141 | chromosome 6 open reading frame 141 | 135398 | NA |
| NA | ENSG00000112118 | MCM3 | minichromosome maintenance complex component 3 | 4172 | The protein encoded by this gene is one of the highly conserved mini-chromosome maintenance proteins (MCM) that are involved in the initiation of eukaryotic genome replication. The hexameric protein complex formed by MCM proteins is a key component of the pre-replication complex (pre_RC) and may be involved in the formation of replication forks and in the recruitment of other DNA replication related proteins. This protein is a subunit of the protein complex that consists of MCM2-7. It has been shown to interact directly with MCM5/CDC46. This protein also interacts with and is acetylated by MCM3AP, a chromatin-associated acetyltransferase. The acetylation of this protein inhibits the initiation of DNA replication and cell cycle progression. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000170915 | PAQR8 | progestin and adipoQ receptor family member VIII | 85315 | NA |
| NA | ENSG00000096093 | EFHC1 | EF-hand domain (C-terminal) containing 1 | 114327 | This gene encodes an EF-hand-containing calcium binding protein. The encoded protein likely plays a role in calcium homeostasis. Mutations in this gene have been associated with susceptibility to juvenile myoclonic epilepsy and juvenile absence epilepsy. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000065308 | TRAM2 | translocation associated membrane protein 2 | 9697 | TRAM2 is a component of the translocon, a gated macromolecular channel that controls the posttranslational processing of nascent secretory and membrane proteins at the endoplasmic reticulum (ER) membrane. |
| NA | ENSG00000096092 | TMEM14A | transmembrane protein 14A | 28978 | NA |
| NA | ENSG00000112144 | ICK | intestinal cell (MAK-like) kinase | 22858 | Eukaryotic protein kinases are enzymes that belong to a very extensive family of proteins which share a conserved catalytic core common with both serine/threonine and tyrosine protein kinases. This gene encodes an intestinal serine/threonine kinase harboring a dual phosphorylation site found in mitogen-activating protein (MAP) kinases. The protein localizes to the intestinal crypt region and is thought to be important in intestinal epithelial cell proliferation and differentiation. Alternative splicing has been observed at this locus and two variants, encoding the same isoform, have been identified. |
| NA | ENSG00000112146 | FBXO9 | F-box protein 9 | 26268 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class. Alternative splicing of this gene generates at least 3 transcript variants diverging at the 5’ terminus. |
| NA | ENSG00000012660 | ELOVL5 | ELOVL fatty acid elongase 5 | 60481 | This gene belongs to the ELO family. It is highly expressed in the adrenal gland and testis, and encodes a multi-pass membrane protein that is localized in the endoplasmic reticulum. This protein is involved in the elongation of long-chain polyunsaturated fatty acids. Mutations in this gene have been associated with spinocerebellar ataxia-38 (SCA38). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000001084 | GCLC | glutamate-cysteine ligase catalytic subunit | 2729 | Glutamate-cysteine ligase, also known as gamma-glutamylcysteine synthetase is the first rate-limiting enzyme of glutathione synthesis. The enzyme consists of two subunits, a heavy catalytic subunit and a light regulatory subunit. This locus encodes the catalytic subunit, while the regulatory subunit is derived from a different gene located on chromosome 1p22-p21. Mutations at this locus have been associated with hemolytic anemia due to deficiency of gamma-glutamylcysteine synthetase and susceptibility to myocardial infarction. |
| NA | ENSG00000137269 | LRRC1 | leucine rich repeat containing 1 | 55227 | NA |
| NA | ENSG00000124749 | COL21A1 | collagen type XXI alpha 1 | 81578 | This gene encodes the alpha chain of type XXI collagen, a member of the FACIT (fibril-associated collagens with interrupted helices) collagen family. Type XXI collagen is localized to tissues containing type I collagen and maintains the integrity of the extracellular matrix. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000151914 | DST | dystonin | 667 | This gene encodes a member of the plakin protein family of adhesion junction plaque proteins. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene, but the full-length nature of some variants has not been defined. It has been reported that some isoforms are expressed in neural and muscle tissue, anchoring neural intermediate filaments to the actin cytoskeleton, and some isoforms are expressed in epithelial tissue, anchoring keratin-containing intermediate filaments to hemidesmosomes. Consistent with the expression, mice defective for this gene show skin blistering and neurodegeneration. |
| NA | ENSG00000151917 | BEND6 | BEN domain containing 6 | 221336 | NA |
| NA | ENSG00000168116 | KIAA1586 | KIAA1586 | 57691 | NA |
| NA | ENSG00000112208 | BAG2 | BCL2 associated athanogene 2 | 9532 | BAG proteins compete with Hip for binding to the Hsc70/Hsp70 ATPase domain and promote substrate release. All the BAG proteins have an approximately 45-amino acid BAG domain near the C terminus but differ markedly in their N-terminal regions. The predicted BAG2 protein contains 211 amino acids. The BAG domains of BAG1, BAG2, and BAG3 interact specifically with the Hsc70 ATPase domain in vitro and in mammalian cells. All 3 proteins bind with high affinity to the ATPase domain of Hsc70 and inhibit its chaperone activity in a Hip-repressible manner. |
| NA | ENSG00000112210 | RAB23 | RAB23, member RAS oncogene family | 51715 | This gene encodes a small GTPase of the Ras superfamily. Rab proteins are involved in the regulation of diverse cellular functions associated with intracellular membrane trafficking, including autophagy and immune response to bacterial infection. The encoded protein may play a role in central nervous system development by antagonizing sonic hedgehog signaling. Disruption of this gene has been implicated in Carpenter syndrome as well as cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000146143 | PRIM2 | primase (DNA) subunit 2 | 5558 | This gene encodes the 58 kilodalton subunit of DNA primase, an enzyme that plays a key role in the replication of DNA. The encoded protein forms a heterodimer with a 49 kilodalton subunit. This heterodimer functions as a DNA-directed RNA polymerase to synthesize small RNA primers that are used to create Okazaki fragments on the lagging strand of the DNA. Alternative splicing of this gene results in multiple transcript variants. This gene has a related pseudogene, which is also present on chromosome 6. |
| NA | ENSG00000255633 | MTRNR2L9 | MT-RNR2-like 9 | ENSG00000255633 | NA |
| NA | ENSG00000112232 | KHDRBS2 | KH domain containing, RNA binding, signal transduction associated 2 | 202559 | NA |
| NA | ENSG00000198225 | FKBP1C | FK506 binding protein 1C | ENSG00000198225 | NA |
| NA | ENSG00000112245 | PTP4A1 | protein tyrosine phosphatase type IVA, member 1 | 7803 | This gene encodes a member of a small class of prenylated protein tyrosine phosphatases (PTPs), which contain a PTP domain and a characteristic C-terminal prenylation motif. The encoded protein is a cell signaling molecule that plays regulatory roles in a variety of cellular processes, including cell proliferation and migration. The protein may also be involved in cancer development and metastasis. This tyrosine phosphatase is a nuclear protein, but may associate with plasma membrane by means of its prenylation motif. Pseudogenes related to this gene are located on chromosomes 1, 2, 5, 7, 11 and X. |
| NA | ENSG00000118482 | PHF3 | PHD finger protein 3 | 23469 | This gene encodes a member of a PHD finger-containing gene family. This gene may function as a transcription factor and may be involved in glioblastomas development. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000168216 | LMBRD1 | LMBR1 domain containing 1 | 55788 | This gene encodes a lysosomal membrane protein that may be involved in the transport and metabolism of cobalamin. This protein also interacts with the large form of the hepatitis delta antigen and may be required for the nucleocytoplasmic shuttling of the hepatitis delta virus. Mutations in this gene are associated with the vitamin B12 metabolism disorder termed, homocystinuria-megaloblastic anemia complementation type F. |
| NA | ENSG00000112280 | COL9A1 | collagen type IX alpha 1 | 1297 | This gene encodes one of the three alpha chains of type IX collagen, which is a minor (5-20%) collagen component of hyaline cartilage. Type IX collagen is usually found in tissues containing type II collagen, a fibrillar collagen. Studies in knockout mice have shown that synthesis of the alpha 1 chain is essential for assembly of type IX collagen molecules, a heterotrimeric molecule, and that lack of type IX collagen is associated with early onset osteoarthritis. Mutations in this gene are associated with osteoarthritis in humans, with multiple epiphyseal dysplasia, 6, a form of chondrodysplasia, and with Stickler syndrome, a disease characterized by ophthalmic, orofacial, articular, and auditory defects. Two transcript variants that encode different isoforms have been identified for this gene. |
| NA | ENSG00000082269 | FAM135A | family with sequence similarity 135 member A | 57579 | NA |
| NA | ENSG00000154079 | SDHAF4 | succinate dehydrogenase complex assembly factor 4 | 135154 | NA |
| NA | ENSG00000112305 | SMAP1 | small ArfGAP 1 | 60682 | The protein encoded by this gene is similar to the mouse stromal membrane-associated protein-1. This similarity suggests that this human gene product is also a type II membrane glycoprotein involved in the erythropoietic stimulatory activity of stromal cells. Alternate splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000112309 | B3GAT2 | beta-1,3-glucuronyltransferase 2 | 135152 | The product of this gene is a transmembrane protein belonging to the glucuronyltransferase family, and catalyzes the transfer of a beta-1,3 linked glucuronic acid to a terminal galactose in different glycoproteins or glycolipids containing a Gal-beta-1-4GlcNAc or Gal-beta-1-3GlcNAc residue. The encoded protein is involved in the synthesis of the human natural killer-1 (HNK-1) carbohydrate epitope, a sulfated trisaccharide implicated in cellular migration and adhesion in the nervous system. |
| NA | ENSG00000119900 | OGFRL1 | opioid growth factor receptor-like 1 | 79627 | NA |
| NA | ENSG00000079841 | RIMS1 | regulating synaptic membrane exocytosis 1 | 22999 | The protein encoded by this gene is a RAS gene superfamily member that regulates synaptic vesicle exocytosis. This gene also plays a role in the regulation of voltage-gated calcium channels during neurotransmitter and insulin release. Mutations have suggested a role cognition and have been identified as the cause of cone-rod dystrophy type 7. Multiple transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000135314 | KHDC1 | KH homology domain containing 1 | 80759 | NA |
| NA | ENSG00000203909 | DPPA5 | developmental pluripotency associated 5 | 340168 | This gene encodes a protein that may function in the control of cell pluripotency and early embryogenesis. Expression of this gene is a specific marker for pluripotent stem cells. Pseudogenes of this gene are located on the short arm of chromosome 10 and the long arm of chromosomes 14 and 19. |
| NA | ENSG00000164430 | MB21D1 | Mab-21 domain containing 1 | 115004 | NA |
| NA | ENSG00000135297 | MTO1 | mitochondrial tRNA translation optimization 1 | 25821 | This gene encodes a mitochondrial protein thought to be involved in mitochondrial tRNA modification. The encoded protein may also play a role in the expression of the non-syndromic and aminoglycoside-induced deafness phenotypes associated with a specific mutation in the mitochondrial 12S rRNA gene. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000156508 | EEF1A1 | eukaryotic translation elongation factor 1 alpha 1 | 1915 | This gene encodes an isoform of the alpha subunit of the elongation factor-1 complex, which is responsible for the enzymatic delivery of aminoacyl tRNAs to the ribosome. This isoform (alpha 1) is expressed in brain, placenta, lung, liver, kidney, and pancreas, and the other isoform (alpha 2) is expressed in brain, heart and skeletal muscle. This isoform is identified as an autoantigen in 66% of patients with Felty syndrome. This gene has been found to have multiple copies on many chromosomes, some of which, if not all, represent different pseudogenes. |
| NA | ENSG00000119899 | SLC17A5 | solute carrier family 17 member 5 | 26503 | This gene encodes a membrane transporter that exports free sialic acids that have been cleaved off of cell surface lipids and proteins from lysosomes. Mutations in this gene cause sialic acid storage diseases, including infantile sialic acid storage disorder and and Salla disease, an adult form. |
| NA | ENSG00000156535 | CD109 | CD109 molecule | 135228 | This gene encodes a glycosyl phosphatidylinositol (GPI)-linked glycoprotein that localizes to the surface of platelets, activated T-cells, and endothelial cells. The protein binds to and negatively regulates signalling by transforming growth factor beta (TGF-beta). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000112697 | TMEM30A | transmembrane protein 30A | 55754 | NA |
| NA | ENSG00000118407 | FILIP1 | filamin A interacting protein 1 | 27145 | NA |
| NA | ENSG00000112701 | SENP6 | SUMO1/sentrin specific peptidase 6 | 26054 | Ubiquitin-like molecules (UBLs), such as SUMO1 (UBL1; MIM 601912), are structurally related to ubiquitin (MIM 191339) and can be ligated to target proteins in a similar manner as ubiquitin. However, covalent attachment of UBLs does not result in degradation of the modified proteins. SUMO1 modification is implicated in the targeting of RANGAP1 (MIM 602362) to the nuclear pore complex, as well as in stabilization of I-kappa-B-alpha (NFKBIA; MIM 164008) from degradation by the 26S proteasome. Like ubiquitin, UBLs are synthesized as precursor proteins, with 1 or more amino acids following the C-terminal glycine-glycine residues of the mature UBL protein. Thus, the tail sequences of the UBL precursors need to be removed by UBL-specific proteases, such as SENP6, prior to their conjugation to target proteins (Kim et al., 2000 [PubMed 10799485]). SENPs also display isopeptidase activity for deconjugation of SUMO-conjugated substrates (Lima and Reverter, 2008 [PubMed 18799455]). |
| NA | ENSG00000146243 | IRAK1BP1 | interleukin 1 receptor associated kinase 1 binding protein 1 | 134728 | NA |
| NA | ENSG00000146247 | PHIP | pleckstrin homology domain interacting protein | 55023 | PHIP binds the pleckstrin homology (PH) domain of insulin receptor substrate-1 (IRS1; MIM 147545), modulates insulin signaling, and plays a role in pancreatic beta cell growth and survival (Farhang-Fallah et al., 2000 [PubMed 11018022]; Podcheko et al., 2007 [PubMed 17636024]). |
| NA | ENSG00000118418 | HMGN3 | high mobility group nucleosomal binding domain 3 | 9324 | The protein encoded by this gene binds thyroid hormone receptor beta in the presence of thyroid hormone. The encoded protein, a member of the HMGN protein family, is thought to reduce the compactness of the chromatin fiber in nucleosomes, thereby enhancing transcription from chromatin templates. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. There is a related pseudogene on chromosome 1. |
| NA | ENSG00000135338 | LCA5 | Leber congenital amaurosis 5 | 167691 | This gene encodes a protein that is thought to be involved in centrosomal or ciliary functions. Mutations in this gene cause Leber congenital amaurosis type V. Alternatively spliced transcript variants are described. |
| NA | ENSG00000198478 | SH3BGRL2 | SH3 domain binding glutamate rich protein like 2 | 83699 | NA |
| NA | ENSG00000118402 | ELOVL4 | ELOVL fatty acid elongase 4 | 6785 | This gene encodes a membrane-bound protein which is a member of the ELO family, proteins which participate in the biosynthesis of fatty acids. Consistent with the expression of the encoded protein in photoreceptor cells of the retina, mutations and small deletions in this gene are associated with Stargardt-like macular dystrophy (STGD3) and autosomal dominant Stargardt-like macular dystrophy (ADMD), also referred to as autosomal dominant atrophic macular degeneration. |
| NA | ENSG00000112742 | TTK | TTK protein kinase | 7272 | This gene encodes a dual specificity protein kinase with the ability to phosphorylate tyrosine, serine and threonine. Associated with cell proliferation, this protein is essential for chromosome alignment at the centromere during mitosis and is required for centrosome duplication. It has been found to be a critical mitotic checkpoint protein for accurate segregation of chromosomes during mitosis. Tumorigenesis may occur when this protein fails to degrade and produces excess centrosomes resulting in aberrant mitotic spindles. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000083123 | BCKDHB | branched chain keto acid dehydrogenase E1, beta polypeptide | 594 | This gene encodes the E1 beta subunit of branched-chain keto acid dehydrogenase, which is a multienzyme complex associated with the inner membrane of mitochondria. This enzyme complex functions in the catabolism of branched-chain amino acids. Mutations in this gene have been associated with maple syrup urine disease (MSUD), type 1B, a disease characterized by a maple syrup odor to the urine in addition to mental and physical retardation and feeding problems. Alternative splicing at this locus results in multiple transcript variants. |
| NA | ENSG00000112773 | FAM46A | family with sequence similarity 46 member A | 55603 | NA |
| NA | ENSG00000005700 | IBTK | inhibitor of Bruton tyrosine kinase | 25998 | Bruton tyrosine kinase (BTK) is a protein tyrosine kinase that is expressed in B cells, macrophages, and neutrophils. The protein encoded by this gene binds to BTK and downregulates BTK’s kinase activity. In addition, the encoded protein disrupts BTK-mediated calcium mobilization and negatively regulates the activation of nuclear factor-kappa-B-driven transcription. This gene has a pseudogene on chromosome 18. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000146242 | TPBG | trophoblast glycoprotein | 7162 | This gene encodes a leucine-rich transmembrane glycoprotein that may be involved in cell adhesion. The encoded protein is an oncofetal antigen that is specific to trophoblast cells. In adults this protein is highly expressed in many tumor cells and is associated with poor clinical outcome in numerous cancers. Alternate splicing in the 5’ UTR results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000083097 | DOPEY1 | dopey family member 1 | 23033 | NA |
| NA | ENSG00000013392 | RWDD2A | RWD domain containing 2A | 112611 | NA |
| NA | ENSG00000065833 | ME1 | malic enzyme 1, NADP(+)-dependent, cytosolic | 4199 | This gene encodes a cytosolic, NADP-dependent enzyme that generates NADPH for fatty acid biosynthesis. The activity of this enzyme, the reversible oxidative decarboxylation of malate, links the glycolytic and citric acid cycles. The regulation of expression for this gene is complex. Increased expression can result from elevated levels of thyroid hormones or by higher proportions of carbohydrates in the diet. |
| NA | ENSG00000146250 | PRSS35 | protease, serine 35 | 167681 | NA |
| NA | ENSG00000203877 | RIPPLY2 | ripply transcriptional repressor 2 | 134701 | This gene encodes a nuclear protein that belongs to a novel family of proteins required for vertebrate somitogenesis. Members of this family have a tetrapeptide WRPW motif that is required for interaction with the transcriptional repressor Groucho and a carboxy-terminal Ripply homology domain/Bowline-DSCR-Ledgerline conserved region required for transcriptional repression. Null mutant mice die soon after birth and display defects in axial skeleton segmentation due to defective somitogenesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000065615 | CYB5R4 | cytochrome b5 reductase 4 | 51167 | NCB5OR is a flavohemoprotein that contains functional domains found in both cytochrome b5 (CYB5A; MIM 613218) and CYB5 reductase (CYB5R3; MIM 613213) (Zhu et al., 1999 [PubMed 10611283]). |
| NA | ENSG00000135324 | MRAP2 | melanocortin 2 receptor accessory protein 2 | 112609 | NA |
| NA | ENSG00000135317 | SNX14 | sorting nexin 14 | 57231 | This gene encodes a member of the sorting nexin family. Members of this family have a phox (PX) phosphoinositide binding domain and are involved in intracellular trafficking. The encoded protein also contains a regulator of G protein signaling (RGS) domain. Regulator of G protein signaling family members are regulatory molecules that act as GTPase activating proteins for G alpha subunits of heterotrimeric G proteins. Alternate splicing results in transcript variants encoding distinct isoforms. |
| NA | ENSG00000135316 | SYNCRIP | synaptotagmin binding, cytoplasmic RNA interacting protein | 10492 | This gene encodes a member of the cellular heterogeneous nuclear ribonucleoprotein (hnRNP) family. hnRNPs are RNA binding proteins that complex with heterogeneous nuclear RNA (hnRNA) and regulate alternative splicing, polyadenylation, and other aspects of mRNA metabolism and transport. The encoded protein plays a role in multiple aspects of mRNA maturation and is associated with several multiprotein complexes including the apoB RNA editing-complex and survival of motor neurons (SMN) complex. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the short arm of chromosome 20. |
| NA | ENSG00000188994 | ZNF292 | zinc finger protein 292 | 23036 | NA |
| NA | ENSG00000111850 | SMIM8 | small integral membrane protein 8 | 57150 | NA |
| NA | ENSG00000111850 | LINC01590 | long intergenic non-protein coding RNA 1590 | 63914 | NA |
| TRUE | ENSG00000226524 | NA | NA | NA | NA |
| NA | ENSG00000164414 | SLC35A1 | solute carrier family 35 member A1 | 10559 | The protein encoded by this gene is found in the membrane of the Golgi apparatus, where it transports nucleotide sugars into the Golgi. One such nucleotide sugar is CMP-sialic acid, which is imported into the Golgi by the encoded protein and subsequently glycosylated. Defects in this gene are a cause of congenital disorder of glycosylation type 2F (CDG2F). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000146282 | RARS2 | arginyl-tRNA synthetase 2, mitochondrial | 57038 | This nuclear gene encodes a protein that localizes to the mitochondria, where it catalyzes the transfer of L-arginine to its cognate tRNA, an important step in translation of mitochondrially-encoded proteins. Defects in this gene are a cause of pontocerebellar hypoplasia type 6 (PCH6). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000135336 | ORC3 | origin recognition complex subunit 3 | 23595 | The origin recognition complex (ORC) is a highly conserved six subunits protein complex essential for the initiation of the DNA replication in eukaryotic cells. Studies in yeast demonstrated that ORC binds specifically to origins of replication and serves as a platform for the assembly of additional initiation factors such as Cdc6 and Mcm proteins. The protein encoded by this gene is a subunit of the ORC complex. Studies of a similar gene in Drosophila suggested a possible role of this protein in neuronal proliferation and olfactory memory. Alternatively spliced transcript variants encoding distinct isoforms have been reported for this gene. |
| NA | ENSG00000135334 | AKIRIN2 | akirin 2 | 55122 | NA |
| NA | ENSG00000146278 | PNRC1 | proline rich nuclear receptor coactivator 1 | 10957 | NA |
| NA | ENSG00000154548 | SRSF12 | serine/arginine-rich splicing factor 12 | 135295 | NA |
| NA | ENSG00000146281 | PM20D2 | peptidase M20 domain containing 2 | 135293 | NA |
| NA | ENSG00000198833 | UBE2J1 | ubiquitin conjugating enzyme E2 J1 | 51465 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. This enzyme is located in the membrane of the endoplasmic reticulum (ER) and may contribute to quality control ER-associated degradation by the ubiquitin-proteasome system. |
| NA | ENSG00000025039 | RRAGD | Ras related GTP binding D | 58528 | RRAGD is a monomeric guanine nucleotide-binding protein, or G protein. By binding GTP or GDP, small G proteins act as molecular switches in numerous cell processes and signaling pathways. |
| NA | ENSG00000135299 | ANKRD6 | ankyrin repeat domain 6 | 22881 | NA |
| NA | ENSG00000083099 | LYRM2 | LYR motif containing 2 | 57226 | NA |
| NA | ENSG00000112159 | MDN1 | midasin AAA ATPase 1 | 23195 | NA |
| NA | ENSG00000112182 | BACH2 | BTB domain and CNC homolog 2 | 60468 | NA |
| NA | ENSG00000135341 | MAP3K7 | mitogen-activated protein kinase kinase kinase 7 | 6885 | The protein encoded by this gene is a member of the serine/threonine protein kinase family. This kinase mediates the signaling transduction induced by TGF beta and morphogenetic protein (BMP), and controls a variety of cell functions including transcription regulation and apoptosis. In response to IL-1, this protein forms a kinase complex including TRAF6, MAP3K7P1/TAB1 and MAP3K7P2/TAB2; this complex is required for the activation of nuclear factor kappa B. This kinase can also activate MAPK8/JNK, MAP2K4/MKK4, and thus plays a role in the cell response to environmental stresses. Four alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000135333 | EPHA7 | EPH receptor A7 | 2045 | This gene belongs to the ephrin receptor subfamily of the protein-tyrosine kinase family. EPH and EPH-related receptors have been implicated in mediating developmental events, particularly in the nervous system. Receptors in the EPH subfamily typically have a single kinase domain and an extracellular region containing a Cys-rich domain and 2 fibronectin type III repeats. The ephrin receptors are divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. Increased expression of this gene is associated with multiple forms of carcinoma. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000172469 | MANEA | mannosidase endo-alpha | 79694 | N-glycosylation of proteins is initiated in the endoplasmic reticulum (ER) by the transfer of the preassembled oligosaccharide glucose-3-mannose-9-N-acetylglucosamine-2 from dolichyl pyrophosphate to acceptor sites on the target protein by an oligosaccharyltransferase complex. This core oligosaccharide is sequentially processed by several ER glycosidases and by an endomannosidase (E.C. 3.2.1.130), such as MANEA, in the Golgi. MANEA catalyzes the release of mono-, di-, and triglucosylmannose oligosaccharides by cleaving the alpha-1,2-mannosidic bond that links them to high-mannose glycans (Hamilton et al., 2005 [PubMed 15677381]). |
| NA | ENSG00000172461 | FUT9 | fucosyltransferase 9 (alpha (1,3) fucosyltransferase) | 10690 | The protein encoded by this gene belongs to the glycosyltransferase family. It is localized to the golgi, and catalyzes the last step in the biosynthesis of Lewis X (LeX) antigen, the addition of a fucose to precursor polysaccharides. This protein is one of the few fucosyltransferases that synthesizes the LeX oligosaccharide (CD15) expressed in the organ buds progressing in mesenchyma during embryogenesis. It is also responsible for the expression of CD15 in mature granulocytes. A common haplotype of this gene has also been associated with susceptibility to placental malaria infection. |
| NA | ENSG00000014123 | UFL1 | UFM1 specific ligase 1 | 23376 | NA |
| NA | ENSG00000112218 | GPR63 | G protein-coupled receptor 63 | 81491 | This gene encodes a G protein-coupled receptor. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000146263 | MMS22L | MMS22 like, DNA repair protein | 253714 | The protein encoded by this gene forms a complex with tonsoku-like, DNA repair protein (TONSL), and this complex recognizes and repairs DNA double-strand breaks at sites of stalled or collapsed replication forks. The encoded protein also can bind with the histone-associated protein NFKBIL2 to help regulate the chromatin state at stalled replication forks. Finally, this gene appears to be overexpressed in most lung and esophageal cancers. Multiple transcript variants exist for this gene, but the full-length nature of only one has been determined to date. |
| NA | ENSG00000112234 | FBXL4 | F-box and leucine-rich repeat protein 4 | 26235 | This gene encodes a member of the F-box protein family, which are characterized by an approximately 40 amino acid motif, the F-box. F-box proteins constitute one subunit of modular E3 ubiquitin ligase complexes, called SCF complexes, which function in phosphorylation-dependent ubiquitination. The F-box domain mediates protein-protein interactions and binds directly to S-phase kinase-associated protein 1. In addition to an F-box domain, the encoded protein contains at least 9 tandem leucine-rich repeats. The ubiquitin ligase complex containing the encoded protein may function in cell-cycle control by regulating levels of lysine-specific demethylase 4A. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000146267 | FAXC | failed axon connections homolog | 84553 | NA |
| NA | ENSG00000132423 | COQ3 | coenzyme Q3, methyltransferase | 51805 | Ubiquinone, also known as coenzyme Q, or Q, is a critical component of the electron transport pathways of both eukaryotes and prokaryotes (Jonassen and Clarke, 2000 [PubMed 10777520]). This lipid consists of a hydrophobic isoprenoid tail and a quinone head group. The tail varies in length depending on the organism, but its purpose is to anchor coenzyme Q to the membrane. The quinone head group is responsible for the activity of coenzyme Q in the respiratory chain. The S. cerevisiae COQ3 gene encodes an O-methyltransferase required for 2 steps in the biosynthetic pathway of coenzyme Q. This enzyme methylates an early coenzyme Q intermediate, 3,4-dihydroxy-5-polyprenylbenzoic acid, as well as the final intermediate in the pathway, converting demethyl-ubiquinone to coenzyme Q. The COQ3 gene product is also capable of methylating the distinct prokaryotic early intermediate 2-hydroxy-6-polyprenyl phenol. |
| NA | ENSG00000112237 | CCNC | cyclin C | 892 | The protein encoded by this gene is a member of the cyclin family of proteins. The encoded protein interacts with cyclin-dependent kinase 8 and induces the phophorylation of the carboxy-terminal domain of the large subunit of RNA polymerase II. The level of mRNAs for this gene peaks in the G1 phase of the cell cycle. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164418 | GRIK2 | glutamate ionotropic receptor kainate type subunit 2 | 2898 | Glutamate receptors are the predominant excitatory neurotransmitter receptors in the mammalian brain and are activated in a variety of normal neurophysiologic processes. This gene product belongs to the kainate family of glutamate receptors, which are composed of four subunits and function as ligand-activated ion channels. The subunit encoded by this gene is subject to RNA editing at multiple sites within the first and second transmembrane domains, which is thought to alter the structure and function of the receptor complex. Alternatively spliced transcript variants encoding different isoforms have also been described for this gene. Mutations in this gene have been associated with autosomal recessive mental retardation. |
| NA | ENSG00000085382 | HACE1 | HECT domain and ankyrin repeat containing E3 ubiquitin protein ligase 1 | 57531 | This gene encodes a HECT domain and ankyrin repeat-containing ubiquitin ligase. The encoded protein is involved in specific tagging of target proteins, leading to their subcellular localization or proteasomal degradation. The protein is a potential tumor suppressor and is involved in the pathophysiology of several tumors, including Wilm’s tumor. |
| NA | ENSG00000187772 | LIN28B | lin-28 homolog B | 389421 | The protein encoded by this gene belongs to the lin-28 family, which is characterized by the presence of a cold-shock domain and a pair of CCHC zinc finger domains. This gene is highly expressed in testis, fetal liver, placenta, and in primary human tumors and cancer cell lines. It is negatively regulated by microRNAs that target sites in the 3’ UTR, and overexpression of this gene in primary tumors is linked to the repression of let-7 family of microRNAs and derepression of let-7 targets, which facilitates cellular transformation. |
| NA | ENSG00000085377 | PREP | prolyl endopeptidase | 5550 | The protein encoded by this gene is a cytosolic prolyl endopeptidase that cleaves peptide bonds on the C-terminal side of prolyl residues within peptides that are up to approximately 30 amino acids long. Prolyl endopeptidases have been reported to be involved in the maturation and degradation of peptide hormones and neuropeptides. |
| NA | ENSG00000057663 | ATG5 | autophagy related 5 | 9474 | The protein encoded by this gene, in combination with autophagy protein 12, functions as an E1-like activating enzyme in a ubiquitin-like conjugating system. The encoded protein is involved in several cellular processes, including autophagic vesicle formation, mitochondrial quality control after oxidative damage, negative regulation of the innate antiviral immune response, lymphocyte development and proliferation, MHC II antigen presentation, adipocyte differentiation, and apoptosis. Several transcript variants encoding different protein isoforms have been found for this gene. |
| NA | ENSG00000112297 | AIM1 | absent in melanoma 1 | 202 | NA |
| NA | ENSG00000130347 | RTN4IP1 | reticulon 4 interacting protein 1 | 84816 | This gene encodes a mitochondrial protein that interacts with reticulon 4, which is a potent inhibitor of regeneration following spinal cord injury. This interaction may be important for reticulon-induced inhibition of neurite growth. Mutations in this gene can cause optic atrophy 10, with or without ataxia, mental retardation, and seizures. There is a pseudogene for this gene on chromosome 12. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000130349 | C6orf203 | chromosome 6 open reading frame 203 | 51250 | NA |
| NA | ENSG00000164494 | PDSS2 | prenyl (decaprenyl) diphosphate synthase, subunit 2 | 57107 | The protein encoded by this gene is an enzyme that synthesizes the prenyl side-chain of coenzyme Q, or ubiquinone, one of the key elements in the respiratory chain. The gene product catalyzes the formation of all trans-polyprenyl pyrophosphates from isopentyl diphosphate in the assembly of polyisoprenoid side chains, the first step in coenzyme Q biosynthesis. Defects in this gene are a cause of coenzyme Q10 deficiency. |
| NA | ENSG00000112320 | SOBP | sine oculis binding protein homolog | 55084 | The protein encoded by this gene is a nuclear zinc finger protein that is involved in development of the cochlea. Defects in this gene have also been linked to intellectual disability. |
| NA | ENSG00000025796 | SEC63 | SEC63 homolog, protein translocation regulator | 11231 | The Sec61 complex is the central component of the protein translocation apparatus of the endoplasmic reticulum (ER) membrane. The protein encoded by this gene and SEC62 protein are found to be associated with ribosome-free SEC61 complex. It is speculated that Sec61-Sec62-Sec63 may perform post-translational protein translocation into the ER. The Sec61-Sec62-Sec63 complex might also perform the backward transport of ER proteins that are subject to the ubiquitin-proteasome-dependent degradation pathway. The encoded protein is an integral membrane protein located in the rough ER. |
| NA | ENSG00000112335 | SNX3 | sorting nexin 3 | 8724 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein does not contain a coiled coil region, like most family members. This protein interacts with phosphatidylinositol-3-phosphate, and is involved in protein trafficking. A pseudogene of this gene is present on the sex chromosomes. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000135537 | LACE1 | lactation elevated 1 | 246269 | This gene encodes a protein with possible ATPase function. The protein contains a P-loop motif and a five-domain structure that is conserved in fly, yeast, and bacteria. Two conserved estrogen receptor binding sites are located within 2.5 kb of this gene. |
| NA | ENSG00000118689 | FOXO3 | forkhead box O3 | 2309 | This gene belongs to the forkhead family of transcription factors which are characterized by a distinct forkhead domain. This gene likely functions as a trigger for apoptosis through expression of genes necessary for cell death. Translocation of this gene with the MLL gene is associated with secondary acute leukemia. Alternatively spliced transcript variants encoding the same protein have been observed. |
| NA | ENSG00000118690 | ARMC2 | armadillo repeat containing 2 | 84071 | NA |
| NA | ENSG00000080546 | SESN1 | sestrin 1 | 27244 | This gene encodes a member of the sestrin family. Sestrins are induced by the p53 tumor suppressor protein and play a role in the cellular response to DNA damage and oxidative stress. The encoded protein mediates p53 inhibition of cell growth by activating AMP-activated protein kinase, which results in the inhibition of the mammalian target of rapamycin protein. The encoded protein also plays a critical role in antioxidant defense by regenerating overoxidized peroxiredoxins, and the expression of this gene is a potential marker for exposure to radiation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000183137 | CEP57L1 | centrosomal protein 57kDa-like 1 | 285753 | NA |
| NA | ENSG00000135587 | SMPD2 | sphingomyelin phosphodiesterase 2 | 6610 | This gene encodes a protein which was initially identified as a sphingomyelinase based on sequence similarity between bacterial sphingomyelinases and a yeast protein. Subsequent studies showed that its biological function is less likely to be as a sphingomyelinase and instead as a lysophospholipase. |
| NA | ENSG00000135596 | MICAL1 | microtubule associated monooxygenase, calponin and LIM domain containing 1 | 64780 | This gene encodes an enzyme that oxidizes methionine residues on actin, thereby promoting depolymerization of actin filaments. This protein interacts with and regulates signalling by NEDD9/CAS-L (neural precursor cell expressed, developmentally down-regulated 9). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000112365 | ZBTB24 | zinc finger and BTB domain containing 24 | 9841 | This gene encodes a protein similar to a protein in rodents which is induced by bone morphogenic protein 2 in vitro. |
| NA | ENSG00000155085 | AK9 | adenylate kinase 9 | 221264 | NA |
| NA | ENSG00000112367 | FIG4 | FIG4 phosphoinositide 5-phosphatase | 9896 | The protein encoded by this gene belongs to the SAC domain-containing protein gene family. The SAC domain, approximately 400 amino acids in length and consisting of seven conserved motifs, has been shown to possess phosphoinositide phosphatase activity. The yeast homolog, Sac1p, is involved in the regulation of various phosphoinositides, and affects diverse cellular functions such as actin cytoskeleton organization, Golgi function, and maintenance of vacuole morphology. Membrane-bound phosphoinositides function as signaling molecules and play a key role in vesicle trafficking in eukaryotic cells. Mutations in this gene have been associated with Charcot-Marie-Tooth disease, type 4J. |
| NA | ENSG00000112290 | WASF1 | WAS protein family member 1 | 8936 | The protein encoded by this gene, a member of the Wiskott-Aldrich syndrome protein (WASP)-family, plays a critical role downstream of Rac, a Rho-family small GTPase, in regulating the actin cytoskeleton required for membrane ruffling. It has been shown to associate with an actin nucleation core Arp2/3 complex while enhancing actin polymerization in vitro. Wiskott-Aldrich syndrome is a disease of the immune system, likely due to defects in regulation of actin cytoskeleton. Multiple alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000168438 | CDC40 | cell division cycle 40 | 51362 | Pre-mRNA splicing occurs in two sequential transesterification steps. The protein encoded by this gene is found to be essential for the catalytic step II in pre-mRNA splicing process. It is found in the spliceosome, and contains seven WD repeats, which function in protein-protein interactions. This protein has a sequence similarity to yeast Prp17 protein, which functions in two different cellular processes: pre-mRNA splicing and cell cycle progression. It suggests that this protein may play a role in cell cycle progression. |
| NA | ENSG00000155111 | CDK19 | cyclin-dependent kinase 19 | 23097 | This gene encodes a protein that is one of the components of the Mediator co-activator complex. The Mediator complex is a multi-protein complex required for transcriptional activation by DNA binding transcription factors of genes transcribed by RNA polymerase II. The protein encoded by this gene is similar to cyclin-dependent kinase 8 which can also be a component of the Mediator complex. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000123505 | AMD1 | adenosylmethionine decarboxylase 1 | 262 | This gene encodes an important intermediate enzyme in polyamine biosynthesis. The polyamines spermine, spermidine, and putrescine are low-molecular-weight aliphatic amines essential for cellular proliferation and tumor promotion. Multiple alternatively spliced transcript variants have been identified. Pseudogenes of this gene are found on chromosomes 5, 6, 10, X and Y. |
| NA | ENSG00000197498 | RPF2 | ribosome production factor 2 homolog | 84154 | NA |
| NA | ENSG00000112394 | SLC16A10 | solute carrier family 16 member 10 | 117247 | SLC16A10 is a member of a family of plasma membrane amino acid transporters that mediate the Na(+)-independent transport of aromatic amino acids across the plasma membrane. |
| NA | ENSG00000173214 | MFSD4B | major facilitator superfamily domain containing 4B | 91749 | NA |
| NA | ENSG00000009413 | REV3L | REV3 like, DNA directed polymerase zeta catalytic subunit | 5980 | NA |
| NA | ENSG00000056972 | TRAF3IP2 | TRAF3 interacting protein 2 | 10758 | This gene encodes a protein involved in regulating responses to cytokines by members of the Rel/NF-kappaB transcription factor family. These factors play a central role in innate immunity in response to pathogens, inflammatory signals and stress. This gene product interacts with TRAF proteins (tumor necrosis factor receptor-associated factors) and either I-kappaB kinase or MAP kinase to activate either NF-kappaB or Jun kinase. Several alternative transcripts encoding different isoforms have been identified. Another transcript, which does not encode a protein and is transcribed in the opposite orientation, has been identified. Overexpression of this transcript has been shown to reduce expression of at least one of the protein encoding transcripts, suggesting it has a regulatory role in the expression of this gene. |
| NA | ENSG00000074935 | TUBE1 | tubulin epsilon 1 | 51175 | This gene encodes a member of the tubulin superfamily. This protein localizes to the centriolar sub-distal appendages that are associated with the older of the two centrioles after centrosome duplication. This protein plays a central role in organization of the microtubules during centriole duplication. A pseudogene of this gene is found on chromosome 5. |
| NA | ENSG00000203778 | FAM229B | family with sequence similarity 229 member B | 619208 | NA |
| TRUE | ENSG00000155130 | NA | NA | NA | NA |
| NA | ENSG00000196591 | HDAC2 | histone deacetylase 2 | 3066 | This gene product belongs to the histone deacetylase family. Histone deacetylases act via the formation of large multiprotein complexes, and are responsible for the deacetylation of lysine residues at the N-terminal regions of core histones (H2A, H2B, H3 and H4). This protein forms transcriptional repressor complexes by associating with many different proteins, including YY1, a mammalian zinc-finger transcription factor. Thus, it plays an important role in transcriptional regulation, cell cycle progression and developmental events. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000249853 | HS3ST5 | heparan sulfate-glucosamine 3-sulfotransferase 5 | 222537 | HS3ST5 belongs to a group of heparan sulfate 3-O-sulfotransferases (EC 2.8.2.23) that transfer sulfate from 3-prime-phosphoadenosine 5-prime phosphosulfate (PAPS) to heparan sulfate and heparin (Mochizuki et al., 2003 [PubMed 12740361]). |
| NA | ENSG00000187189 | TSPYL4 | TSPY-like 4 | 23270 | NA |
| NA | ENSG00000111817 | DSE | dermatan sulfate epimerase | 29940 | The protein encoded by this gene is a tumor-rejection antigen. This antigen possesses tumor epitopes capable of inducing HLA-A24-restricted and tumor-specific cytotoxic T lymphocytes in cancer patients and may be useful for specific immunotherapy. This gene product is localized to the endoplasmic reticulum. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000189241 | TSPYL1 | TSPY-like 1 | 7259 | The protein encoded by this gene is found in the nucleolus and is similar to that of a family of genes on the Y-chromosome. This gene is intronless. Defects in this gene are a cause of sudden infant death with dysgenesis of the testes syndrome (SIDDT). |
| NA | ENSG00000111832 | RWDD1 | RWD domain containing 1 | 51389 | NA |
| NA | ENSG00000153975 | ZUFSP | zinc finger with UFM1 specific peptidase domain | 221302 | NA |
| NA | ENSG00000047932 | GOPC | golgi-associated PDZ and coiled-coil motif containing | 57120 | This gene encodes a Golgi protein with a PDZ domain. The PDZ domain is globular and proteins which contain them bind other proteins through short motifs near the C-termini. Mice which are deficient in the orthologous protein have globozoospermia and are infertile. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164465 | DCBLD1 | discoidin, CUB and LCCL domain containing 1 | 285761 | NA |
| NA | ENSG00000153989 | NUS1 | NUS1 dehydrodolichyl diphosphate synthase subunit | 116150 | NA |
| NA | ENSG00000196376 | SLC35F1 | solute carrier family 35 member F1 | 222553 | NA |
| NA | ENSG00000111860 | CEP85L | centrosomal protein 85kDa-like | 387119 | The protein encoded by this gene was identified as a breast cancer antigen. Nothing more is known of its function at this time. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000111877 | MCM9 | minichromosome maintenance 9 homologous recombination repair factor | 254394 | The protein encoded by this gene is a member of the mini-chromosome maintenance (MCM) protein family that are essential for the initiation of eukaryotic genome replication. Binding of this protein to chromatin has been shown to be a pre-requisite for recruiting the MCM2-7 helicase to DNA replication origins. This protein also binds, and is a positive regulator of, the chromatin licensing and DNA replication factor 1, CDT1. |
| NA | ENSG00000111875 | ASF1A | anti-silencing function 1A histone chaperone | 25842 | This gene encodes a member of the H3/H4 family of histone chaperone proteins and is similar to the anti-silencing function-1 gene in yeast. The protein is a key component of a histone donor complex that functions in nucleosome assembly. It interacts with histones H3 and H4, and functions together with a chromatin assembly factor during DNA replication and repair. |
| NA | ENSG00000111879 | FAM184A | family with sequence similarity 184 member A | 79632 | NA |
| NA | ENSG00000111885 | MAN1A1 | mannosidase alpha class 1A member 1 | 4121 | This gene encodes a class I mammalian Golgi 1,2-mannosidase which is a type II transmembrane protein. This protein catalyzes the hydrolysis of three terminal mannose residues from peptide-bound Man(9)-GlcNAc(2) oligosaccharides and belongs to family 47 of glycosyl hydrolases. |
| NA | ENSG00000146350 | TBC1D32 | TBC1 domain family member 32 | 221322 | This gene encodes a TBC-domain containing protein. Studies of a similar protein in mouse and zebrafish suggest that the encoded protein is involved in sonic hedgehog signaling, and that it interacts with and stabilizes cell cycle-related kinase. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000152661 | GJA1 | gap junction protein alpha 1 | 2697 | This gene is a member of the connexin gene family. The encoded protein is a component of gap junctions, which are composed of arrays of intercellular channels that provide a route for the diffusion of low molecular weight materials from cell to cell. The encoded protein is the major protein of gap junctions in the heart that are thought to have a crucial role in the synchronized contraction of the heart and in embryonic development. A related intronless pseudogene has been mapped to chromosome 5. Mutations in this gene have been associated with oculodentodigital dysplasia, autosomal recessive craniometaphyseal dysplasia and heart malformations. |
| NA | ENSG00000025156 | HSF2 | heat shock transcription factor 2 | 3298 | The protein encoded by this gene belongs to the HSF family of transcription factors that bind specifically to the heat-shock promoter element and activate transcription. Heat shock transcription factors activate heat-shock response genes under conditions of heat or other stresses. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000111897 | SERINC1 | serine incorporator 1 | 57515 | NA |
| NA | ENSG00000135549 | PKIB | protein kinase (cAMP-dependent, catalytic) inhibitor beta | 5570 | This gene encodes a member of the cAMP-dependent protein kinase inhibitor family. The encoded protein may play a role in the protein kinase A (PKA) pathway by interacting with the catalytic subunit of PKA, and overexpression of this gene may play a role in prostate cancer. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000172594 | SMPDL3A | sphingomyelin phosphodiesterase acid like 3A | 10924 | NA |
| NA | ENSG00000186439 | TRDN | triadin | 10345 | This gene encodes an integral membrane protein that contains a single transmembrane domain. As similar protein in rabbits plays a role in skeletal muscle excitation-contraction coupling as part of the calcium release complex in association with the ryanodine receptor. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and single nucleotide polymorphisms in this gene may be markers for IgA nephritis. |
| NA | ENSG00000146373 | RNF217 | ring finger protein 217 | 154214 | NA |
| NA | ENSG00000111907 | TPD52L1 | tumor protein D52-like 1 | 7164 | This gene encodes a member of a family of proteins that contain coiled-coil domains and may form hetero- or homomers. The encoded protein is involved in cell proliferation and calcium signaling. It also interacts with the mitogen-activated protein kinase kinase kinase 5 (MAP3K5/ASK1) and positively regulates MAP3K5-induced apoptosis. Multiple alternatively spliced transcript variants have been observed. |
| NA | ENSG00000111912 | NCOA7 | nuclear receptor coactivator 7 | 135112 | NA |
| NA | ENSG00000111911 | HINT3 | histidine triad nucleotide binding protein 3 | 135114 | Histidine triad proteins, such as HINT3, are nucleotide hydrolases and transferases that act on the alpha-phosphate of ribonucleotides (Brenner, 2002 [PubMed 12119013]). |
| NA | ENSG00000066651 | TRMT11 | tRNA methyltransferase 11 homolog | 60487 | NA |
| NA | ENSG00000203760 | CENPW | centromere protein W | 387103 | NA |
| NA | ENSG00000118518 | RNF146 | ring finger protein 146 | 81847 | NA |
| NA | ENSG00000093144 | ECHDC1 | ethylmalonyl-CoA decarboxylase 1 | 55862 | NA |
| NA | ENSG00000152894 | PTPRK | protein tyrosine phosphatase, receptor type K | 5796 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP possesses an extracellular region, a single transmembrane region, and two tandem catalytic domains, and thus represents a receptor-type PTP. The extracellular region contains a meprin-A5 antigen-PTP mu (MAM) domain, an Ig-like domain and four fibronectin type III-like repeats. This PTP was shown to mediate homophilic intercellular interaction, possibly through the interaction with beta- and gamma-catenin at adherens junctions. Expression of this gene was found to be stimulated by TGF-beta 1, which may be important for the inhibition of keratinocyte proliferation. |
| NA | ENSG00000146376 | ARHGAP18 | Rho GTPase activating protein 18 | 93663 | ARHGAP18 belongs to a family of Rho (see MIM 165390) GTPase-activating proteins that modulate cell signaling (Potkin et al., 2009 [PubMed 19065146]). |
| NA | ENSG00000198945 | L3MBTL3 | l(3)mbt-like 3 (Drosophila) | 84456 | NA |
| NA | ENSG00000164484 | TMEM200A | transmembrane protein 200A | 114801 | NA |
| NA | ENSG00000079819 | EPB41L2 | erythrocyte membrane protein band 4.1-like 2 | 2037 | NA |
| NA | ENSG00000118507 | AKAP7 | A-kinase anchoring protein 7 | 9465 | This gene encodes a member of the A-kinase anchoring protein (AKAP) family, a group of functionally related proteins that bind to a regulatory subunit (RII) of cAMP-dependent protein kinase A (PKA) and target the enzyme to specific subcellular compartments. AKAPs have a common RII-binding domain, but contain different targeting motifs responsible for directing PKA to distinct intracellular locations. Three alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000112282 | MED23 | mediator complex subunit 23 | 9439 | The activation of gene transcription is a multistep process that is triggered by factors that recognize transcriptional enhancer sites in DNA. These factors work with co-activators to direct transcriptional initiation by the RNA polymerase II apparatus. The protein encoded by this gene is a subunit of the CRSP (cofactor required for SP1 activation) complex, which, along with TFIID, is required for efficient activation by SP1. This protein is also a component of other multisubunit complexes e.g. thyroid hormone receptor-(TR-) associated proteins which interact with TR and facilitate TR function on DNA templates in conjunction with initiation factors and cofactors. This protein also acts as a metastasis suppressor. Several alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000197594 | ENPP1 | ectonucleotide pyrophosphatase/phosphodiesterase 1 | 5167 | This gene is a member of the ecto-nucleotide pyrophosphatase/phosphodiesterase (ENPP) family. The encoded protein is a type II transmembrane glycoprotein comprising two identical disulfide-bonded subunits. This protein has broad specificity and cleaves a variety of substrates, including phosphodiester bonds of nucleotides and nucleotide sugars and pyrophosphate bonds of nucleotides and nucleotide sugars. This protein may function to hydrolyze nucleoside 5’ triphosphates to their corresponding monophosphates and may also hydrolyze diadenosine polyphosphates. Mutations in this gene have been associated with ‘idiopathic’ infantile arterial calcification, ossification of the posterior longitudinal ligament of the spine (OPLL), and insulin resistance. |
| NA | ENSG00000118523 | CTGF | connective tissue growth factor | 1490 | The protein encoded by this gene is a mitogen that is secreted by vascular endothelial cells. The encoded protein plays a role in chondrocyte proliferation and differentiation, cell adhesion in many cell types, and is related to platelet-derived growth factor. Certain polymorphisms in this gene have been linked with a higher incidence of systemic sclerosis. |
| NA | ENSG00000079931 | MOXD1 | monooxygenase, DBH-like 1 | 26002 | NA |
| NA | ENSG00000079950 | STX7 | syntaxin 7 | 8417 | NA |
| NA | ENSG00000146409 | SLC18B1 | solute carrier family 18 member B1 | 116843 | This gene encodes a protein, which has high sequence similarity to rat, xenopus and zebrafish proteins. The protein function is unknown. |
| NA | ENSG00000112306 | RPS12 | ribosomal protein S12 | 6206 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S12E family of ribosomal proteins. It is located in the cytoplasm. Increased expression of this gene in colorectal cancers compared to matched normal colonic mucosa has been observed. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000028839 | TBPL1 | TATA-box binding protein like 1 | 9519 | This gene encodes a member of the TATA box-binding protein family. TATA box-binding proteins play a critical role in transcription by RNA polymerase II as components of the transcription factor IID (TFIID) complex. The encoded protein does not bind to the TATA box and initiates transcription from TATA-less promoters. This gene plays a critical role in spermatogenesis, and single nucleotide polymorphisms in this gene may be associated with male infertility. Alternatively spliced transcript variants have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 3. |
| NA | ENSG00000146411 | SLC2A12 | solute carrier family 2 member 12 | 154091 | SLC2A12 belongs to a family of transporters that catalyze the uptake of sugars through facilitated diffusion (Rogers et al., 2002). This family of transporters show conservation of 12 transmembrane helices as well as functionally significant amino acid residues (Joost and Thorens, 2001 [PubMed 11780753]). |
| NA | ENSG00000118515 | SGK1 | serum/glucocorticoid regulated kinase 1 | 6446 | This gene encodes a serine/threonine protein kinase that plays an important role in cellular stress response. This kinase activates certain potassium, sodium, and chloride channels, suggesting an involvement in the regulation of processes such as cell survival, neuronal excitability, and renal sodium excretion. High levels of expression of this gene may contribute to conditions such as hypertension and diabetic nephropathy. Several alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000112339 | HBS1L | HBS1 like translational GTPase | 10767 | This gene encodes a member of the GTP-binding elongation factor family. It is expressed in multiple tissues with the highest expression in heart and skeletal muscle. The intergenic region of this gene and the MYB gene has been identified to be a quantitative trait locus (QTL) controlling fetal hemoglobin level, and this region influnces erythrocyte, platelet, and monocyte counts as well as erythrocyte volume and hemoglobin content. DNA polymorphisms at this region associate with fetal hemoglobin levels and pain crises in sickle cell disease. A single nucleotide polymorphism in exon 1 of this gene is significantly associated with severity in beta-thalassemia/Hemoglobin E. Multiple alternatively spliced transcript variants encoding different protein isoforms have been found for this gene. |
| NA | ENSG00000146410 | MTFR2 | mitochondrial fission regulator 2 | 113115 | NA |
| NA | ENSG00000029363 | BCLAF1 | BCL2 associated transcription factor 1 | 9774 | This gene encodes a transcriptional repressor that interacts with several members of the BCL2 family of proteins. Overexpression of this protein induces apoptosis, which can be suppressed by co-expression of BCL2 proteins. The protein localizes to dot-like structures throughout the nucleus, and redistributes to a zone near the nuclear envelope in cells undergoing apoptosis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000135525 | MAP7 | microtubule associated protein 7 | 9053 | The product of this gene is a microtubule-associated protein that is predominantly expressed in cells of epithelial origin. Microtubule-associated proteins are thought to be involved in microtubule dynamics, which is essential for cell polarization and differentiation. This protein has been shown to be able to stabilize microtubules, and may serve to modulate microtubule functions. Studies of the related mouse protein also suggested an essential role in microtubule function required for spermatogenesis. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197442 | MAP3K5 | mitogen-activated protein kinase kinase kinase 5 | 4217 | Mitogen-activated protein kinase (MAPK) signaling cascades include MAPK or extracellular signal-regulated kinase (ERK), MAPK kinase (MKK or MEK), and MAPK kinase kinase (MAPKKK or MEKK). MAPKK kinase/MEKK phosphorylates and activates its downstream protein kinase, MAPK kinase/MEK, which in turn activates MAPK. The kinases of these signaling cascades are highly conserved, and homologs exist in yeast, Drosophila, and mammalian cells. MAPKKK5 contains 1,374 amino acids with all 11 kinase subdomains. Northern blot analysis shows that MAPKKK5 transcript is abundantly expressed in human heart and pancreas. The MAPKKK5 protein phosphorylates and activates MKK4 (aliases SERK1, MAPKK4) in vitro, and activates c-Jun N-terminal kinase (JNK)/stress-activated protein kinase (SAPK) during transient expression in COS and 293 cells; MAPKKK5 does not activate MAPK/ERK. |
| NA | ENSG00000112357 | PEX7 | peroxisomal biogenesis factor 7 | 5191 | This gene encodes the cytosolic receptor for the set of peroxisomal matrix enzymes targeted to the organelle by the peroxisome targeting signal 2 (PTS2). Defects in this gene cause peroxisome biogenesis disorders (PBDs), which are characterized by multiple defects in peroxisome function. There are at least 14 complementation groups for PBDs, with more than one phenotype being observed in cases falling into particular complementation groups. Although the clinical features of PBD patients vary, cells from all PBD patients exhibit a defect in the import of one or more classes of peroxisomal matrix proteins into the organelle. Defects in this gene have been associated with PBD complementation group 11 (PBD-CG11) disorders, rhizomelic chondrodysplasia punctata type 1 (RCDP1), and Refsum disease (RD). |
| NA | ENSG00000016402 | IL20RA | interleukin 20 receptor subunit alpha | 53832 | This gene encodes a member of the type II cytokine receptor family. The encoded protein is a subunit of the receptor for interleukin 20, a cytokine that may be involved in epidermal function. The interleukin 20 receptor is a heterodimeric complex consisting of the encoded protein and interleukin 20 receptor beta. This gene and interleukin 20 receptor beta are highly expressed in skin, and are upregulated in psoriasis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000027697 | IFNGR1 | interferon gamma receptor 1 | 3459 | This gene (IFNGR1) encodes the ligand-binding chain (alpha) of the gamma interferon receptor. Human interferon-gamma receptor is a heterodimer of IFNGR1 and IFNGR2. A genetic variation in IFNGR1 is associated with susceptibility to Helicobacter pylori infection. In addition, defects in IFNGR1 are a cause of mendelian susceptibility to mycobacterial disease, also known as familial disseminated atypical mycobacterial infection. |
| NA | ENSG00000112378 | PERP | PERP, TP53 apoptosis effector | 64065 | NA |
| NA | ENSG00000135540 | NHSL1 | NHS like 1 | 57224 | NA |
| NA | ENSG00000024862 | CCDC28A | coiled-coil domain containing 28A | 25901 | This gene is located in a region close to the locus of the pseudogene of chemokine (C-C motif) receptor-like 1 on chromosome 6. The specific function of this gene has not yet been determined. |
| NA | ENSG00000135597 | REPS1 | RALBP1 associated Eps domain containing 1 | 85021 | NA |
| NA | ENSG00000146386 | ABRACL | ABRA C-terminal like | 58527 | NA |
| NA | ENSG00000112406 | HECA | hdc homolog, cell cycle regulator | 51696 | This gene encodes the homolog of the Drosophila headcase protein, a highly basic, cytoplasmic protein that regulates the re-entry of imaginal cells into the mitotic cycle during adult morphogenesis. In Drosophila, the encoded protein also inhibits terminal branching of neighboring cells during tracheal development. |
| NA | ENSG00000164442 | CITED2 | Cbp/p300 interacting transactivator with Glu/Asp rich carboxy-terminal domain 2 | 10370 | The protein encoded by this gene inhibits transactivation of HIF1A-induced genes by competing with binding of hypoxia-inducible factor 1-alpha to p300-CH1. Mutations in this gene are a cause of cardiac septal defects. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000009844 | VTA1 | vesicle (multivesicular body) trafficking 1 | 51534 | C6ORF55 encodes a protein involved in trafficking of the multivesicular body, an endosomal compartment involved in sorting membrane proteins for degradation in lysosomes (Ward et al., 2005 [PubMed 15644320]). |
| NA | ENSG00000112414 | ADGRG6 | adhesion G protein-coupled receptor G6 | 57211 | This gene, which is upregulated in human umbilical vein endothelial cells, encodes a G protein-coupled receptor. Variations in this gene can affect a person’s stature. Multiple transcript variants encoding different proteins have been found for this gene. |
| NA | ENSG00000010818 | HIVEP2 | human immunodeficiency virus type I enhancer binding protein 2 | 3097 | This gene encodes a member of a family of closely related, large, zinc finger-containing transcription factors. The encoded protein regulates transcription by binding to regulatory regions of various cellular and viral genes that maybe involved in growth, development and metastasis. The protein contains the ZAS domain comprised of two widely separated regions of zinc finger motifs, a stretch of highly acidic amino acids and a serine/threonine-rich sequence. |
| NA | ENSG00000146416 | AIG1 | androgen-induced 1 | 51390 | NA |
| NA | ENSG00000189007 | ADAT2 | adenosine deaminase, tRNA specific 2 | 134637 | NA |
| NA | ENSG00000034693 | PEX3 | peroxisomal biogenesis factor 3 | 8504 | The product of this gene is involved in peroxisome biosynthesis and integrity. It assembles membrane vesicles before the matrix proteins are translocated. Peroxins (PEXs) are proteins that are essential for the assembly of functional peroxisomes. The peroxisome biogenesis disorders (PBDs) are a group of genetically heterogeneous autosomal recessive, lethal diseases characterized by multiple defects in peroxisome function. The peroxisomal biogenesis disorders are a heterogeneous group with at least 14 complementation groups and with more than 1 phenotype being observed in cases falling into particular complementation groups. Although the clinical features of PBD patients vary, cells from all PBD patients exhibit a defect in the import of one or more classes of peroxisomal matrix proteins into the organelle. Defects in this gene are a cause Zellweger syndrome (ZWS). |
| NA | ENSG00000001036 | FUCA2 | fucosidase, alpha-L- 2, plasma | 2519 | This gene encodes a plasma alpha-L-fucosidase, which represents 10-20% of the total cellular fucosidase activity. The protein is a member of the glycosyl hydrolase 29 family, and catalyzes the hydrolysis of the alpha-1,6-linked fucose joined to the reducing-end N-acetylglucosamine of the carbohydrate moieties of glycoproteins. This enzyme is essential for Helicobacter pylori adhesion to human gastric cancer cells. |
| NA | ENSG00000112419 | PHACTR2 | phosphatase and actin regulator 2 | 9749 | NA |
| NA | ENSG00000135521 | LTV1 | LTV1 ribosome biogenesis factor | 84946 | NA |
| NA | ENSG00000169976 | SF3B5 | splicing factor 3b subunit 5 | 83443 | NA |
| NA | ENSG00000152818 | UTRN | utrophin | 7402 | This gene shares both structural and functional similarities with the dystrophin gene. It contains an actin-binding N-terminus, a triple coiled-coil repeat central region, and a C-terminus that consists of protein-protein interaction motifs which interact with dystroglycan protein components. The protein encoded by this gene is located at the neuromuscular synapse and myotendinous junctions, where it participates in post-synaptic membrane maintenance and acetylcholine receptor clustering. Mouse studies suggest that this gene may serve as a functional substitute for the dystrophin gene and therefore, may serve as a potential therapeutic alternative to muscular dystrophy which is caused by mutations in the dystrophin gene. Alternative splicing of the utrophin gene has been described; however, the full-length nature of these variants has not yet been determined. |
| NA | ENSG00000112425 | EPM2A | epilepsy, progressive myoclonus type 2A, Lafora disease (laforin) | 7957 | This gene encodes a dual-specificity phosphatase that associates with polyribosomes. The encoded protein may be involved in the regulation of glycogen metabolism. Mutations in this gene have been associated with myoclonic epilepsy of Lafora. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000118496 | FBXO30 | F-box protein 30 | 84085 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of the ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class and it is upregulated in nasopharyngeal carcinoma. |
| NA | ENSG00000118508 | RAB32 | RAB32, member RAS oncogene family | 10981 | The protein encoded by this gene anchors the type II regulatory subunit of protein kinase A to the mitochondrion and aids in mitochondrial fission. The encoded protein also appears to be involved in autophagy and melanosome secretion. Variations in this gene may be linked to leprosy. |
| NA | ENSG00000164506 | STXBP5 | syntaxin binding protein 5 | 134957 | Syntaxin 1 is a component of the 7S and 20S SNARE complexes which are involved in docking and fusion of synaptic vesicles with the presynaptic plasma membrane. This gene encodes a syntaxin 1 binding protein. In rat, a similar protein dissociates syntaxin 1 from the Munc18/n-Sec1/rbSec1 complex to form a 10S complex, an intermediate which can be converted to the 7S SNARE complex. Thus this protein is thought to be involved in neurotransmitter release by stimulating SNARE complex formation. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000111961 | SASH1 | SAM and SH3 domain containing 1 | 23328 | NA |
| NA | ENSG00000111962 | UST | uronyl 2-sulfotransferase | 10090 | Uronyl 2-sulfotransferase transfers sulfate to the 2-position of uronyl residues, such as iduronyl residues in dermatan sulfate and glucuronyl residues in chondroitin sulfate (Kobayashi et al., 1999 [PubMed 10187838]). |
| NA | ENSG00000177688 | SUMO4 | small ubiquitin-like modifier 4 | 387082 | This gene is a member of the SUMO gene family. This family of genes encode small ubiquitin-related modifiers that are attached to proteins and control the target proteins’ subcellular localization, stability, or activity. The protein described in this record is located in the cytoplasm and specifically modifies IKBA, leading to negative regulation of NF-kappa-B-dependent transcription of the IL12B gene. A specific polymorphism in this SUMO gene, which leads to the M55V substitution, has been associated with type I diabetes. The RefSeq contains this polymorphism. |
| NA | ENSG00000131013 | PPIL4 | peptidylprolyl isomerase like 4 | 85313 | This gene is a member of the cyclophilin family of peptidylprolyl isomerases. The cyclophilins are a highly conserved family, members of which play an important role in protein folding, immunosuppression by cyclosporin A, and infection of HIV-1 virions. |
| NA | ENSG00000055211 | GINM1 | glycoprotein integral membrane 1 | 116254 | NA |
| NA | ENSG00000186625 | KATNA1 | katanin catalytic subunit A1 | 11104 | Microtubules, polymers of alpha and beta tubulin subunits, form the mitotic spindle of a dividing cell and help to organize membranous organelles during interphase. Katanin is a heterodimer that consists of a 60 kDa ATPase (p60 subunit A 1) and an 80 kDa accessory protein (p80 subunit B 1). The p60 subunit acts to sever and disassemble microtubules, while the p80 subunit targets the enzyme to the centrosome. This gene encodes the p80 subunit. This protein is a member of the AAA family of ATPases. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000131023 | LATS1 | large tumor suppressor kinase 1 | 9113 | The protein encoded by this gene is a putative serine/threonine kinase that localizes to the mitotic apparatus and complexes with cell cycle controller CDC2 kinase in early mitosis. The protein is phosphorylated in a cell-cycle dependent manner, with late prophase phosphorylation remaining through metaphase. The N-terminal region of the protein binds CDC2 to form a complex showing reduced H1 histone kinase activity, indicating a role as a negative regulator of CDC2/cyclin A. In addition, the C-terminal kinase domain binds to its own N-terminal region, suggesting potential negative regulation through interference with complex formation via intramolecular binding. Biochemical and genetic data suggest a role as a tumor suppressor. This is supported by studies in knockout mice showing development of soft-tissue sarcomas, ovarian stromal cell tumors and a high sensitivity to carcinogenic treatments. Two protein-coding transcripts and one non-protein coding transcript have been found for this gene. |
| NA | ENSG00000120253 | NUP43 | nucleoporin 43kDa | 348995 | Bidirectional transport of macromolecules between the cytoplasm and nucleus occurs through nuclear pore complexes (NPCs) embedded in the nuclear envelope. NPCs are composed of subcomplexes, and NUP43 is part of one such subcomplex, Nup107-160 (Loiodice et al., 2004 [PubMed 15146057]). |
| NA | ENSG00000120265 | PCMT1 | protein-L-isoaspartate (D-aspartate) O-methyltransferase | 5110 | This gene encodes a member of the type II class of protein carboxyl methyltransferase enzymes. The encoded enzyme plays a role in protein repair by recognizing and converting D-aspartyl and L-isoaspartyl residues resulting from spontaneous deamidation back to the normal L-aspartyl form. The encoded protein may play a protective role in the pathogenesis of Alzheimer’s disease, and single nucleotide polymorphisms in this gene have been associated with spina bifida and premature ovarian failure. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000120256 | LRP11 | LDL receptor related protein 11 | 84918 | NA |
| NA | ENSG00000120254 | MTHFD1L | methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1-like | 25902 | The protein encoded by this gene is involved in the synthesis of tetrahydrofolate (THF) in the mitochondrion. THF is important in the de novo synthesis of purines and thymidylate and in the regeneration of methionine from homocysteine. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000131016 | AKAP12 | A-kinase anchoring protein 12 | 9590 | The A-kinase anchor proteins (AKAPs) are a group of structurally diverse proteins, which have the common function of binding to the regulatory subunit of protein kinase A (PKA) and confining the holoenzyme to discrete locations within the cell. This gene encodes a member of the AKAP family. The encoded protein is expressed in endothelial cells, cultured fibroblasts, and osteosarcoma cells. It associates with protein kinases A and C and phosphatase, and serves as a scaffold protein in signal transduction. This protein and RII PKA colocalize at the cell periphery. This protein is a cell growth-related protein. Antibodies to this protein can be produced by patients with myasthenia gravis. Alternative splicing of this gene results in two transcript variants encoding different isoforms. |
| NA | ENSG00000181472 | ZBTB2 | zinc finger and BTB domain containing 2 | 57621 | NA |
| NA | ENSG00000155906 | RMND1 | required for meiotic nuclear division 1 homolog | 55005 | The protein encoded by this gene belongs to the evolutionary conserved sif2 family of proteins that share the DUF155 domain in common. This protein is thought to be localized in the mitochondria and involved in mitochondrial translation. Mutations in this gene are associated with combined oxidative phosphorylation deficiency-11. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000146476 | ARMT1 | acidic residue methyltransferase 1 | 79624 | NA |
| NA | ENSG00000131018 | SYNE1 | spectrin repeat containing, nuclear envelope 1 | 23345 | This gene encodes a spectrin repeat containing protein expressed in skeletal and smooth muscle, and peripheral blood lymphocytes, that localizes to the nuclear membrane. Mutations in this gene have been associated with autosomal recessive spinocerebellar ataxia 8, also referred to as autosomal recessive cerebellar ataxia type 1 or recessive ataxia of Beauce. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000112031 | MTRF1L | mitochondrial translational release factor 1 like | 54516 | The protein encoded by this gene plays a role in mitochondrial translation termination, and is thought to be a release factor that is involved in the dissociation of the complete protein from the final tRNA, the ribosome, and the cognate mRNA. This protein acts upon UAA and UAG stop codons, but has no in vitro activity against UGA, which encodes tryptophan in human mitochondrion, or, the mitochondrial non-cognate stop codons, AGA and AGG. This protein shares sequence similarity to bacterial release factors. Pseudogenes of this gene are found on chromosomes 4, 8, and 11. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000091844 | RGS17 | regulator of G-protein signaling 17 | 26575 | This gene encodes a member of the regulator of G-protein signaling family. This protein contains a conserved, 120 amino acid motif called the RGS domain and a cysteine-rich region. The protein attenuates the signaling activity of G-proteins by binding to activated, GTP-bound G alpha subunits and acting as a GTPase activating protein (GAP), increasing the rate of conversion of the GTP to GDP. This hydrolysis allows the G alpha subunits to bind G beta/gamma subunit heterodimers, forming inactive G-protein heterotrimers, thereby terminating the signal. |
| NA | ENSG00000153721 | CNKSR3 | CNKSR family member 3 | 154043 | NA |
| NA | ENSG00000213079 | SCAF8 | SR-related CTD associated factor 8 | 22828 | NA |
| NA | ENSG00000146426 | TIAM2 | T-cell lymphoma invasion and metastasis 2 | 26230 | This gene encodes a guanine nucleotide exchange factor. A highly similar mouse protein specifically activates ras-related C3 botulinum substrate 1, converting this Rho-like guanosine triphosphatase (GTPase) from a guanosine diphosphate-bound inactive state to a guanosine triphosphate-bound active state. The encoded protein may play a role in neural cell development. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000029639 | TFB1M | transcription factor B1, mitochondrial | 51106 | The protein encoded by this gene is a dimethyltransferase that methylates the conserved stem loop of mitochondrial 12S rRNA. The encoded protein also is part of the basal mitochondrial transcription complex and is necessary for mitochondrial gene expression. The methylation and transcriptional activities of this protein are independent of one another. Variations in this gene may influence the severity of aminoglycoside-induced deafness (AID). |
| NA | ENSG00000049618 | ARID1B | AT-rich interaction domain 1B | 57492 | This locus encodes an AT-rich DNA interacting domain-containing protein. The encoded protein is a component of the SWI/SNF chromatin remodeling complex and may play a role in cell-cycle activation. The protein encoded by this locus is similar to AT-rich interactive domain-containing protein 1A. These two proteins function as alternative, mutually exclusive ARID-subunits of the SWI/SNF complex. The associated complexes play opposing roles. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000175048 | ZDHHC14 | zinc finger DHHC-type containing 14 | 79683 | NA |
| NA | ENSG00000130340 | SNX9 | sorting nexin 9 | 51429 | This gene encodes a member of the sorting nexin family. Members of this family contain a phosphoinositide binding domain, and are involved in intracellular trafficking. The encoded protein does not contain a coiled coil region, like some family members, but does contain a SRC homology domain near its N-terminus. The encoded protein is reported to have a variety of interaction partners, including of adaptor protein 2 , dynamin, tyrosine kinase non-receptor 2, Wiskott-Aldrich syndrome-like, and ARP3 actin-related protein 3. The encoded protein is implicated in several stages of intracellular trafficking, including endocytosis, macropinocytosis, and F-actin nucleation. |
| NA | ENSG00000078269 | SYNJ2 | synaptojanin 2 | 8871 | The gene is a member of the inositol-polyphosphate 5-phosphatase family. The encoded protein interacts with the ras-related C3 botulinum toxin substrate 1, which causes translocation of the encoded protein to the plasma membrane where it inhibits clathrin-mediated endocytosis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000122335 | SERAC1 | serine active site containing 1 | 84947 | The protein encoded by this gene is a phosphatidylglycerol remodeling protein found at the interface of mitochondria and endoplasmic reticula, where it mediates phospholipid exchange. The encoded protein plays a major role in mitochondrial function and intracellular cholesterol trafficking. Defects in this gene are a cause of 3-methylglutaconic aciduria with deafness, encephalopathy, and Leigh-like syndrome (MEGDEL). Two transcript variants, one protein-coding and the other non-protein coding, have been found for this gene. |
| NA | ENSG00000272047 | GTF2H5 | general transcription factor IIH subunit 5 | 404672 | This gene encodes a subunit of transcription/repair factor TFIIH, which functions in gene transcription and DNA repair. This protein stimulates ERCC3/XPB ATPase activity to trigger DNA opening during DNA repair, and is implicated in regulating cellular levels of TFIIH. Mutations in this gene result in trichothiodystrophy, complementation group A. |
| NA | ENSG00000130338 | TULP4 | tubby like protein 4 | 56995 | NA |
| NA | ENSG00000146433 | TMEM181 | transmembrane protein 181 | 57583 | The TMEM181 gene encodes a putative G protein-coupled receptor expressed on the cell surface (Carette et al., 2009 [PubMed 19965467]; Wollscheid et al., 2009 [PubMed 19349973]). |
| NA | ENSG00000146425 | DYNLT1 | dynein light chain Tctex-type 1 | 6993 | This gene encodes a component of the motor complex, cytoplasmic dynein, which transports cellular cargo along microtubules in the cell. The encoded protein regulates the length of primary cilia which are sensory organelles found on the surface of cells. The protein encoded by this gene interacts with viral proteins, like the minor capsid protein L2 of human papillomavirus, and is required for dynein-mediated delivery of the viral nucleic acid to the host nucleus. This protein interacts with oncogenic nucleoporins to disrupt gene regulation and cause leukemic transformation. Pseudogenes of this gene are present on chromosomes 4 and 17. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000092820 | EZR | ezrin | 7430 | The cytoplasmic peripheral membrane protein encoded by this gene functions as a protein-tyrosine kinase substrate in microvilli. As a member of the ERM protein family, this protein serves as an intermediate between the plasma membrane and the actin cytoskeleton. This protein plays a key role in cell surface structure adhesion, migration and organization, and it has been implicated in various human cancers. A pseudogene located on chromosome 3 has been identified for this gene. Alternatively spliced variants have also been described for this gene. |
| NA | ENSG00000130363 | RSPH3 | radial spoke 3 homolog (Chlamydomonas) | 83861 | NA |
| NA | ENSG00000112096 | LOC100129518 | uncharacterized LOC100129518 | 100129518 | NA |
| NA | ENSG00000112096 | SOD2 | superoxide dismutase 2, mitochondrial | 6648 | This gene is a member of the iron/manganese superoxide dismutase family. It encodes a mitochondrial protein that forms a homotetramer and binds one manganese ion per subunit. This protein binds to the superoxide byproducts of oxidative phosphorylation and converts them to hydrogen peroxide and diatomic oxygen. Mutations in this gene have been associated with idiopathic cardiomyopathy (IDC), premature aging, sporadic motor neuron disease, and cancer. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000146457 | WTAP | Wilms tumor 1 associated protein | 9589 | The Wilms tumor suppressor gene WT1 appears to play a role in both transcriptional and posttranscriptional regulation of certain cellular genes. This gene encodes a WT1-associating protein, which is a ubiquitously expressed nuclear protein. Like WT1 protein, this protein is localized throughout the nucleoplasm as well as in speckles and partially colocalizes with splicing factors. Alternative splicing of this gene results in several transcript variants encoding three different isoforms. |
| NA | ENSG00000120437 | ACAT2 | acetyl-CoA acetyltransferase 2 | 39 | The product of this gene is an enzyme involved in lipid metabolism, and it encodes cytosolic acetoacetyl-CoA thiolase. This gene shows complementary overlapping with the 3-prime region of the TCP1 gene in both mouse and human. These genes are encoded on opposite strands of DNA, as well as in opposite transcriptional orientation. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000120438 | TCP1 | t-complex 1 | 6950 | The protein encoded by this gene is a molecular chaperone that is a member of the chaperonin containing TCP1 complex (CCT), also known as the TCP1 ring complex (TRiC). This complex consists of two identical stacked rings, each containing eight different proteins. Unfolded polypeptides enter the central cavity of the complex and are folded in an ATP-dependent manner. The complex folds various proteins, including actin and tubulin. Alternate transcriptional splice variants of this gene, encoding different isoforms, have been characterized. In addition, three pseudogenes that appear to be derived from this gene have been found. |
| NA | ENSG00000197081 | IGF2R | insulin like growth factor 2 receptor | 3482 | This gene encodes a receptor for both insulin-like growth factor 2 and mannose 6-phosphate. The binding sites for each ligand are located on different segments of the protein. This receptor has various functions, including in the intracellular trafficking of lysosomal enzymes, the activation of transforming growth factor beta, and the degradation of insulin-like growth factor 2. Mutation or loss of heterozygosity of this gene has been association with risk of hepatocellular carcinoma. The orthologous mouse gene is imprinted and shows exclusive expression from the maternal allele; however, imprinting of the human gene may be polymorphic, as only a minority of individuals showed biased expression from the maternal allele (PMID:8267611). |
| NA | ENSG00000085511 | MAP3K4 | mitogen-activated protein kinase kinase kinase 4 | 4216 | The central core of each mitogen-activated protein kinase (MAPK) pathway is a conserved cascade of 3 protein kinases: an activated MAPK kinase kinase (MAPKKK) phosphorylates and activates a specific MAPK kinase (MAPKK), which then activates a specific MAPK. While the ERK MAPKs are activated by mitogenic stimulation, the CSBP2 and JNK MAPKs are activated by environmental stresses such as osmotic shock, UV irradiation, wound stress, and inflammatory factors. This gene encodes a MAPKKK, the MEKK4 protein, also called MTK1. This protein contains a protein kinase catalytic domain at the C terminus. The N-terminal nonkinase domain may contain a regulatory domain. Expression of MEKK4 in mammalian cells activated the CSBP2 and JNK MAPK pathways, but not the ERK pathway. In vitro kinase studies indicated that recombinant MEKK4 can specifically phosphorylate and activate PRKMK6 and SERK1, MAPKKs that activate CSBP2 and JNK, respectively but cannot phosphorylate PRKMK1, an MAPKK that activates ERKs. MEKK4 is a major mediator of environmental stresses that activate the CSBP2 MAPK pathway, and a minor mediator of the JNK pathway. Several alternatively spliced transcripts encoding distinct isoforms have been described. |
| NA | ENSG00000026652 | AGPAT4 | 1-acylglycerol-3-phosphate O-acyltransferase 4 | 56895 | This gene encodes a member of the 1-acylglycerol-3-phosphate O-acyltransferase family. This integral membrane protein converts lysophosphatidic acid to phosphatidic acid, the second step in de novo phospholipid biosynthesis. |
| NA | ENSG00000112531 | QKI | QKI, KH domain containing, RNA binding | 9444 | The protein encoded by this gene is an RNA-binding protein that regulates pre-mRNA splicing, export of mRNAs from the nucleus, protein translation, and mRNA stability. The encoded protein is involved in myelinization and oligodendrocyte differentiation and may play a role in schizophrenia. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198818 | SFT2D1 | SFT2 domain containing 1 | 113402 | NA |
| NA | ENSG00000060762 | MPC1 | mitochondrial pyruvate carrier 1 | 51660 | The protein encoded by this gene is part of an MPC1/MPC2 heterodimer that is responsible for transporting pyruvate into mitochondria. The encoded protein is found in the inner mitochondrial membrane. Defects in this gene are a cause of mitochondrial pyruvate carrier deficiency. Several transcript variants, some protein coding and one non-protein coding, have been found for this gene. |
| NA | ENSG00000071242 | RPS6KA2 | ribosomal protein S6 kinase A2 | 6196 | This gene encodes a member of the RSK (ribosomal S6 kinase) family of serine/threonine kinases. This kinase contains two non-identical kinase catalytic domains and phosphorylates various substrates, including members of the mitogen-activated kinase (MAPK) signalling pathway. The activity of this protein has been implicated in controlling cell growth and differentiation. Alternative splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000026297 | RNASET2 | ribonuclease T2 | 8635 | This ribonuclease gene is a novel member of the Rh/T2/S-glycoprotein class of extracellular ribonucleases. It is a single copy gene that maps to 6q27, a region associated with human malignancies and chromosomal rearrangement. |
| NA | ENSG00000130396 | MLLT4 | myeloid/lymphoid or mixed-lineage leukemia; translocated to, 4 | 4301 | This gene encodes a multi-domain protein involved in signaling and organization of cell junctions during embryogenesis. It has also been identified as the fusion partner of acute lymphoblastic leukemia (ALL-1) gene, involved in acute myeloid leukemias with t(6;11)(q27;q23) translocation. Alternatively spliced transcript variants encoding different isoforms have been described for this gene, however, not all have been fully characterized. |
| NA | ENSG00000164488 | DACT2 | dishevelled-binding antagonist of beta-catenin 2 | 168002 | NA |
| NA | ENSG00000112562 | SMOC2 | SPARC related modular calcium binding 2 | 64094 | This gene encodes a member of the SPARC family (secreted protein acidic and rich in cysteine/osteonectin/BM-40), which are highly expressed during embryogenesis and wound healing. The gene product is a matricellular protein which promotes matrix assembly and can stimulate endothelial cell proliferation and migration, as well as angiogenic activity. Associated with pulmonary function, this secretory gene product contains a Kazal domain, two thymoglobulin type-1 domains, and two EF-hand calcium-binding domains. The encoded protein may serve as a target for controlling angiogenesis in tumor growth and myocardial ischemia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000186340 | THBS2 | thrombospondin 2 | 7058 | The protein encoded by this gene belongs to the thrombospondin family. It is a disulfide-linked homotrimeric glycoprotein that mediates cell-to-cell and cell-to-matrix interactions. This protein has been shown to function as a potent inhibitor of tumor growth and angiogenesis. Studies of the mouse counterpart suggest that this protein may modulate the cell surface properties of mesenchymal cells and be involved in cell adhesion and migration. |
| NA | ENSG00000184465 | WDR27 | WD repeat domain 27 | 253769 | This gene encodes a protein with multiple WD repeats. Proteins with these repeats may form scaffolds for protein-protein interaction and play key roles in cell signalling. Alternative splicing results in multiple transcript variants, but the full-length structure of some of these variants cannot be determined. |
| NA | ENSG00000185127 | C6orf120 | chromosome 6 open reading frame 120 | 387263 | This gene encodes a conserved, N-glycosylated protein that likely functions in the cellular response to endoplasmic reticulum stress. This protein is able to induce apoptosis in vitro in CD4+ T-cells. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000130024 | PHF10 | PHD finger protein 10 | 55274 | This gene contains a predicted ORF that encodes a protein with two zinc finger domains. The function of the encoded protein is not known. Sequence analysis suggests that multiple alternatively spliced transcript variants are derived from this gene but the full-length nature of only two of them is known. These two splice variants encode different isoforms. A pseudogene for this gene is located on Xq28. |
| NA | ENSG00000130023 | ERMARD | ER membrane-associated RNA degradation | 55780 | The protein encoded by this gene contains 2 transmembrane domains near the C-terminus and is localized in the endoplasmic reticulum. Knockout of this gene in developing rat brain showed that it may be involved in neuronal migration. Mutations in this gene are associated with periventricular nodular heterotopia-6 (PVNH6). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000112584 | FAM120B | family with sequence similarity 120B | 84498 | NA |
| NA | ENSG00000112592 | TBP | TATA-box binding protein | 6908 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes TBP, the TATA-binding protein. A distinctive feature of TBP is a long string of glutamines in the N-terminus. This region of the protein modulates the DNA binding activity of the C terminus, and modulation of DNA binding affects the rate of transcription complex formation and initiation of transcription. The number of CAG repeats encoding the polyglutamine tract is usually 32-39, and expansion of the number of repeats increases the length of the polyglutamine string and is associated with spinocerebellar ataxia 17, a neurodegenerative disorder classified as a polyglutamine disease. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000071994 | PDCD2 | programmed cell death 2 | 5134 | This gene encodes a nuclear protein expressed in a variety of tissues. Expression of this gene has been shown to be repressed by B-cell CLL/lymphoma 6 (BCL6), a transcriptional repressor required for lymph node germinal center development, suggesting that BCL6 regulates apoptosis by its effects on this protein. Alternative splicing results in multiple transcript variants and pseudogenes have been identified on chromosomes 9 and 12. |
| NA | ENSG00000177706 | FAM20C | family with sequence similarity 20 member C | 56975 | This gene encodes a member of the family of secreted protein kinases. The encoded protein binds calcium and phosphorylates proteins involved in bone mineralization. Mutations in this gene are associated with the autosomal recessive disorder Raine syndrome. |
| NA | ENSG00000197461 | PDGFA | platelet derived growth factor subunit A | 5154 | This gene encodes a member of the protein family comprised of both platelet-derived growth factors (PDGF) and vascular endothelial growth factors (VEGF). The encoded preproprotein is proteolytically processed to generate platelet-derived growth factor subunit A, which can homodimerize, or alternatively, heterodimerize with the related platelet-derived growth factor subunit B. These proteins bind and activate PDGF receptor tyrosine kinases, which play a role in a wide range of developmental processes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000188191 | PRKAR1B | protein kinase cAMP-dependent type I regulatory subunit beta | 5575 | The protein encoded by this gene is a regulatory subunit of cyclic AMP-dependent protein kinase A (PKA), which is involved in the signaling pathway of the second messenger cAMP. Two regulatory and two catalytic subunits form the PKA holoenzyme, disbands after cAMP binding. The holoenzyme is involved in many cellular events, including ion transport, metabolism, and transcription. Several transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000164818 | DNAAF5 | dynein (axonemal) assembly factor 5 | 54919 | The protein encoded by this gene is essential for the preassembly or stability of axonemal dynein arms, and is found only in organisms with motile cilia and flagella. Mutations in this gene are associated with primary ciliary dyskinesia-18, a disorder characterized by abnormalities of motile cilia. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000239857 | GET4 | golgi to ER traffic protein 4 | 51608 | NA |
| NA | ENSG00000240230 | COX19 | COX19 cytochrome c oxidase assembly factor | 90639 | COX19 encodes a cytochrome c oxidase (COX)-assembly protein. The S. cerevisiae Cox19 protein may play a role in metal transport to the mitochondrial intermembrane space and assembly of complex IV of the mitochondrial respiratory chain (Sacconi et al., 2005 [PubMed 16212937]). |
| NA | ENSG00000146540 | C7orf50 | chromosome 7 open reading frame 50 | 84310 | NA |
| NA | ENSG00000178381 | ZFAND2A | zinc finger AN1-type containing 2A | 90637 | NA |
| NA | ENSG00000164880 | INTS1 | integrator complex subunit 1 | 26173 | INTS1 is a subunit of the Integrator complex, which associates with the C-terminal domain of RNA polymerase II large subunit (POLR2A; MIM 180660) and mediates 3-prime end processing of small nuclear RNAs U1 (RNU1; MIM 180680) and U2 (RNU2; MIM 180690) (Baillat et al., 2005 [PubMed 16239144]). |
| NA | ENSG00000198517 | MAFK | v-maf avian musculoaponeurotic fibrosarcoma oncogene homolog K | 7975 | The developmentally regulated expression of the globin genes depends on upstream regulatory elements termed locus control regions (LCRs). LCRs are associated with powerful enhancer activity that is mediated by the transcription factor NFE2 (nuclear factor erythroid-2). NFE2 recognition sites are also present in the gene promoters of 2 heme biosynthetic enzymes, porphobilinogen deaminase (PBGD; MIM 609806) and ferrochelatase (FECH; MIM 612386). NFE2 DNA-binding activity consists of a heterodimer containing an 18-kD Maf protein (MafF, MafG (MIM 602020), or MafK) and p45 (MIM 601490). Both subunits are members of the activator protein-1 superfamily of basic leucine zipper (bZIP) proteins (see MIM 165160). Maf homodimers suppress transcription at NFE2 sites. |
| NA | ENSG00000157778 | PSMG3 | proteasome (prosome, macropain) assembly chaperone 3 | 84262 | NA |
| NA | ENSG00000002822 | MAD1L1 | MAD1 mitotic arrest deficient-like 1 (yeast) | 8379 | MAD1L1 is a component of the mitotic spindle-assembly checkpoint that prevents the onset of anaphase until all chromosome are properly aligned at the metaphase plate. MAD1L1 functions as a homodimer and interacts with MAD2L1. MAD1L1 may play a role in cell cycle control and tumor suppression. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000122687 | FTSJ2 | FtsJ RNA methyltransferase homolog 2 (E. coli) | 29960 | The protein encoded by this gene is a member of the S-adenosylmethionine-binding protein family. It is a nucleolar protein and it may be involved in the processing and modification of rRNA. This gene has been suggested to be involved in cell cycle control and DNA repair. |
| NA | ENSG00000106268 | NUDT1 | nudix hydrolase 1 | 4521 | Misincorporation of oxidized nucleoside triphosphates into DNA/RNA during replication and transcription can cause mutations that may result in carcinogenesis or neurodegeneration. The protein encoded by this gene is an enzyme that hydrolyzes oxidized purine nucleoside triphosphates, such as 8-oxo-dGTP, 8-oxo-dATP, 2-hydroxy-dATP, and 2-hydroxy rATP, to monophosphates, thereby preventing misincorporation. The encoded protein is localized mainly in the cytoplasm, with some in the mitochondria, suggesting that it is involved in the sanitization of nucleotide pools both for nuclear and mitochondrial genomes. Several alternatively spliced transcript variants, some of which encode distinct isoforms, have been identified. Additional variants have been observed, but their full-length natures have not been determined. A single-nucleotide polymorphism that results in the production of an additional, longer isoform (p26) has been described. |
| NA | ENSG00000106266 | SNX8 | sorting nexin 8 | 29886 | NA |
| NA | ENSG00000106263 | EIF3B | eukaryotic translation initiation factor 3 subunit B | 8662 | NA |
| NA | ENSG00000136213 | LOC101927181 | uncharacterized LOC101927181 | 101927181 | NA |
| NA | ENSG00000136213 | CHST12 | carbohydrate (chondroitin 4) sulfotransferase 12 | 55501 | The protein encoded by this gene belongs to the sulfotransferase 2 family. It is localized to the golgi membrane, and catalyzes the transfer of sulfate to position 4 of the N-acetylgalactosamine (GalNAc) residue of chondroitin and desulfated dermatan sulfate. Chondroitin sulfate constitutes the predominant proteoglycan present in cartilage, and is distributed on the surfaces of many cells and extracellular matrices. Alternatively spliced transcript variants differing only in their 5’ UTRs have been found for this gene. |
| NA | ENSG00000106003 | LFNG | LFNG O-fucosylpeptide 3-beta-N-acetylglucosaminyltransferase | 3955 | This gene is a member of the fringe gene family which also includes radical and manic fringe genes. They all encode evolutionarily conserved glycosyltransferases that act in the Notch signaling pathway to define boundaries during embryonic development. While their genomic structure is distinct from other glycosyltransferases, fringe proteins have a fucose-specific beta-1,3-N-acetylglucosaminyltransferase activity that leads to elongation of O-linked fucose residues on Notch, which alters Notch signaling. This gene product is predicted to be a single-pass type II Golgi membrane protein but it may also be secreted and proteolytically processed like the related proteins in mouse and Drosophila (PMID: 9187150). Mutations in this gene have been associated with autosomal recessive spondylocostal dysostosis 3. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000106009 | BRAT1 | BRCA1 associated ATM activator 1 | 221927 | The protein encoded by this ubiquitously expressed gene interacts with the tumor suppressing BRCA1 (breast cancer 1) protein and and the ATM (ataxia telangiectasia mutated) protein. ATM is thought to be a master controller of cell cycle checkpoint signalling pathways that are required for cellular responses to DNA damage such as double-strand breaks that are induced by ionizing radiation and complexes with BRCA1 in the multi-protein complex BASC (BRAC1-associated genome surveillance complex). The protein encoded by this gene is thought to play a role in the DNA damage pathway regulated by BRCA1 and ATM. |
| NA | ENSG00000106012 | IQCE | IQ motif containing E | 23288 | NA |
| NA | ENSG00000136295 | TTYH3 | tweety family member 3 | 80727 | This gene encodes a member of the tweety family of proteins. Members of this family function as chloride anion channels. The encoded protein functions as a calcium(2+)-activated large conductance chloride(-) channel. |
| NA | ENSG00000198286 | CARD11 | caspase recruitment domain family member 11 | 84433 | The protein encoded by this gene belongs to the membrane-associated guanylate kinase (MAGUK) family, a class of proteins that functions as molecular scaffolds for the assembly of multiprotein complexes at specialized regions of the plasma membrane. This protein is also a member of the CARD protein family, which is defined by carrying a characteristic caspase-associated recruitment domain (CARD). This protein has a domain structure similar to that of CARD14 protein. The CARD domains of both proteins have been shown to specifically interact with BCL10, a protein known to function as a positive regulator of cell apoptosis and NF-kappaB activation. When expressed in cells, this protein activated NF-kappaB and induced the phosphorylation of BCL10. |
| NA | ENSG00000146555 | SDK1 | sidekick cell adhesion molecule 1 | 221935 | NA |
| NA | ENSG00000164916 | FOXK1 | forkhead box K1 | 221937 | NA |
| NA | ENSG00000242802 | AP5Z1 | adaptor related protein complex 5 zeta 1 subunit | 9907 | This gene was identified by genome-wide screen for genes involved in homologous recombination DNA double-strand break repair (HR-DSBR). The encoded protein was found in a complex with other proteins that have a role in HR-DSBR. Knockdown of this gene reduced homologous recombination, and mutations in this gene were found in patients with spastic paraplegia. It was concluded that this gene likely encodes a helicase (PMID:20613862). |
| NA | ENSG00000157927 | RADIL | Rap associating with DIL domain | 55698 | NA |
| NA | ENSG00000272968 | RBAK-RBAKDN | RBAK-RBAKDN readthrough | 100533952 | This locus represents naturally occurring read-through transcription between the neighboring RBAK (RB-associated KRAB zinc finger) and LOC389458 (hypothetical LOC389458) genes on chromosome 7. The read-through transcript encodes a protein that shares sequence identity with the upstream gene product but its C-terminal region is distinct due to frameshifts relative to the downstream gene. |
| NA | ENSG00000146587 | RBAK | RB associated KRAB zinc finger | 57786 | This gene encodes a nuclear protein which interacts with the tumor suppressor retinoblastoma 1. The two interacting proteins are thought to act as a transcriptional repressor for promoters which are activated by the E2F1 transcription factor. This protein contains a Kruppel-associated box (KRAB), which is a transcriptional repressor motif. Read-through transcripts that include exons from the downstream gene LOC389458 are expressed from this locus. |
| NA | ENSG00000164638 | SLC29A4 | solute carrier family 29 member 4 | 222962 | This gene encodes a member of the SLC29A/ENT transporter protein family. The encoded membrane protein catalyzes the reuptake of monoamines into presynaptic neurons, thus determining the intensity and duration of monoamine neural signaling. It has been shown to transport several compounds, including serotonin, dopamine, and the neurotoxin 1-methyl-4-phenylpyridinium. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000155034 | FBXL18 | F-box and leucine-rich repeat protein 18 | 80028 | The protein encoded by this gene is a member of a family of proteins that contain an approximately 40-amino acid F-box motif. This motif is important for interaction with SKP1 and for targeting some proteins for degradation. The encoded protein has been shown to control the cellular level of FBXL7, a protein that induces mitotic arrest, by targeting it for polyubiquitylation and proteasomal degradation. Members of the F-box protein family, such as FBXL18, are characterized by an approximately 40-amino acid F-box motif. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains. |
| NA | ENSG00000075624 | ACTB | actin, beta | 60 | This gene encodes one of six different actin proteins. Actins are highly conserved proteins that are involved in cell motility, structure, and integrity. This actin is a major constituent of the contractile apparatus and one of the two nonmuscle cytoskeletal actins. |
| NA | ENSG00000075618 | FSCN1 | fascin actin-bundling protein 1 | 6624 | This gene encodes a member of the fascin family of actin-binding proteins. Fascin proteins organize F-actin into parallel bundles, and are required for the formation of actin-based cellular protrusions. The encoded protein plays a critical role in cell migration, motility, adhesion and cellular interactions. Expression of this gene is known to be regulated by several microRNAs, and overexpression of this gene may play a role in the metastasis of multiple types of cancer by increasing cell motility. Expression of this gene is also a marker for Reed-Sternberg cells in Hodgkin’s lymphoma. A pseudogene of this gene is located on the long arm of chromosome 15. |
| NA | ENSG00000011275 | RNF216 | ring finger protein 216 | 54476 | This gene encodes a cytoplasmic protein which specifically colocalizes and interacts with the serine/threonine protein kinase, receptor-interacting protein (RIP). Zinc finger domains of the encoded protein are required for its interaction with RIP and for inhibition of TNF- and IL1-induced NF-kappa B activation pathways. The encoded protein may also function as an E3 ubiquitin-protein ligase which accepts ubiquitin from E2 ubiquitin-conjugating enzymes and transfers it to substrates. Several alternatively spliced transcript variants have been described for this locus but the full-length natures of only some are known. |
| NA | ENSG00000122674 | CCZ1 | CCZ1 homolog, vacuolar protein trafficking and biogenesis associated | 51622 | NA |
| NA | ENSG00000122512 | PMS2 | PMS1 homolog 2, mismatch repair system component | 5395 | This gene is one of the PMS2 gene family members found in clusters on chromosome 7. The product of this gene is involved in DNA mismatch repair. It forms a heterodimer with MLH1 and this complex interacts with other complexes bound to mismatched bases. Mutations in this gene are associated with hereditary nonpolyposis colorectal cancer, Turcot syndrome, and are a cause of supratentorial primitive neuroectodermal tumors. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000106305 | AIMP2 | aminoacyl tRNA synthetase complex-interacting multifunctional protein 2 | 7965 | The JTV1 gene is located on chromosome 7p22 flanked by two genes, HRI and PMS2. JTV1 and HRI overlap slightly and are arranged in a tail-to-tail fashion. JTV1 and PMS2 are separated by approximately 200 base pairs and are arranged head-to-head. JTV1 is transcribed in the opposite direction compared to HRI and PMS2. The function of the JTV1 gene product is unknown. |
| NA | ENSG00000106346 | USP42 | ubiquitin specific peptidase 42 | 84132 | NA |
| NA | ENSG00000008256 | CYTH3 | cytohesin 3 | 9265 | This gene encodes a member of the PSCD (pleckstrin homology, Sec7 and coiled-coil domains) family. PSCD family members have identical structural organization that consists of an N-terminal coiled-coil motif, a central Sec7 domain, and a C-terminal pleckstrin homology (PH) domain. The coiled-coil motif is involved in homodimerization, the Sec7 domain contains guanine-nucleotide exchange protein (GEP) activity, and the PH domain interacts with phospholipids and is responsible for association of PSCDs with membranes. Members of this family appear to mediate the regulation of protein sorting and membrane trafficking. This encoded protein is involved in the control of Golgi structure and function, and it may have a physiological role in regulating ADP-ribosylation factor protein 6 (ARF) functions, in addition to acting on ARF1. |
| NA | ENSG00000178397 | FAM220A | family with sequence similarity 220 member A | 84792 | NA |
| NA | ENSG00000136238 | RAC1 | ras-related C3 botulinum toxin substrate 1 (rho family, small GTP binding protein Rac1) | 5879 | The protein encoded by this gene is a GTPase which belongs to the RAS superfamily of small GTP-binding proteins. Members of this superfamily appear to regulate a diverse array of cellular events, including the control of cell growth, cytoskeletal reorganization, and the activation of protein kinases. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000164535 | DAGLB | diacylglycerol lipase beta | 221955 | NA |
| NA | ENSG00000136240 | KDELR2 | KDEL endoplasmic reticulum protein retention receptor 2 | 11014 | Retention of resident soluble proteins in the lumen of the endoplasmic reticulum (ER) is achieved in both yeast and animal cells by their continual retrieval from the cis-Golgi, or a pre-Golgi compartment. Sorting of these proteins is dependent on a C-terminal tetrapeptide signal, usually lys-asp-glu-leu (KDEL) in animal cells, and his-asp-glu-leu (HDEL) in S. cerevisiae. This process is mediated by a receptor that recognizes, and binds the tetrapeptide-containing protein, and returns it to the ER. In yeast, the sorting receptor encoded by a single gene, ERD2, is a seven-transmembrane protein. Unlike yeast, several human homologs of the ERD2 gene, constituting the KDEL receptor gene family, have been described. KDELR2 was the second member of the family to be identified, and it encodes a protein which is 83% identical to the KDELR1 gene product. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000136247 | ZDHHC4 | zinc finger DHHC-type containing 4 | 55146 | NA |
| NA | ENSG00000146576 | C7orf26 | chromosome 7 open reading frame 26 | 79034 | NA |
| NA | ENSG00000236609 | ZNF853 | zinc finger protein 853 | 54753 | NA |
| NA | ENSG00000164631 | ZNF12 | zinc finger protein 12 | 7559 | This gene is a member of the krueppel C2H2-type zinc-finger protein family and encodes a protein with eight C2H2-type zinc fingers and a KRAB domain. This nuclear protein is involved in developmental control of gene expression. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000146574 | CCZ1B | CCZ1 homolog B, vacuolar protein trafficking and biogenesis associated | 221960 | NA |
| NA | ENSG00000106399 | RPA3 | replication protein A3 | 6119 | NA |
| NA | ENSG00000219545 | UMAD1 | UBAP1-MVB12-associated (UMA) domain containing 1 | ENSG00000219545 | NA |
| NA | ENSG00000106415 | GLCCI1 | glucocorticoid induced 1 | 113263 | This gene encodes a protein of unknown function. Expression of this gene is induced by glucocorticoids and may be an early marker for glucocorticoid-induced apoptosis. Single nucleotide polymorphisms in this gene are associated with a decreased response to inhaled glucocorticoids in asthmatic patients. |
| NA | ENSG00000003147 | ICA1 | islet cell autoantigen 1 | 3382 | This gene encodes a protein with an arfaptin homology domain that is found both in the cytosol and as membrane-bound form on the Golgi complex and immature secretory granules. This protein is believed to be an autoantigen in insulin-dependent diabetes mellitus and primary Sjogren’s syndrome. Several transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000189043 | NDUFA4 | NDUFA4, mitochondrial complex associated | 4697 | The protein encoded by this gene belongs to the complex I 9kDa subunit family. Mammalian complex I of mitochondrial respiratory chain is composed of 45 different subunits. This protein has NADH dehydrogenase activity and oxidoreductase activity. It transfers electrons from NADH to the respiratory chain. The immediate electron acceptor for the enzyme is believed to be ubiquinone. |
| NA | ENSG00000005108 | THSD7A | thrombospondin type 1 domain containing 7A | 221981 | The protein encoded by this gene is found almost exclusively in endothelial cells from placenta and umbilical cord. The encoded protein appears to interact with alpha(V)beta(3) integrin and paxillin to inhibit endothelial cell migration and tube formation. This protein may be involved in cytoskeletal organization. Variations in this gene may be associated with low bone mineral density in osteoporosis. |
| NA | ENSG00000146530 | VWDE | von Willebrand factor D and EGF domains | 221806 | NA |
| NA | ENSG00000122644 | ARL4A | ADP ribosylation factor like GTPase 4A | 10124 | ADP-ribosylation factor-like 4A is a member of the ADP-ribosylation factor family of GTP-binding proteins. ARL4A is similar to ARL4C and ARL4D and each has a nuclear localization signal and an unusually high guaninine nucleotide exchange rate. ARL4A is located in both the nuclear and extranuclear cell compartments. Multiple transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000006468 | ETV1 | ETS variant 1 | 2115 | This gene encodes a member of the ETS (E twenty-six) family of transcription factors. The ETS proteins regulate many target genes that modulate biological processes like cell growth, angiogenesis, migration, proliferation and differentiation. All ETS proteins contain an ETS DNA-binding domain that binds to DNA sequences containing the consensus 5’-CGGA[AT]-3’. The protein encoded by this gene contains a conserved short acidic transactivation domain (TAD) in the N-terminal region, in addition to the ETS DNA-binding domain in the C-terminal region. This gene is involved in chromosomal translocations, which result in multiple fusion proteins including EWS-ETV1 in Erwing sarcoma and at least 10 ETV1 partners (see PMID: 19657377, Table 1) in prostate cancer. In addition to chromosomal rearrangement, this gene is overexpressed in prostate cancer, melanoma and gastrointestinal stromal tumor. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000136267 | DGKB | diacylglycerol kinase beta | 1607 | Diacylglycerol kinases (DGKs) are regulators of the intracellular concentration of the second messenger diacylglycerol (DAG) and thus play a key role in cellular processes. Nine mammalian isotypes have been identified, which are encoded by separate genes. Mammalian DGK isozymes contain a conserved catalytic (kinase) domain and a cysteine-rich domain (CRD). The protein encoded by this gene is a diacylglycerol kinase, beta isotype. Two alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000106524 | ANKMY2 | ankyrin repeat and MYND domain containing 2 | 57037 | NA |
| NA | ENSG00000136261 | BZW2 | basic leucine zipper and W2 domains 2 | 28969 | NA |
| NA | ENSG00000106537 | TSPAN13 | tetraspanin 13 | 27075 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. |
| NA | ENSG00000106546 | AHR | aryl hydrocarbon receptor | 196 | The protein encoded by this gene is a ligand-activated helix-loop-helix transcription factor involved in the regulation of biological responses to planar aromatic hydrocarbons. This receptor has been shown to regulate xenobiotic-metabolizing enzymes such as cytochrome P450. Before ligand binding, the encoded protein is sequestered in the cytoplasm; upon ligand binding, this protein moves to the nucleus and stimulates transcription of target genes. |
| NA | ENSG00000071189 | SNX13 | sorting nexin 13 | 23161 | This gene encodes a PHOX domain- and RGS domain-containing protein that belongs to the sorting nexin (SNX) family and the regulator of G protein signaling (RGS) family. The PHOX domain is a phosphoinositide binding domain, and the SNX family members are involved in intracellular trafficking. The RGS family members are regulatory molecules that act as GTPase activating proteins for G alpha subunits of heterotrimeric G proteins. The RGS domain of this protein interacts with G alpha(s), accelerates its GTP hydrolysis, and attenuates G alpha(s)-mediated signaling. Overexpression of this protein delayes lysosomal degradation of the epidermal growth factor receptor. Because of its bifunctional role, this protein may link heterotrimeric G protein signaling and vesicular trafficking. |
| NA | ENSG00000048052 | HDAC9 | histone deacetylase 9 | 9734 | Histones play a critical role in transcriptional regulation, cell cycle progression, and developmental events. Histone acetylation/deacetylation alters chromosome structure and affects transcription factor access to DNA. The protein encoded by this gene has sequence homology to members of the histone deacetylase family. This gene is orthologous to the Xenopus and mouse MITR genes. The MITR protein lacks the histone deacetylase catalytic domain. It represses MEF2 activity through recruitment of multicomponent corepressor complexes that include CtBP and HDACs. This encoded protein may play a role in hematopoiesis. Multiple alternatively spliced transcripts have been described for this gene but the full-length nature of some of them has not been determined. |
| NA | ENSG00000105849 | TWISTNB | TWIST neighbor | 221830 | NA |
| NA | ENSG00000183742 | MACC1 | metastasis associated in colon cancer 1 | 346389 | MACC1 is a key regulator of the hepatocyte growth factor (HGF; MIM 142409)-HGF receptor (HGFR, or MET; MIM 164860) pathway, which is involved in cellular growth, epithelial-mesenchymal transition, angiogenesis, cell motility, invasiveness, and metastasis. Expression of MACC1 in colon cancer (MIM 114500) specimens is an independent prognostic indicator for metastasis formation and metastasis-free survival (Stein et al., 2009 [PubMed 19098908]). |
| NA | ENSG00000105855 | ITGB8 | integrin subunit beta 8 | 3696 | This gene is a member of the integrin beta chain family and encodes a single-pass type I membrane protein with a VWFA domain and four cysteine-rich repeats. This protein noncovalently binds to an alpha subunit to form a heterodimeric integrin complex. In general, integrin complexes mediate cell-cell and cell-extracellular matrix interactions and this complex plays a role in human airway epithelial proliferation. Alternatively spliced variants which encode different protein isoforms have been described; however, not all variants have been fully characterized. |
| NA | ENSG00000164651 | SP8 | Sp8 transcription factor | 221833 | The protein encoded by this gene is an SP family transcription factor that in mouse has been shown to be essential for proper limb development. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000105866 | SP4 | Sp4 transcription factor | 6671 | NA |
| NA | ENSG00000105877 | DNAH11 | dynein axonemal heavy chain 11 | 8701 | This gene encodes a ciliary outer dynein arm protein and is a member of the dynein heavy chain family. It is a microtubule-dependent motor ATPase and has been reported to be involved in the movement of respiratory cilia. Mutations in this gene have been implicated in causing Kartagener Syndrome (a combination of situs inversus totalis and Primary Ciliary Dyskinesia (PCD), also called Immotile Cilia Syndrome 1 (ICS1)) and male sterility. |
| NA | ENSG00000164649 | CDCA7L | cell division cycle associated 7 like | 55536 | NA |
| NA | ENSG00000136237 | RAPGEF5 | Rap guanine nucleotide exchange factor 5 | 9771 | Members of the RAS (see HRAS; MIM 190020) subfamily of GTPases function in signal transduction as GTP/GDP-regulated switches that cycle between inactive GDP- and active GTP-bound states. Guanine nucleotide exchange factors (GEFs), such as RAPGEF5, serve as RAS activators by promoting acquisition of GTP to maintain the active GTP-bound state and are the key link between cell surface receptors and RAS activation (Rebhun et al., 2000 [PubMed 10934204]). |
| NA | ENSG00000105889 | STEAP1B | STEAP family member 1B | 256227 | NA |
| NA | ENSG00000196683 | TOMM7 | translocase of outer mitochondrial membrane 7 | 54543 | This gene encodes a subunit of the translocase of the outer mitochondrial membrane. The encoded protein regulates the assembly and stability of the translocase complex. |
| NA | ENSG00000122591 | FAM126A | family with sequence similarity 126 member A | 84668 | The protein encoded by this gene may play a part in the beta-catenin/Lef signaling pathway. Expression of this gene is down-regulated by beta-catenin. Defects in this gene are a cause of hypomyelination with congenital cataract (HCC). |
| NA | ENSG00000122550 | KLHL7 | kelch like family member 7 | 55975 | This gene encodes a BTB-Kelch-related protein. The encoded protein may be involved in protein degradation. Mutations in this gene have been associated with retinitis pigmentosa 42. |
| NA | ENSG00000156928 | MALSU1 | mitochondrial assembly of ribosomal large subunit 1 | 115416 | NA |
| NA | ENSG00000136231 | IGF2BP3 | insulin like growth factor 2 mRNA binding protein 3 | 10643 | The protein encoded by this gene is primarily found in the nucleolus, where it can bind to the 5’ UTR of the insulin-like growth factor II leader 3 mRNA and may repress translation of insulin-like growth factor II during late development. The encoded protein contains several KH domains, which are important in RNA binding and are known to be involved in RNA synthesis and metabolism. A pseudogene exists on chromosome 7, and there are putative pseudogenes on other chromosomes. |
| NA | ENSG00000164548 | TRA2A | transformer 2 alpha homolog (Drosophila) | 29896 | This gene is a member of the transformer 2 homolog family and encodes a protein with several RRM (RNA recognition motif) domains. This phosphorylated nuclear protein binds to specific RNA sequences and plays a role in the regulation of pre-mRNA splicing. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000169193 | CCDC126 | coiled-coil domain containing 126 | 90693 | NA |
| NA | ENSG00000188732 | FAM221A | family with sequence similarity 221 member A | 340277 | NA |
| NA | ENSG00000105926 | MPP6 | membrane protein, palmitoylated 6 | 51678 | Members of the peripheral membrane-associated guanylate kinase (MAGUK) family function in tumor suppression and receptor clustering by forming multiprotein complexes containing distinct sets of transmembrane, cytoskeletal, and cytoplasmic signaling proteins. All MAGUKs contain a PDZ-SH3-GUK core and are divided into 4 subfamilies, DLG-like (see DLG1; MIM 601014), ZO1-like (see TJP1; MIM 601009), p55-like (see MPP1; MIM 305360), and LIN2-like (see CASK; MIM 300172), based on their size and the presence of additional domains. MPP6 is a member of the p55-like MAGUK subfamily (Tseng et al., 2001 [PubMed 11311936]). |
| NA | ENSG00000070882 | OSBPL3 | oxysterol binding protein like 3 | 26031 | This gene encodes a member of the oxysterol-binding protein (OSBP) family, a group of intracellular lipid receptors. Most members contain an N-terminal pleckstrin homology domain and a highly conserved C-terminal OSBP-like sterol-binding domain. The encoded protein is involved in the regulation of cell adhesion and organization of the actin cytoskeleton. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000172115 | CYCS | cytochrome c, somatic | 54205 | This gene encodes a small heme protein that functions as a central component of the electron transport chain in mitochondria. The encoded protein associates with the inner membrane of the mitochondrion where it accepts electrons from cytochrome b and transfers them to the cytochrome oxidase complex. This protein is also involved in initiation of apoptosis. Mutations in this gene are associated with autosomal dominant nonsyndromic thrombocytopenia. Numerous processed pseudogenes of this gene are found throughout the human genome. |
| NA | ENSG00000050344 | NFE2L3 | nuclear factor, erythroid 2 like 3 | 9603 | This gene encodes a member of the cap ‘n’ collar basic-region leucine zipper family of transcription factors. The encoded protein heterodimerizes with small musculoaponeurotic fibrosarcoma factors to bind antioxidant response elements in target genes. This protein is a membrane bound glycoprotein that is targeted to the endoplasmic reticulum and the nuclear envelope. Pseudogenes of this gene are found on chromosomes 16, 17, and 18. |
| NA | ENSG00000122566 | HNRNPA2B1 | heterogeneous nuclear ribonucleoprotein A2/B1 | 3181 | This gene belongs to the A/B subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has two repeats of quasi-RRM domains that bind to RNAs. This gene has been described to generate two alternatively spliced transcript variants which encode different isoforms. |
| NA | ENSG00000122565 | CBX3 | chromobox 3 | 11335 | At the nuclear envelope, the nuclear lamina and heterochromatin are adjacent to the inner nuclear membrane. The protein encoded by this gene binds DNA and is a component of heterochromatin. This protein also can bind lamin B receptor, an integral membrane protein found in the inner nuclear membrane. The dual binding functions of the encoded protein may explain the association of heterochromatin with the inner nuclear membrane. This protein binds histone H3 tails methylated at Lys-9 sites. This protein is also recruited to sites of ultraviolet-induced DNA damage and double-strand breaks. Two transcript variants encoding the same protein but differing in the 5’ UTR, have been found for this gene. |
| NA | ENSG00000086300 | SNX10 | sorting nexin 10 | 29887 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. This protein does not contain a coiled coil region, like some family members. This gene may play a role in regulating endosome homeostasis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000005020 | SKAP2 | src kinase associated phosphoprotein 2 | 8935 | The protein encoded by this gene shares homology with Src kinase-associated phosphoprotein 1, and is a substrate of Src family kinases. It is an adaptor protein that is thought to play an essential role in the Src signaling pathway, and in regulating proper activation of the immune system. This protein contains an amino terminal coiled-coil domain for self-dimerization, a plecskstrin homology (PH) domain required for interactions with lipids at the membrane, and a Src homology (SH3) domain at the carboxy terminus. Some reports indicate that this protein inhibits actin polymerization through interactions with actin assembly factors, and might negatively regulate the invasiveness of tumors by modulating actin assembly. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000106049 | HIBADH | 3-hydroxyisobutyrate dehydrogenase | 11112 | This gene encodes a mitochondrial 3-hydroxyisobutyrate dehydrogenase enzyme. The encoded protein plays a critical role in the catabolism of L-valine by catalyzing the oxidation of 3-hydroxyisobutyrate to methylmalonate semialdehyde. |
| NA | ENSG00000106052 | TAX1BP1 | Tax1 binding protein 1 | 8887 | This gene encodes a HTLV-1 tax1 binding protein. The encoded protein interacts with TNFAIP3, and inhibits TNF-induced apoptosis by mediating the TNFAIP3 anti-apoptotic activity. Degradation of this protein by caspase-3-like family proteins is associated with apoptosis induced by TNF. This protein may also have a role in the inhibition of inflammatory signaling pathways. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000153814 | JAZF1 | JAZF zinc finger 1 | 221895 | This gene encodes a nuclear protein with three C2H2-type zinc fingers, and functions as a transcriptional repressor. Chromosomal aberrations involving this gene are associated with endometrial stromal tumors. Alternatively spliced variants which encode different protein isoforms have been described; however, not all variants have been fully characterized |
| NA | ENSG00000106069 | LOC101928168 | uncharacterized LOC101928168 | 101928168 | NA |
| NA | ENSG00000106069 | CHN2 | chimerin 2 | 1124 | This gene encodes a guanosine triphosphate (GTP)-metabolizing protein that contains a phorbol-ester/diacylglycerol (DAG)-type zinc finger, a Rho-GAP domain, and an SH2 domain. The encoded protein translocates from the cytosol to the Golgi apparatus membrane upon binding by diacylglycerol (DAG). Activity of this protein is important in cell proliferation and migration, and expression changes in this gene have been detected in cancers. A mutation in this gene has also been associated with schizophrenia in men. Alternative transcript splicing and the use of alternative promoters results in multiple transcript variants. |
| NA | ENSG00000176532 | PRR15 | proline rich 15 | 222171 | NA |
| NA | ENSG00000122574 | WIPF3 | WAS/WASL interacting protein family member 3 | 644150 | NA |
| NA | ENSG00000136193 | SCRN1 | secernin 1 | 9805 | This gene likely encodes a member of the secernin family of proteins. A similar protein in rat functions in regulation of exocytosis in mast cells. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000106080 | FKBP14 | FK506 binding protein 14 | 55033 | The protein encoded by this gene is a member of the FK506-binding protein family of peptidyl-prolyl cis-trans isomerases. The encoded protein is found in the lumen of the endoplasmic reticulum, where it is thought to accelerate protein folding. Defects in this gene are a cause of a type of Ehlers-Danlos syndrome (EDS). Both a protein-coding variant and noncoding variants are transcribed from this gene. |
| NA | ENSG00000106086 | PLEKHA8 | pleckstrin homology domain containing A8 | 84725 | NA |
| NA | ENSG00000180354 | MTURN | maturin, neural progenitor differentiation regulator homolog (Xenopus) | 222166 | NA |
| NA | ENSG00000180233 | ZNRF2 | zinc and ring finger 2, E3 ubiquitin protein ligase | 223082 | NA |
| NA | ENSG00000106100 | NOD1 | nucleotide binding oligomerization domain containing 1 | 10392 | This gene encodes a member of the NOD (nucleotide-binding oligomerization domain) family. This member is a cytosolic protein. It contains an N-terminal caspase recruitment domain (CARD), a centrally located nucleotide-binding domain (NBD), and 10 tandem leucine-rich repeats (LRRs) in its C terminus. The CARD is involved in apoptotic signaling, LRRs participate in protein-protein interactions, and mutations in the NBD may affect the process of oligomerization and subsequent function of the LRR domain. This protein is an intracellular pattern-recognition receptor (PRR) that initiates inflammation in response to a subset of bacteria through the detection of bacterial diaminopimelic acid. Multiple alternatively spliced transcript variants differring in the 5’ UTR have been described, but the full-length nature of these variants has not been determined. |
| NA | ENSG00000006625 | GGCT | gamma-glutamylcyclotransferase | 79017 | The protein encoded by this gene catalyzes the formation of 5-oxoproline from gamma-glutamyl dipeptides, the penultimate step in glutathione catabolism, and may play a critical role in glutathione homeostasis. The encoded protein may also play a role in cell proliferation, and the expression of this gene is a potential marker for cancer. Pseudogenes of this gene are located on the long arm of chromosome 5 and the short arm of chromosomes 2 and 20. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000106105 | GARS | glycyl-tRNA synthetase | 2617 | This gene encodes glycyl-tRNA synthetase, one of the aminoacyl-tRNA synthetases that charge tRNAs with their cognate amino acids. The encoded enzyme is an (alpha)2 dimer which belongs to the class II family of tRNA synthetases. It has been shown to be a target of autoantibodies in the human autoimmune diseases, polymyositis or dermatomyositis. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000106125 | FAM188B | family with sequence similarity 188 member B | 84182 | NA |
| NA | ENSG00000078549 | ADCYAP1R1 | ADCYAP receptor type I | 117 | This gene encodes type I adenylate cyclase activating polypeptide receptor, which is a membrane-associated protein and shares significant homology with members of the glucagon/secretin receptor family. This receptor mediates diverse biological actions of adenylate cyclase activating polypeptide 1 and is positively coupled to adenylate cyclase. Multiple alternatively spliced transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000106355 | LSM5 | LSM5 homolog, U6 small nuclear RNA and mRNA degradation associated | 23658 | Sm-like proteins were identified in a variety of organisms based on sequence homology with the Sm protein family (see SNRPD2; MIM 601061). Sm-like proteins contain the Sm sequence motif, which consists of 2 regions separated by a linker of variable length that folds as a loop. The Sm-like proteins are thought to form a stable heteromer present in tri-snRNP particles, which are important for pre-mRNA splicing. |
| NA | ENSG00000122642 | FKBP9 | FK506 binding protein 9 | 11328 | NA |
| NA | ENSG00000122643 | NT5C3A | 5’-nucleotidase, cytosolic IIIA | 51251 | This gene encodes a member of the 5’-nucleotidase family of enzymes that catalyze the dephosphorylation of nucleoside 5’-monophosphates. The encoded protein is the type 1 isozyme of pyrimidine 5’ nucleotidase and catalyzes the dephosphorylation of pyrimidine 5’ monophosphates. Mutations in this gene are a cause of hemolytic anemia due to uridine 5-prime monophosphate hydrolase deficiency. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and pseudogenes of this gene are located on the long arm of chromosomes 3 and 4. |
| NA | ENSG00000164610 | RP9 | retinitis pigmentosa 9 (autosomal dominant) | 6100 | The protein encoded by this gene can be bound and phosphorylated by the protooncogene PIM1 product, a serine/threonine protein kinase . This protein localizes in nuclear speckles containing the splicing factors, and has a role in pre-mRNA splicing. CBF1-interacting protein (CIR), a corepressor of CBF1, can also bind to this protein and effects alternative splicing. Mutations in this gene result in autosomal dominant retinitis pigmentosa-9. This gene has a pseudogene (GeneID: 441212), which is located in tandem array approximately 166 kb distal to this gene. |
| NA | ENSG00000122507 | BBS9 | Bardet-Biedl syndrome 9 | 27241 | This gene is downregulated by parathyroid hormone in osteoblastic cells, and therefore, is thought to be involved in parathyroid hormone action in bones. The exact function of this gene has not yet been determined. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000173852 | DPY19L1 | dpy-19 like 1 (C. elegans) | 23333 | NA |
| NA | ENSG00000122557 | HERPUD2 | HERPUD family member 2 | 64224 | NA |
| NA | ENSG00000122545 | SEPT7 | septin 7 | 989 | This gene encodes a protein that is highly similar to the CDC10 protein of Saccharomyces cerevisiae. The protein also shares similarity with Diff 6 of Drosophila and with H5 of mouse. Each of these similar proteins, including the yeast CDC10, contains a GTP-binding motif. The yeast CDC10 protein is a structural component of the 10 nm filament which lies inside the cytoplasmic membrane and is essential for cytokinesis. This human protein functions in gliomagenesis and in the suppression of glioma cell growth, and it is required for the association of centromere-associated protein E with the kinetochore. Alternative splicing results in multiple transcript variants. Several related pseudogenes have been identified on chromosomes 5, 7, 9, 10, 11, 14, 17 and 19. |
| NA | ENSG00000122547 | EEPD1 | endonuclease/exonuclease/phosphatase family domain containing 1 | 80820 | NA |
| NA | ENSG00000011426 | ANLN | anillin actin binding protein | 54443 | This gene encodes an actin-binding protein that plays a role in cell growth and migration, and in cytokinesis. The encoded protein is thought to regulate actin cytoskeletal dynamics in podocytes, components of the glomerulus. Mutations in this gene are associated with focal segmental glomerulosclerosis 8. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000155849 | ELMO1 | engulfment and cell motility 1 | 9844 | This gene encodes a member of the engulfment and cell motility protein family. These proteins interact with dedicator of cytokinesis proteins to promote phagocytosis and cell migration. Increased expression of this gene and dedicator of cytokinesis 1 may promote glioma cell invasion, and single nucleotide polymorphisms in this gene may be associated with diabetic nephropathy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000086289 | EPDR1 | ependymin related 1 | 54749 | The protein encoded by this gene is a type II transmembrane protein that is similar to two families of cell adhesion molecules, the protocadherins and ependymins. This protein may play a role in calcium-dependent cell adhesion. This protein is glycosylated, and the orthologous mouse protein is localized to the lysosome. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 8. |
| NA | ENSG00000010270 | STARD3NL | STARD3 N-terminal like | 83930 | This gene encodes a late-endosomal protein that contains a conserved MENTAL (MLN64 N-terminal) domain. The encoded protein binds cholesterol molecules and may play a role in endosomal cholesterol transport through interactions with metastatic lymph node protein 64 (MLN64). |
| NA | ENSG00000078053 | AMPH | amphiphysin | 273 | This gene encodes a protein associated with the cytoplasmic surface of synaptic vesicles. A subset of patients with stiff-man syndrome who were also affected by breast cancer are positive for autoantibodies against this protein. Alternate splicing of this gene results in two transcript variants encoding different isoforms. Additional splice variants have been described, but their full length sequences have not been determined. A pseudogene of this gene is found on chromosome 11. |
| NA | ENSG00000006715 | VPS41 | VPS41, HOPS complex subunit | 27072 | Vesicle mediated protein sorting plays an important role in segregation of intracellular molecules into distinct organelles. Genetic studies in yeast have identified more than 40 vacuolar protein sorting (VPS) genes involved in vesicle transport to vacuoles. This gene encodes the human ortholog of yeast Vps41 protein which is also conserved in Drosophila, tomato, and Arabidopsis. Expression studies in yeast and human indicate that this protein may be involved in the formation and fusion of transport vesicles from the Golgi. Several transcript variants encoding different isoforms have been described for this gene, however, the full-length nature of not all is known. |
| NA | ENSG00000006451 | RALA | v-ral simian leukemia viral oncogene homolog A (ras related) | 5898 | The product of this gene belongs to the small GTPase superfamily, Ras family of proteins. GTP-binding proteins mediate the transmembrane signaling initiated by the occupancy of certain cell surface receptors. This gene encodes a low molecular mass ras-like GTP-binding protein that shares about 50% similarity with other ras proteins. |
| NA | ENSG00000168303 | MPLKIP | M-phase specific PLK1 interacting protein | 136647 | The protein encoded by this gene localizes to the centrosome during mitosis and to the midbody during cytokinesis. The protein is phosphorylated by cyclin-dependent kinase 1 during mitosis and subsequently interacts with polo-like kinase 1. The protein is thought to function in regulating mitosis and cytokinesis. Mutations in this gene result in nonphotosensitive trichothiodystrophy. |
| NA | ENSG00000175600 | SUGCT | succinyl-CoA:glutarate-CoA transferase | 79783 | This gene encodes a protein that is similar to members of the CaiB/baiF CoA-transferase protein family. Mutations in this gene are associated with glutaric aciduria type III. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000122641 | INHBA | inhibin beta A | 3624 | The inhibin beta A subunit joins the alpha subunit to form a pituitary FSH secretion inhibitor. Inhibin has been shown to regulate gonadal stromal cell proliferation negatively and to have tumor-suppressor activity. In addition, serum levels of inhibin have been shown to reflect the size of granulosa-cell tumors and can therefore be used as a marker for primary as well as recurrent disease. Because expression in gonadal and various extragonadal tissues may vary severalfold in a tissue-specific fashion, it is proposed that inhibin may be both a growth/differentiation factor and a hormone. Furthermore, the beta A subunit forms a homodimer, activin A, and also joins with a beta B subunit to form a heterodimer, activin AB, both of which stimulate FSH secretion. Finally, it has been shown that the beta A subunit mRNA is identical to the erythroid differentiation factor subunit mRNA and that only one gene for this mRNA exists in the human genome. |
| NA | ENSG00000106571 | GLI3 | GLI family zinc finger 3 | 2737 | This gene encodes a protein which belongs to the C2H2-type zinc finger proteins subclass of the Gli family. They are characterized as DNA-binding transcription factors and are mediators of Sonic hedgehog (Shh) signaling. The protein encoded by this gene localizes in the cytoplasm and activates patched Drosophila homolog (PTCH) gene expression. It is also thought to play a role during embryogenesis. Mutations in this gene have been associated with several diseases, including Greig cephalopolysyndactyly syndrome, Pallister-Hall syndrome, preaxial polydactyly type IV, and postaxial polydactyly types A1 and B. |
| NA | ENSG00000106588 | PSMA2 | proteasome subunit alpha 2 | 5683 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. An essential function of a modified proteasome, the immunoproteasome, is the processing of class I MHC peptides. This gene encodes a member of the peptidase T1A family, that is a 20S core alpha subunit. |
| NA | ENSG00000106591 | MRPL32 | mitochondrial ribosomal protein L32 | 64983 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein that belongs to the L32 ribosomal protein family. A pseudogene corresponding to this gene is found on chromosome Xp. |
| NA | ENSG00000002746 | HECW1 | HECT, C2 and WW domain containing E3 ubiquitin protein ligase 1 | 23072 | NA |
| NA | ENSG00000164543 | STK17A | serine/threonine kinase 17a | 9263 | This gene is a member of the DAP kinase-related apoptosis-inducing protein kinase family and encodes an autophosphorylated nuclear protein with a protein kinase domain. The protein has apoptosis-inducing activity. |
| NA | ENSG00000106603 | COA1 | cytochrome c oxidase assembly factor 1 homolog | 55744 | NA |
| NA | ENSG00000106605 | BLVRA | biliverdin reductase A | 644 | The protein encoded by this gene belongs to the biliverdin reductase family, members of which catalyze the conversion of biliverdin to bilirubin in the presence of NADPH or NADH. Mutations in this gene are associated with hyperbiliverdinemia. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000106608 | URGCP | upregulator of cell proliferation | 55665 | URG4 is upregulated in the presence of hepatitis B virus (HBV)-encoded X antigen (HBxAg) and may contribute to the development of hepatocellular carcinoma by promoting hepatocellular growth and survival (Tufan et al., 2002 [PubMed 12082552]). |
| NA | ENSG00000078967 | UBE2D4 | ubiquitin conjugating enzyme E2 D4 (putative) | 51619 | NA |
| NA | ENSG00000136279 | DBNL | drebrin like | 28988 | NA |
| NA | ENSG00000164708 | PGAM2 | phosphoglycerate mutase 2 | 5224 | Phosphoglycerate mutase (PGAM) catalyzes the reversible reaction of 3-phosphoglycerate (3-PGA) to 2-phosphoglycerate (2-PGA) in the glycolytic pathway. The PGAM is a dimeric enzyme containing, in different tissues, different proportions of a slow-migrating muscle (MM) isozyme, a fast-migrating brain (BB) isozyme, and a hybrid form (MB). This gene encodes muscle-specific PGAM subunit. Mutations in this gene cause muscle phosphoglycerate mutase eficiency, also known as glycogen storage disease X. |
| NA | ENSG00000122678 | POLM | polymerase (DNA) mu | 27434 | NA |
| NA | ENSG00000106624 | AEBP1 | AE binding protein 1 | 165 | This gene encodes a member of carboxypeptidase A protein family. The encoded protein may function as a transcriptional repressor and play a role in adipogenesis and smooth muscle cell differentiation. Studies in mice suggest that this gene functions in wound healing and abdominal wall development. Overexpression of this gene is associated with glioblastoma. |
| NA | ENSG00000106628 | POLD2 | polymerase (DNA) delta 2, accessory subunit | 5425 | This gene encodes the 50-kDa catalytic subunit of DNA polymerase delta. DNA polymerase delta possesses both polymerase and 3’ to 5’ exonuclease activity and plays a critical role in DNA replication and repair. The encoded protein is required for the stimulation of DNA polymerase delta activity by the processivity cofactor proliferating cell nuclear antigen (PCNA). Expression of this gene may be a marker for ovarian carcinomas. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 5. |
| NA | ENSG00000106631 | MYL7 | myosin light chain 7 | 58498 | NA |
| NA | ENSG00000106633 | GCK | glucokinase | 2645 | Hexokinases phosphorylate glucose to produce glucose-6-phosphate, the first step in most glucose metabolism pathways. Alternative splicing of this gene results in three tissue-specific forms of glucokinase, one found in pancreatic islet beta cells and two found in liver. The protein localizes to the outer membrane of mitochondria. In contrast to other forms of hexokinase, this enzyme is not inhibited by its product glucose-6-phosphate but remains active while glucose is abundant. Mutations in this gene have been associated with non-insulin dependent diabetes mellitus (NIDDM), maturity onset diabetes of the young, type 2 (MODY2) and persistent hyperinsulinemic hypoglycemia of infancy (PHHI). |
| NA | ENSG00000106636 | YKT6 | YKT6 v-SNARE homolog (S. cerevisiae) | 10652 | This gene product is one of the SNARE recognition molecules implicated in vesicular transport between secretory compartments. It is a membrane associated, isoprenylated protein that functions at the endoplasmic reticulum-Golgi transport step. This protein is highly conserved from yeast to human and can functionally complement the loss of the yeast homolog in the yeast secretory pathway. |
| NA | ENSG00000015676 | NUDCD3 | NudC domain containing 3 | 23386 | The product of this gene functions to maintain the stability of dynein intermediate chain. Depletion of this gene product results in aggregation and degradation of dynein intermediate chain, mislocalization of the dynein complex from kinetochores, spindle microtubules, and spindle poles, and loss of gamma-tubulin from spindle poles. The protein localizes to the Golgi apparatus during interphase, and levels of the protein increase after the G1/S transition. |
| NA | ENSG00000136271 | DDX56 | DEAD-box helicase 56 | 54606 | This gene encodes a member of the DEAD box protein family. DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. The protein encoded by this gene shows ATPase activity in the presence of polynucleotides and associates with nucleoplasmic 65S preribosomal particles. This gene may be involved in ribosome synthesis, most likely during assembly of the large 60S ribosomal subunit. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000158604 | TMED4 | transmembrane p24 trafficking protein 4 | 222068 | NA |
| NA | ENSG00000105953 | OGDH | oxoglutarate dehydrogenase | 4967 | This gene encodes one subunit of the 2-oxoglutarate dehydrogenase complex. This complex catalyzes the overall conversion of 2-oxoglutarate (alpha-ketoglutarate) to succinyl-CoA and CO(2) during the Krebs cycle. The protein is located in the mitochondrial matrix and uses thiamine pyrophosphate as a cofactor. A congenital deficiency in 2-oxoglutarate dehydrogenase activity is believed to lead to hypotonia, metabolic acidosis, and hyperlactatemia. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000122515 | ZMIZ2 | zinc finger MIZ-type containing 2 | 83637 | ZMIZ2 and ZMIZ1 (MIM 607159) are members of a PIAS (see MIM 603566)-like family of proteins that interact with nuclear hormone receptors. ZMIZ2 interacts with androgen receptor (AR; MIM 313700) and enhances AR-mediated transcription (Huang et al., 2005 [PubMed 16051670]). |
| NA | ENSG00000196262 | PPIA | peptidylprolyl isomerase A | 5478 | This gene encodes a member of the peptidyl-prolyl cis-trans isomerase (PPIase) family. PPIases catalyze the cis-trans isomerization of proline imidic peptide bonds in oligopeptides and accelerate the folding of proteins. The encoded protein is a cyclosporin binding-protein and may play a role in cyclosporin A-mediated immunosuppression. The protein can also interact with several HIV proteins, including p55 gag, Vpr, and capsid protein, and has been shown to be necessary for the formation of infectious HIV virions. Multiple pseudogenes that map to different chromosomes have been reported. |
| NA | ENSG00000105968 | H2AFV | H2A histone family member V | 94239 | Histones are basic nuclear proteins that are responsible for the nucleosome structure of the chromosomal fiber in eukaryotes. Nucleosomes consist of approximately 146 bp of DNA wrapped around a histone octamer composed of pairs of each of the four core histones (H2A, H2B, H3, and H4). The chromatin fiber is further compacted through the interaction of a linker histone, H1, with the DNA between the nucleosomes to form higher order chromatin structures. This gene encodes a replication-independent histone that is a member of the histone H2A family. Several transcript variants encoding different isoforms, have been identified for this gene. |
| NA | ENSG00000146676 | PURB | purine-rich element binding protein B | 5814 | This gene product is a sequence-specific, single-stranded DNA-binding protein. It binds preferentially to the single strand of the purine-rich element termed PUR, which is present at origins of replication and in gene flanking regions in a variety of eukaryotes from yeasts through humans. Thus, it is implicated in the control of both DNA replication and transcription. Deletion of this gene has been associated with myelodysplastic syndrome and acute myelogenous leukemia. |
| NA | ENSG00000136280 | CCM2 | CCM2 scaffolding protein | 83605 | This gene encodes a scaffold protein that functions in the stress-activated p38 Mitogen-activated protein kinase (MAPK) signaling cascade. The protein interacts with SMAD specific E3 ubiquitin protein ligase 1 (also known as SMURF1) via a phosphotyrosine binding domain to promote RhoA degradation. The protein is required for normal cytoskeletal structure, cell-cell interactions, and lumen formation in endothelial cells. Mutations in this gene result in cerebral cavernous malformations. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000136274 | NACAD | NAC alpha domain containing | 23148 | NA |
| NA | ENSG00000136270 | TBRG4 | transforming growth factor beta regulator 4 | 9238 | NA |
| NA | ENSG00000146674 | IGFBP3 | insulin like growth factor binding protein 3 | 3486 | This gene is a member of the insulin-like growth factor binding protein (IGFBP) family and encodes a protein with an IGFBP domain and a thyroglobulin type-I domain. The protein forms a ternary complex with insulin-like growth factor acid-labile subunit (IGFALS) and either insulin-like growth factor (IGF) I or II. In this form, it circulates in the plasma, prolonging the half-life of IGFs and altering their interaction with cell surface receptors. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000136205 | TNS3 | tensin 3 | 64759 | NA |
| NA | ENSG00000136273 | HUS1 | HUS1 checkpoint clamp component | 3364 | The protein encoded by this gene is a component of an evolutionarily conserved, genotoxin-activated checkpoint complex that is involved in the cell cycle arrest in response to DNA damage. This protein forms a heterotrimeric complex with checkpoint proteins RAD9 and RAD1. In response to DNA damage, the trimeric complex interacts with another protein complex consisting of checkpoint protein RAD17 and four small subunits of the replication factor C (RFC), which loads the combined complex onto the chromatin. The DNA damage induced chromatin binding has been shown to depend on the activation of the checkpoint kinase ATM, and is thought to be an early checkpoint signaling event. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000132436 | FIGNL1 | fidgetin like 1 | 63979 | NA |
| NA | ENSG00000106078 | COBL | cordon-bleu WH2 repeat protein | 23242 | NA |
| NA | ENSG00000132432 | SEC61G | Sec61 translocon gamma subunit | 23480 | The Sec61 complex is the central component of the protein translocation apparatus of the endoplasmic reticulum (ER) membrane. Oligomers of the Sec61 complex form a transmembrane channel where proteins are translocated across and integrated into the ER membrane. This complex consists of three membrane proteins- alpha, beta, and gamma. This gene encodes the gamma-subunit protein. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000146648 | EGFR | epidermal growth factor receptor | 1956 | The protein encoded by this gene is a transmembrane glycoprotein that is a member of the protein kinase superfamily. This protein is a receptor for members of the epidermal growth factor family. EGFR is a cell surface protein that binds to epidermal growth factor. Binding of the protein to a ligand induces receptor dimerization and tyrosine autophosphorylation and leads to cell proliferation. Mutations in this gene are associated with lung cancer. Multiple alternatively spliced transcript variants that encode different protein isoforms have been found for this gene. |
| NA | ENSG00000132434 | LANCL2 | LanC like 2 | 55915 | NA |
| NA | ENSG00000154978 | VOPP1 | vesicular, overexpressed in cancer, prosurvival protein 1 | 81552 | NA |
| NA | ENSG00000146729 | GBAS | glioblastoma amplified sequence | 2631 | This gene encodes a member of the NipSnap family of proteins that may be involved in vesicular transport. The encoded protein is localized to mitochondria and plays a role in oxidative phosphorylation. A pseudogene of this gene is located on the long arm of chromosome 2. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000239789 | MRPS17 | mitochondrial ribosomal protein S17 | 51373 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S17P family. The encoded protein is moderately conserved between human mitochondrial and prokaryotic ribosomal proteins. Pseudogenes corresponding to this gene are found on chromosomes 1p, 3p, 6q, 14p, 18q, and Xq. |
| NA | ENSG00000146733 | PSPH | phosphoserine phosphatase | 5723 | The protein encoded by this gene belongs to a subfamily of the phosphotransferases. This encoded enzyme is responsible for the third and last step in L-serine formation. It catalyzes magnesium-dependent hydrolysis of L-phosphoserine and is also involved in an exchange reaction between L-serine and L-phosphoserine. Deficiency of this protein is thought to be linked to Williams syndrome. |
| NA | ENSG00000146731 | CCT6A | chaperonin containing TCP1 subunit 6A | 908 | The protein encoded by this gene is a molecular chaperone that is a member of the chaperonin containing TCP1 complex (CCT), also known as the TCP1 ring complex (TRiC). This complex consists of two identical stacked rings, each containing eight different proteins. Unfolded polypeptides enter the central cavity of the complex and are folded in an ATP-dependent manner. The complex folds various proteins, including actin and tubulin. Alternate transcriptional splice variants of this gene, encoding different isoforms, have been characterized. In addition, several pseudogenes of this gene have been located. |
| NA | ENSG00000129103 | SUMF2 | sulfatase modifying factor 2 | 25870 | The catalytic sites of sulfatases are only active if they contain a unique amino acid, C-alpha-formylglycine (FGly). The FGly residue is posttranslationally generated from a cysteine by enzymes with FGly-generating activity. The gene described in this record is a member of the sulfatase-modifying factor family and encodes a protein with a DUF323 domain that localizes to the lumen of the endoplasmic reticulum. This protein has low levels of FGly-generating activity but can heterodimerize with another family member - a protein with high levels of FGly-generating activity. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000234444 | ZNF736 | zinc finger protein 736 | 728927 | NA |
| NA | ENSG00000173041 | ZNF680 | zinc finger protein 680 | 340252 | NA |
| NA | ENSG00000198039 | ZNF273 | zinc finger protein 273 | 10793 | This gene is a member of the krueppel C2H2-type zinc-finger protein family and encodes a protein with 13 C2H2-type zinc fingers and a KRAB domain. This nuclear protein is involved in transcriptional regulation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000152926 | ZNF117 | zinc finger protein 117 | 51351 | NA |
| NA | ENSG00000213462 | ERV3-1 | endogenous retrovirus group 3 member 1 | 2086 | The human genome includes many retroelements including the human endogenous retroviruses (HERVs). ERV3, one of the most studied HERVs, is thought to have integrated 30 to 40 million years ago and is present in higher primates with the exception of gorillas. Taken together, the observation of genome conservation, the detection of transcript expression, and the presence of conserved ORFs is circumstantial evidence for a functional role. A functional role is also suggested by the observation that downregulation of ERV3 is reported in choriocarcinoma. |
| NA | ENSG00000146757 | ZNF92 | zinc finger protein 92 | 168374 | NA |
| NA | ENSG00000196715 | VKORC1L1 | vitamin K epoxide reductase complex subunit 1 like 1 | 154807 | NA |
| NA | ENSG00000169919 | GUSB | glucuronidase beta | 2990 | This gene encodes a hydrolase that degrades glycosaminoglycans, including heparan sulfate, dermatan sulfate, and chondroitin-4,6-sulfate. The enzyme forms a homotetramer that is localized to the lysosome. Mutations in this gene result in mucopolysaccharidosis type VII. Alternative splicing results in multiple transcript variants. There are many pseudogenes of this locus in the human genome. |
| NA | ENSG00000126522 | ASL | argininosuccinate lyase | 435 | This gene encodes a member of the lyase 1 family. The encoded protein forms a cytosolic homotetramer and primarily catalyzes the reversible hydrolytic cleavage of argininosuccinate into arginine and fumarate, an essential step in the liver in detoxifying ammonia via the urea cycle. Mutations in this gene result in the autosomal recessive disorder argininosuccinic aciduria, or argininosuccinic acid lyase deficiency. A nontranscribed pseudogene is also located on the long arm of chromosome 22. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000241258 | CRCP | CGRP receptor component | 27297 | This gene encodes a membrane protein that functions as part of a receptor complex for a small neuropeptide that increases intracellular cAMP levels. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000169902 | TPST1 | tyrosylprotein sulfotransferase 1 | 8460 | NA |
| NA | ENSG00000243335 | KCTD7 | potassium channel tetramerization domain containing 7 | 154881 | This gene encodes a member of the potassium channel tetramerization domain-containing protein family. Family members are identified on a structural basis and contain an amino-terminal domain similar to the T1 domain present in the voltage-gated potassium channel. Mutations in this gene have been associated with progressive myoclonic epilepsy-3. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000106609 | TMEM248 | transmembrane protein 248 | 55069 | NA |
| NA | ENSG00000126524 | SBDS | SBDS ribosome assembly guanine nucleotide exchange factor | 51119 | This gene encodes a member of a highly conserved protein family that exists from archaea to vertebrates and plants. The encoded protein may function in RNA metabolism. Mutations within this gene are associated with Shwachman-Bodian-Diamond syndrome. An alternative transcript has been described, but its biological nature has not been determined. This gene has a closely linked pseudogene that is distally located. |
| NA | ENSG00000198874 | TYW1 | tRNA-yW synthesizing protein 1 homolog | 55253 | Wybutosine (yW) is a hypermodified guanosine found in phenylalanine tRNA adjacent to the anticodon that stabilizes codon-anticodon interactions in the ribosome. In yeast, the homolog of this gene is essential for the synthesis of wybutosine. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000158321 | AUTS2 | autism susceptibility candidate 2 | 26053 | This gene has been implicated in neurodevelopment and as a candidate gene for numerous neurological disorders, including autism spectrum disorders, intellectual disability, and developmental delay. Mutations in this gene have also been associated with non-neurological disorders, such as acute lymphoblastic leukemia, aging of the skin, early-onset androgenetic alopecia, and certain cancers. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000183166 | CALN1 | calneuron 1 | 83698 | This gene encodes a protein with high similarity to the calcium-binding proteins of the calmodulin family. The encoded protein contains two EF-hand domains and potential calcium-binding sites. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196313 | POM121 | POM121 transmembrane nucleoporin | 9883 | This gene encodes a transmembrane protein that localizes to the inner nuclear membrane and forms a core component of the nuclear pore complex, which mediates transport to and from the nucleus. The encoded protein may anchor this complex to the nuclear envelope. There are multiple related genes and pseudogenes for this gene on chromosomes 5, 7, 15, and 22. Alternatively spliced transcript variants encoding different isoforms have been observed. |
| NA | ENSG00000130305 | NSUN5 | NOP2/Sun RNA methyltransferase family member 5 | 55695 | This gene encodes a member of an evolutionarily conserved family of proteins that may function as methyltransferases. This gene is located in a larger region of chromosome 7 that is deleted in Williams-Beuren syndrome, a multisystem developmental disorder. There are two pseudogenes for this gene located in the same region of chromosome 7. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000188763 | FZD9 | frizzled class receptor 9 | 8326 | Members of the ‘frizzled’ gene family encode 7-transmembrane domain proteins that are receptors for Wnt signaling proteins. The FZD9 gene is located within the Williams syndrome common deletion region of chromosome 7, and heterozygous deletion of the FZD9 gene may contribute to the Williams syndrome phenotype. FZD9 is expressed predominantly in brain, testis, eye, skeletal muscle, and kidney. |
| NA | ENSG00000009954 | BAZ1B | bromodomain adjacent to zinc finger domain 1B | 9031 | This gene encodes a member of the bromodomain protein family. The bromodomain is a structural motif characteristic of proteins involved in chromatin-dependent regulation of transcription. This gene is deleted in Williams-Beuren syndrome, a developmental disorder caused by deletion of multiple genes at 7q11.23. |
| NA | ENSG00000106635 | BCL7B | B-cell CLL/lymphoma 7B | 9275 | This gene encodes a member of the BCL7 family including BCL7A, BCL7B and BCL7C proteins. This member is BCL7B, which contains a region that is highly similar to the N-terminal segment of BCL7A or BCL7C proteins. The BCL7A protein is encoded by the gene known to be directly involved in a three-way gene translocation in a Burkitt lymphoma cell line. This gene is located at a chromosomal region commonly deleted in Williams syndrome. This gene is highly conserved from C. elegans to human. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000106638 | TBL2 | transducin (beta)-like 2 | 26608 | This gene encodes a member of the beta-transducin protein family. Most proteins of the beta-transducin family are involved in regulatory functions. This protein is possibly involved in some intracellular signaling pathway. This gene is deleted in Williams-Beuren syndrome, a developmental disorder caused by deletion of multiple genes at 7q11.23. |
| NA | ENSG00000009950 | MLXIPL | MLX interacting protein like | 51085 | This gene encodes a basic helix-loop-helix leucine zipper transcription factor of the Myc/Max/Mad superfamily. This protein forms a heterodimeric complex and binds and activates, in a glucose-dependent manner, carbohydrate response element (ChoRE) motifs in the promoters of triglyceride synthesis genes. The gene is deleted in Williams-Beuren syndrome, a multisystem developmental disorder caused by the deletion of contiguous genes at chromosome 7q11.23. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000176410 | DNAJC30 | DnaJ heat shock protein family (Hsp40) member C30 | 84277 | This intronless gene encodes a member of the DNAJ molecular chaperone homology domain-containing protein family. This gene is deleted in Williams syndrome, a multisystem developmental disorder caused by the deletion of contiguous genes at 7q11.23. |
| NA | ENSG00000071462 | WBSCR22 | Williams-Beuren syndrome chromosome region 22 | 114049 | This gene encodes a protein containing a nuclear localization signal and an S-adenosyl-L-methionine binding motif typical of methyltransferases, suggesting that the encoded protein may act on DNA methylation. This gene is deleted in Williams syndrome, a multisystem developmental disorder caused by the deletion of contiguous genes at 7q11.23. Alternatively spliced transcript variants have been found. |
| NA | ENSG00000106089 | STX1A | syntaxin 1A | 6804 | This gene encodes a member of the syntaxin superfamily. Syntaxins are nervous system-specific proteins implicated in the docking of synaptic vesicles with the presynaptic plasma membrane. Syntaxins possess a single C-terminal transmembrane domain, a SNARE [Soluble NSF (N-ethylmaleimide-sensitive fusion protein)-Attachment protein REceptor] domain (known as H3), and an N-terminal regulatory domain (Habc). Syntaxins bind synaptotagmin in a calcium-dependent fashion and interact with voltage dependent calcium and potassium channels via the C-terminal H3 domain. This gene product is a key molecule in ion channel regulation and synaptic exocytosis. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000106077 | ABHD11 | abhydrolase domain containing 11 | 83451 | This gene encodes a protein containing an alpha/beta hydrolase fold domain. This gene is deleted in Williams syndrome, a multisystem developmental disorder caused by the deletion of contiguous genes at 7q11.23. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000165215 | CLDN3 | claudin 3 | 1365 | Tight junctions represent one mode of cell-to-cell adhesion in epithelial or endothelial cell sheets, forming continuous seals around cells and serving as a physical barrier to prevent solutes and water from passing freely through the paracellular space. These junctions are comprised of sets of continuous networking strands in the outwardly facing cytoplasmic leaflet, with complementary grooves in the inwardly facing extracytoplasmic leaflet. The protein encoded by this intronless gene, a member of the claudin family, is an integral membrane protein and a component of tight junction strands. It is also a low-affinity receptor for Clostridium perfringens enterotoxin, and shares aa sequence similarity with a putative apoptosis-related protein found in rat. |
| NA | ENSG00000049540 | ELN | elastin | 2006 | This gene encodes a protein that is one of the two components of elastic fibers. The encoded protein is rich in hydrophobic amino acids such as glycine and proline, which form mobile hydrophobic regions bounded by crosslinks between lysine residues. Deletions and mutations in this gene are associated with supravalvular aortic stenosis (SVAS) and autosomal dominant cutis laxa. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000106683 | LIMK1 | LIM domain kinase 1 | 3984 | There are approximately 40 known eukaryotic LIM proteins, so named for the LIM domains they contain. LIM domains are highly conserved cysteine-rich structures containing 2 zinc fingers. Although zinc fingers usually function by binding to DNA or RNA, the LIM motif probably mediates protein-protein interactions. LIM kinase-1 and LIM kinase-2 belong to a small subfamily with a unique combination of 2 N-terminal LIM motifs and a C-terminal protein kinase domain. LIMK1 is a serine/threonine kinase that regulates actin polymerization via phosphorylation and inactivation of the actin binding factor cofilin. This protein is ubiquitously expressed during development and plays a role in many cellular processes associated with cytoskeletal structure. This protein also stimulates axon growth and may play a role in brain development. LIMK1 hemizygosity is implicated in the impaired visuospatial constructive cognition of Williams syndrome. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000106682 | EIF4H | eukaryotic translation initiation factor 4H | 7458 | This gene encodes one of the translation initiation factors, which functions to stimulate the initiation of protein synthesis at the level of mRNA utilization. This gene is deleted in Williams syndrome, a multisystem developmental disorder caused by the deletion of contiguous genes at 7q11.23. Alternative splicing of this gene generates 2 transcript variants. |
| NA | ENSG00000049541 | RFC2 | replication factor C subunit 2 | 5982 | This gene encodes a member of the activator 1 small subunits family. The elongation of primed DNA templates by DNA polymerase delta and epsilon requires the action of the accessory proteins, proliferating cell nuclear antigen (PCNA) and replication factor C (RFC). Replication factor C, also called activator 1, is a protein complex consisting of five distinct subunits. This gene encodes the 40 kD subunit, which has been shown to be responsible for binding ATP and may help promote cell survival. Disruption of this gene is associated with Williams syndrome. Alternatively spliced transcript variants encoding distinct isoforms have been described. A pseudogene of this gene has been defined on chromosome 2. |
| NA | ENSG00000106665 | CLIP2 | CAP-Gly domain containing linker protein 2 | 7461 | The protein encoded by this gene belongs to the family of cytoplasmic linker proteins, which have been proposed to mediate the interaction between specific membranous organelles and microtubules. This protein was found to associate with both microtubules and an organelle called the dendritic lamellar body. This gene is hemizygously deleted in Williams syndrome, a multisystem developmental disorder caused by the deletion of contiguous genes at 7q11.23. Alternative splicing of this gene generates 2 transcript variants. |
| NA | ENSG00000006704 | GTF2IRD1 | GTF2I repeat domain containing 1 | 9569 | The protein encoded by this gene contains five GTF2I-like repeats and each repeat possesses a potential helix-loop-helix (HLH) motif. It may have the ability to interact with other HLH-proteins and function as a transcription factor or as a positive transcriptional regulator under the control of Retinoblastoma protein. This gene plays a role in craniofacial and cognitive development and mutations have been associated with Williams-Beuren syndrome, a multisystem developmental disorder caused by deletion of multiple genes at 7q11.23. Alternative splicing results in multiple transcript variants. |
| TRUE | ENSG00000077809 | NA | NA | NA | NA |
| TRUE | ENSG00000174374 | NA | NA | NA | NA |
| NA | ENSG00000174428 | GTF2IRD2B | GTF2I repeat domain containing 2B | 389524 | This gene encodes a glycosylated phosphoprotein with a leucine zipper motif, two helix-loop-helix motifs (I repeats) that are similar to domains found in the TFII-I family of transcription factors, one CHARLIE8 transposable element-like sequence, and a BED zinc finger. This gene lies within a region that is deleted in Williams-Beuren syndrome. Alternatively spliced variants which encode different protein isoforms have been described; however, not all variants have been fully characterized. |
| NA | ENSG00000127946 | HIP1 | huntingtin interacting protein 1 | 3092 | The product of this gene is a membrane-associated protein that functions in clathrin-mediated endocytosis and protein trafficking within the cell. The encoded protein binds to the huntingtin protein in the brain; this interaction is lost in Huntington’s disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000006606 | CCL26 | C-C motif chemokine ligand 26 | 10344 | This gene is one of two Cys-Cys (CC) cytokine genes clustered on the q arm of chromosome 7. Cytokines are a family of secreted proteins involved in immunoregulatory and inflammatory processes. The CC cytokines are proteins characterized by two adjacent cysteines. The cytokine encoded by this gene displays chemotactic activity for normal peripheral blood eosinophils and basophils. The product of this gene is one of three related chemokines that specifically activate chemokine receptor CCR3. This chemokine may contribute to the eosinophil accumulation in atopic diseases. |
| NA | ENSG00000005486 | RHBDD2 | rhomboid domain containing 2 | 57414 | NA |
| NA | ENSG00000127948 | POR | cytochrome p450 oxidoreductase | 5447 | This gene encodes an endoplasmic reticulum membrane oxidoreductase with an FAD-binding domain and a flavodoxin-like domain. The protein binds two cofactors, FAD and FMN, which allow it to donate electrons directly from NADPH to all microsomal P450 enzymes. Mutations in this gene have been associated with various diseases, including apparent combined P450C17 and P450C21 deficiency, amenorrhea and disordered steroidogenesis, congenital adrenal hyperplasia and Antley-Bixler syndrome. |
| NA | ENSG00000127952 | STYXL1 | serine/threonine/tyrosine interacting-like 1 | 51657 | NA |
| NA | ENSG00000146701 | MDH2 | malate dehydrogenase 2 | 4191 | Malate dehydrogenase catalyzes the reversible oxidation of malate to oxaloacetate, utilizing the NAD/NADH cofactor system in the citric acid cycle. The protein encoded by this gene is localized to the mitochondria and may play pivotal roles in the malate-aspartate shuttle that operates in the metabolic coordination between cytosol and mitochondria. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000177679 | SRRM3 | serine/arginine repetitive matrix 3 | 222183 | NA |
| NA | ENSG00000106211 | HSPB1 | heat shock protein family B (small) member 1 | 3315 | The protein encoded by this gene is induced by environmental stress and developmental changes. The encoded protein is involved in stress resistance and actin organization and translocates from the cytoplasm to the nucleus upon stress induction. Defects in this gene are a cause of Charcot-Marie-Tooth disease type 2F (CMT2F) and distal hereditary motor neuropathy (dHMN). |
| NA | ENSG00000170027 | YWHAG | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein gamma | 7532 | This gene product belongs to the 14-3-3 family of proteins which mediate signal transduction by binding to phosphoserine-containing proteins. This highly conserved protein family is found in both plants and mammals, and this protein is 100% identical to the rat ortholog. It is induced by growth factors in human vascular smooth muscle cells, and is also highly expressed in skeletal and heart muscles, suggesting an important role for this protein in muscle tissue. It has been shown to interact with RAF1 and protein kinase C, proteins involved in various signal transduction pathways. |
| NA | ENSG00000146700 | SSC4D | scavenger receptor cysteine rich family, 4 domains | 136853 | The scavenger receptor cysteine-rich (SRCR) superfamily is an ancient and highly conserved group of cell surface and/or secreted proteins, some of which are involved in the development of the immune system and the regulation of both innate and adaptive immune responses. Group B SRCR domains usually contain 8 regularly spaced cysteines that give rise to a well-defined intradomain disulfide-bond pattern. |
| NA | ENSG00000091073 | DTX2 | deltex 2, E3 ubiquitin ligase | 113878 | DTX2 functions as an E3 ubiquitin ligase (Takeyama et al., 2003 [PubMed 12670957]). |
| NA | ENSG00000243566 | UPK3B | uroplakin 3B | 80761 | UPK3B is a minor component of the apical plaques of mammalian urothelium that binds and dimerizes with uroplakin-1b (UPK1B; MIM 602380), one of the major conserved urothelium membrane proteins. The other major conserved integral membrane proteins of urothelial plaques are UPK1A (MIM 611557), UPK2 (MIM 611558), and UPK3A (MIM 611559) (Deng et al., 2002 [PubMed 12446744]). |
| NA | ENSG00000243566 | LOC105375355 | uroplakin-3b | 105375355 | NA |
| NA | ENSG00000146707 | POMZP3 | POM121 and ZP3 fusion | 22932 | This gene appears to have resulted from a fusion of DNA sequences derived from 2 distinct loci, specifically through the duplication of two internal exons from the POM121 gene and four 3’ exons from the ZP3 gene. The 5’ end of this gene is similar to the 5` coding region of the POM121 gene which encodes an integral nuclear pore membrane protein. However, the protein encoded by this gene lacks the nuclear pore localization motif. The 3’ end of this gene is similar to the last 4 exons of the zona pellucida glycoprotein 3 (ZP3) gene and the encoded protein retains one zona pellucida domain. Multiple protein isoforms are encoded by transcript variants of this gene. |
| NA | ENSG00000127947 | PTPN12 | protein tyrosine phosphatase, non-receptor type 12 | 5782 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP contains a C-terminal PEST motif, which serves as a protein-protein interaction domain, and may regulate protein intracellular half-life. This PTP was found to bind and dephosphorylate the product of the oncogene c-ABL and thus may play a role in oncogenesis. This PTP was also shown to interact with, and dephosphorylate, various products related to cytoskeletal structure and cell adhesion, such as p130 (Cas), CAKbeta/PTK2B, PSTPIP1, and paxillin. This suggests it has a regulatory role in controlling cell shape and mobility. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000006576 | PHTF2 | putative homeodomain transcription factor 2 | 57157 | NA |
| NA | ENSG00000187391 | MAGI2 | membrane associated guanylate kinase, WW and PDZ domain containing 2 | 9863 | The protein encoded by this gene interacts with atrophin-1. Atrophin-1 contains a polyglutamine repeat, expansion of which is responsible for dentatorubral and pallidoluysian atrophy. This encoded protein is characterized by two WW domains, a guanylate kinase-like domain, and multiple PDZ domains. It has structural similarity to the membrane-associated guanylate kinase homologue (MAGUK) family. |
| NA | ENSG00000153956 | CACNA2D1 | calcium voltage-gated channel auxiliary subunit alpha2delta 1 | 781 | The preproprotein encoded by this gene is cleaved into multiple chains that comprise the alpha-2 and delta subunits of the voltage-dependent calcium channel complex. Calcium channels mediate the influx of calcium ions into the cell upon membrane polarization. Mutations in this gene can cause cardiac deficiencies, including Brugada syndrome and short QT syndrome. Alternate splicing results in multiple transcript variants, some of which may lack the delta subunit portion. |
| NA | ENSG00000186472 | PCLO | piccolo presynaptic cytomatrix protein | 27445 | The protein encoded by this gene is part of the presynaptic cytoskeletal matrix, which is involved in establishing active synaptic zones and in synaptic vesicle trafficking. Variations in this gene have been associated with bipolar disorder and major depressive disorder. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000170381 | SEMA3E | semaphorin 3E | 9723 | Semaphorins are a large family of conserved secreted and membrane associated proteins which possess a semaphorin (Sema) domain and a PSI domain (found in plexins, semaphorins and integrins) in the N-terminal extracellular portion. Based on sequence and structural similarities, semaphorins are put into eight classes: invertebrates contain classes 1 and 2, viruses have class V, and vertebrates contain classes 3-7. Semaphorins serve as axon guidance ligands via multimeric receptor complexes, some (if not all) containing plexin proteins. This gene encodes a class 4 semaphorin. This gene encodes a class 3 semaphorin. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000075213 | SEMA3A | semaphorin 3A | 10371 | This gene is a member of the semaphorin family and encodes a protein with an Ig-like C2-type (immunoglobulin-like) domain, a PSI domain and a Sema domain. This secreted protein can function as either a chemorepulsive agent, inhibiting axonal outgrowth, or as a chemoattractive agent, stimulating the growth of apical dendrites. In both cases, the protein is vital for normal neuronal pattern development. Increased expression of this protein is associated with schizophrenia and is seen in a variety of human tumor cell lines. Also, aberrant release of this protein is associated with the progression of Alzheimer’s disease. |
| NA | ENSG00000153993 | SEMA3D | semaphorin 3D | 223117 | NA |
| NA | ENSG00000164659 | KIAA1324L | KIAA1324-like | 222223 | NA |
| NA | ENSG00000135185 | TMEM243 | transmembrane protein 243 | 79161 | NA |
| NA | ENSG00000005469 | CROT | carnitine O-octanoyltransferase | 54677 | This gene encodes a member of the carnitine/choline acetyltransferase family. The encoded protein converts 4,8-dimethylnonanoyl-CoA to its corresponding carnitine ester. This transesterification occurs in the peroxisome and is necessary for transport of medium- and long- chain acyl-CoA molecules out of the peroxisome to the cytosol and mitochondria. The protein thus plays a role in lipid metabolism and fatty acid beta-oxidation. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000085563 | ABCB1 | ATP binding cassette subfamily B member 1 | 5243 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MDR/TAP subfamily. Members of the MDR/TAP subfamily are involved in multidrug resistance. The protein encoded by this gene is an ATP-dependent drug efflux pump for xenobiotic compounds with broad substrate specificity. It is responsible for decreased drug accumulation in multidrug-resistant cells and often mediates the development of resistance to anticancer drugs. This protein also functions as a transporter in the blood-brain barrier. |
| NA | ENSG00000075303 | SLC25A40 | solute carrier family 25 member 40 | 55972 | SLC25A40 belongs to the SLC25 family of mitochondrial carrier proteins (Haitina et al., 2006 [PubMed 16949250]). |
| NA | ENSG00000006634 | DBF4 | DBF4 zinc finger | 10926 | NA |
| NA | ENSG00000008277 | ADAM22 | ADAM metallopeptidase domain 22 | 53616 | This gene encodes a member of the ADAM (a disintegrin and metalloprotease domain) family. Members of this family are membrane-anchored proteins structurally related to snake venom disintegrins, and have been implicated in a variety of biological processes involving cell-cell and cell-matrix interactions, including fertilization, muscle development, and neurogenesis. Unlike other members of the ADAM protein family, the protein encoded by this gene lacks metalloprotease activity since it has no zinc-binding motif. This gene is highly expressed in the brain and may function as an integrin ligand in the brain. In mice, it has been shown to be essential for correct myelination in the peripheral nervous system. Alternative splicing results in several transcript variants. |
| NA | ENSG00000164647 | STEAP1 | six transmembrane epithelial antigen of the prostate 1 | 26872 | This gene is predominantly expressed in prostate tissue, and is found to be upregulated in multiple cancer cell lines. The gene product is predicted to be a six-transmembrane protein, and was shown to be a cell surface antigen significantly expressed at cell-cell junctions. |
| NA | ENSG00000157214 | STEAP2 | STEAP2 metalloreductase | 261729 | This gene is a member of the STEAP family and encodes a multi-pass membrane protein that localizes to the Golgi complex, the plasma membrane, and the vesicular tubular structures in the cytosol. A highly similar protein in mouse has both ferrireductase and cupric reductase activity, and stimulates the cellular uptake of both iron and copper in vitro. Increased transcriptional expression of the human gene is associated with prostate cancer progression. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000105792 | CFAP69 | cilia and flagella associated protein 69 | 79846 | NA |
| NA | ENSG00000105793 | LOC101927446 | uncharacterized LOC101927446 | 101927446 | NA |
| NA | ENSG00000105793 | GTPBP10 | GTP-binding protein 10 (putative) | 85865 | Small G proteins, such as GTPBP10, act as molecular switches that play crucial roles in the regulation of fundamental cellular processes such as protein synthesis, nuclear transport, membrane trafficking, and signal transduction (Hirano et al., 2006 [PubMed 17054726]). |
| NA | ENSG00000157224 | CLDN12 | claudin 12 | 9069 | This gene encodes a member of the claudin family. Claudins are integral membrane proteins and components of tight junction strands. Tight junction strands serve as a physical barrier to prevent solutes and water from passing freely through the paracellular space between epithelial or endothelial cell sheets, and also play critical roles in maintaining cell polarity and signal transductions. This gene is expressed in the inner ear and bladder epithelium, and it is over-expressed in colorectal carcinomas. This protein and claudin 2 are critical for vitamin D-dependent Ca2+ absorption between enterocytes. Multiple alternatively spliced transcript variants encoding the same protein have been found. |
| NA | ENSG00000058091 | CDK14 | cyclin-dependent kinase 14 | 5218 | PFTK1 is a member of the CDC2 (MIM 116940)-related protein kinase family (Yang and Chen, 2001 [PubMed 11313143]). |
| NA | ENSG00000127989 | MTERF1 | mitochondrial transcription termination factor 1 | 7978 | This gene encodes a mitochondrial transcription termination factor. This protein participates in attenuating transcription from the mitochondrial genome; this attenuation allows higher levels of expression of 16S ribosomal RNA relative to the tRNA gene downstream. The product of this gene has three leucine zipper motifs bracketed by two basic domains that are all required for DNA binding. There is evidence that, for this protein, the zippers participate in intramolecular interactions that establish the three-dimensional structure required for DNA binding. |
| NA | ENSG00000001631 | KRIT1 | KRIT1, ankyrin repeat containing | 889 | This gene encodes a protein containing four ankyrin repeats, a band 4.1/ezrin/radixin/moesin (FERM) domain, and multiple NPXY sequences. The encoded protein is localized in the nucleus and cytoplasm. It binds to integrin cytoplasmic domain-associated protein-1 alpha (ICAP1alpha), and plays a critical role in beta1-integrin-mediated cell proliferation. It associates with junction proteins and RAS-related protein 1A (Rap1A), which requires the encoded protein for maintaining the integrity of endothelial junctions. It is also a microtubule-associated protein and may play a role in microtubule targeting. Mutations in this gene result in cerebral cavernous malformations. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000001629 | ANKIB1 | ankyrin repeat and IBR domain containing 1 | 54467 | NA |
| NA | ENSG00000127980 | PEX1 | peroxisomal biogenesis factor 1 | 5189 | This gene encodes a member of the AAA ATPase family, a large group of ATPases associated with diverse cellular activities. This protein is cytoplasmic but is often anchored to a peroxisomal membrane where it forms a heteromeric complex and plays a role in the import of proteins into peroxisomes and peroxisome biogenesis. Mutations in this gene have been associated with complementation group 1 peroxisomal disorders such as neonatal adrenoleukodystrophy, infantile Refsum disease, and Zellweger syndrome. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000105810 | CDK6 | cyclin-dependent kinase 6 | 1021 | The protein encoded by this gene is a member of the cyclin-dependent protein kinase (CDK) family. CDK family members are highly similar to the gene products of Saccharomyces cerevisiae cdc28, and Schizosaccharomyces pombe cdc2, and are known to be important regulators of cell cycle progression. This kinase is a catalytic subunit of the protein kinase complex that is important for cell cycle G1 phase progression and G1/S transition. The activity of this kinase first appears in mid-G1 phase, which is controlled by the regulatory subunits including D-type cyclins and members of INK4 family of CDK inhibitors. This kinase, as well as CDK4, has been shown to phosphorylate, and thus regulate the activity of, tumor suppressor protein Rb. Expression of this gene is up-regulated in some types of cancer. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000004766 | VPS50 | VPS50, EARP/GARPII complex subunit | 55610 | NA |
| NA | ENSG00000105825 | TFPI2 | tissue factor pathway inhibitor 2 | 7980 | This gene encodes a member of the Kunitz-type serine proteinase inhibitor family. The protein can inhibit a variety of serine proteases including factor VIIa/tissue factor, factor Xa, plasmin, trypsin, chymotryspin and plasma kallikrein. This gene has been identified as a tumor suppressor gene in several types of cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000127920 | GNG11 | G protein subunit gamma 11 | 2791 | This gene is a member of the guanine nucleotide-binding protein (G protein) gamma family and encodes a lipid-anchored, cell membrane protein. As a member of the heterotrimeric G protein complex, this protein plays a role in this transmembrane signaling system. This protein is also subject to carboxyl-terminal processing. Decreased expression of this gene is associated with splenic marginal zone lymphomas. |
| NA | ENSG00000164692 | COL1A2 | collagen type I alpha 2 | 1278 | This gene encodes the pro-alpha2 chain of type I collagen whose triple helix comprises two alpha1 chains and one alpha2 chain. Type I is a fibril-forming collagen found in most connective tissues and is abundant in bone, cornea, dermis and tendon. Mutations in this gene are associated with osteogenesis imperfecta types I-IV, Ehlers-Danlos syndrome type VIIB, recessive Ehlers-Danlos syndrome Classical type, idiopathic osteoporosis, and atypical Marfan syndrome. Symptoms associated with mutations in this gene, however, tend to be less severe than mutations in the gene for the alpha1 chain of type I collagen (COL1A1) reflecting the different role of alpha2 chains in matrix integrity. Three transcripts, resulting from the use of alternate polyadenylation signals, have been identified for this gene. |
| NA | ENSG00000127995 | CASD1 | CAS1 domain containing 1 | 64921 | NA |
| NA | ENSG00000127990 | SGCE | sarcoglycan epsilon | 8910 | This gene encodes the epsilon member of the sarcoglycan family. Sarcoglycans are transmembrane proteins that are components of the dystrophin-glycoprotein complex, which link the actin cytoskeleton to the extracellular matrix. Unlike other family members which are predominantly expressed in striated muscle, the epsilon sarcoglycan is more broadly expressed. Mutations in this gene are associated with myoclonus-dystonia syndrome. This gene is imprinted, with preferential expression from the paternal allele. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000242265 | PEG10 | paternally expressed 10 | 23089 | This is a paternally expressed imprinted gene that is thought to have been derived from the Ty3/Gypsy family of retrotransposons. It contains two overlapping open reading frames, RF1 and RF2, and expresses two proteins: a shorter, gag-like protein (with a CCHC-type zinc finger domain) from RF1; and a longer, gag/pol-like fusion protein (with an additional aspartic protease motif) from RF1/RF2 by -1 translational frameshifting (-1 FS). While -1 FS has been observed in RNA viruses and transposons in both prokaryotes and eukaryotes, this gene represents the first example of -1 FS in a eukaryotic cellular gene. This gene is highly conserved across mammalian species and retains the heptanucleotide (GGGAAAC) and pseudoknot elements required for -1 FS. It is expressed in adult and embryonic tissues (most notably in placenta) and reported to have a role in cell proliferation, differentiation and apoptosis. Overexpression of this gene has been associated with several malignancies, such as hepatocellular carcinoma and B-cell lymphocytic leukemia. Knockout mice lacking this gene showed early embryonic lethality with placental defects, indicating the importance of this gene in embryonic development. Additional isoforms resulting from alternatively spliced transcript variants, and use of upstream non-AUG (CUG) start codon have been reported for this gene. |
| NA | ENSG00000196636 | SDHAF3 | succinate dehydrogenase complex assembly factor 3 | 57001 | NA |
| NA | ENSG00000006128 | TAC1 | tachykinin precursor 1 | 6863 | This gene encodes four products of the tachykinin peptide hormone family, substance P and neurokinin A, as well as the related peptides, neuropeptide K and neuropeptide gamma. These hormones are thought to function as neurotransmitters which interact with nerve receptors and smooth muscle cells. They are known to induce behavioral responses and function as vasodilators and secretagogues. Substance P is an antimicrobial peptide with antibacterial and antifungal properties. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000070669 | ASNS | asparagine synthetase (glutamine-hydrolyzing) | 440 | The protein encoded by this gene is involved in the synthesis of asparagine. This gene complements a mutation in the temperature-sensitive hamster mutant ts11, which blocks progression through the G1 phase of the cell cycle at nonpermissive temperature. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000164715 | LMTK2 | lemur tyrosine kinase 2 | 22853 | The protein encoded by this gene belongs to the protein kinase superfamily and the protein tyrosine kinase family. It contains N-terminal transmembrane helices and a long C-terminal cytoplasmic tail with serine/threonine/tyrosine kinase activity. This protein interacts with several other proteins, such as Inhibitor-2 (Inh2), protein phosphatase-1 (PP1C), p35, and myosin VI. It phosporylates other proteins, and is itself also phosporylated when interacting with cyclin-dependent kinase 5 (cdk5)/p35 complex. This protein involves in nerve growth factor (NGF)-TrkA signalling, and also plays a critical role in endosomal membrane trafficking. Mouse studies suggested an essential role of this protein in spermatogenesis. |
| NA | ENSG00000205356 | TECPR1 | tectonin beta-propeller repeat containing 1 | 25851 | This gene encodes a tethering factor involved in autophagy. The encoded protein is found at autolysosomes, and is involved in targeting protein aggregates, damaged mitochondria, and bacterial pathogens for autophagy |
| NA | ENSG00000164713 | BRI3 | brain protein I3 | 25798 | NA |
| NA | ENSG00000006453 | BAIAP2L1 | BAI1 associated protein 2 like 1 | 55971 | This gene encodes a member of the IMD (IRSp53/MIM homology domain) family. Members of this family can be subdivided in two groups, the IRSp53-like and MIM-like, based on the presence or absence of the SH3 (Src homology 3) domain. The protein encoded by this gene contains a conserved IMD, also known as F-actin bundling domain, at the N-terminus, and a canonical SH3 domain near the C-terminus, so it belongs to the IRSp53-like group. This protein is the substrate for insulin receptor tyrosine kinase and binds to the small GTPase Rac. It is involved in signal transduction pathways that link deformation of the plasma membrane and remodeling of the actin cytoskeleton. It also promotes actin assembly and membrane protrusions when overexpressed in mammalian cells, and is essential to the formation of a potent actin assembly complex during EHEC (Enterohemorrhagic Escherichia coli) pedestal formation. |
| NA | ENSG00000106236 | NPTX2 | neuronal pentraxin 2 | 4885 | This gene encodes a member of the family of neuronal petraxins, synaptic proteins that are related to C-reactive protein. This protein is involved in excitatory synapse formation. It also plays a role in clustering of alpha-amino-3-hydroxy-5-methyl-4-isoxazolepropionic acid (AMPA)-type glutamate receptors at established synapses, resulting in non-apoptotic cell death of dopaminergic nerve cells. Up-regulation of this gene in Parkinson disease (PD) tissues suggests that the protein may be involved in the pathology of PD. |
| NA | ENSG00000166448 | TMEM130 | transmembrane protein 130 | 222865 | NA |
| NA | ENSG00000196367 | TRRAP | transformation/transcription domain associated protein | 8295 | This gene encodes a large multidomain protein of the phosphoinositide 3-kinase-related kinases (PIKK) family. The encoded protein is a common component of many histone acetyltransferase (HAT) complexes and plays a role in transcription and DNA repair by recruiting HAT complexes to chromatin. Deregulation of this gene may play a role in several types of cancer including glioblastoma multiforme. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000198742 | SMURF1 | SMAD specific E3 ubiquitin protein ligase 1 | 57154 | This gene encodes a ubiquitin ligase that is specific for receptor-regulated SMAD proteins in the bone morphogenetic protein (BMP) pathway. This protein plays a key roll in the regulation of cell motility, cell signalling, and cell polarity. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000241685 | ARPC1A | actin related protein 2/3 complex subunit 1A | 10552 | This gene encodes one of seven subunits of the human Arp2/3 protein complex. This subunit is a member of the SOP2 family of proteins and is most similar to the protein encoded by gene ARPC1B. The similarity between these two proteins suggests that they both may function as p41 subunit of the human Arp2/3 complex that has been implicated in the control of actin polymerization in cells. It is possible that the p41 subunit is involved in assembling and maintaining the structure of the Arp2/3 complex. Multiple versions of the p41 subunit may adapt the functions of the complex to different cell types or developmental stages. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130429 | ARPC1B | actin related protein 2/3 complex subunit 1B | 10095 | This gene encodes one of seven subunits of the human Arp2/3 protein complex. This subunit is a member of the SOP2 family of proteins and is most similar to the protein encoded by gene ARPC1A. The similarity between these two proteins suggests that they both may function as p41 subunit of the human Arp2/3 complex that has been implicated in the control of actin polymerization in cells. It is possible that the p41 subunit is involved in assembling and maintaining the structure of the Arp2/3 complex. Multiple versions of the p41 subunit may adapt the functions of the complex to different cell types or developmental stages. This protein also has a role in centrosomal homeostasis by being an activator and substrate of the Aurora A kinase. |
| NA | ENSG00000106244 | PDAP1 | PDGFA associated protein 1 | 11333 | The protein encoded by this gene is a phosphoprotein that may upregulate the PDGFA-stimulated growth of fibroblasts and also downregulate the mitogenicity of PDGFB. The encoded protein in rodents has been shown to bind PDGFA with a low affinity. |
| NA | ENSG00000106245 | BUD31 | BUD31 homolog | 8896 | NA |
| NA | ENSG00000106246 | PTCD1 | pentatricopeptide repeat domain 1 | 26024 | This gene encodes a mitochondrial protein that binds leucine tRNAs and other mitochondrial RNAs and plays a role in the regulation of translation. Increased expression of this gene results in decreased mitochondrial leucine tRNA levels. Naturally occurring read-through transcription exists between upstream ATP5J2 (ATP synthase, H+ transporting, mitochondrial Fo complex, subunit F2) and this gene. |
| NA | ENSG00000160917 | CPSF4 | cleavage and polyadenylation specific factor 4 | 10898 | Inhibition of the nuclear export of poly(A)-containing mRNAs caused by the influenza A virus NS1 protein requires its effector domain. The NS1 effector domain functionally interacts with the cellular 30 kDa subunit of cleavage and polyadenylation specific factor 4, an essential component of the 3’ end processing machinery of cellular pre-mRNAs. In influenza virus-infected cells, the NS1 protein is physically associated with cleavage and polyadenylation specific factor 4, 30kD subunit. Binding of the NS1 protein to the 30 kDa protein in vitro prevents CPSF binding to the RNA substrate and inhibits 3’ end cleavage and polyadenylation of host pre-mRNAs. Thus the NS1 protein selectively inhibits the nuclear export of cellular, and not viral, mRNAs. Multiple alternatively spliced transcript variants that encode different isoforms have been described for this gene. |
| NA | ENSG00000241468 | ATP5J2 | ATP synthase, H+ transporting, mitochondrial Fo complex subunit F2 | 9551 | Mitochondrial ATP synthase catalyzes ATP synthesis, utilizing an electrochemical gradient of protons across the inner membrane during oxidative phosphorylation. It is composed of two linked multi-subunit complexes: the soluble catalytic core, F1, and the membrane-spanning component, Fo, which comprises the proton channel. The catalytic portion of mitochondrial ATP synthase consists of five different subunits (alpha, beta, gamma, delta, and epsilon) assembled with a stoichiometry of 3 alpha, 3 beta, and single representatives of the gamma, delta, and epsilon subunits. The proton channel likely has nine subunits (a, b, c, d, e, f, g, F6 and 8). This gene encodes the f subunit of the Fo complex. Alternatively spliced transcript variants encoding different isoforms have been identified for this gene. This gene has multiple pseudogenes. Naturally occurring read-through transcription also exists between this gene and the downstream pentatricopeptide repeat domain 1 (PTCD1) gene. |
| NA | ENSG00000198556 | ZNF789 | zinc finger protein 789 | 285989 | NA |
| NA | ENSG00000160908 | ZNF394 | zinc finger protein 394 | 84124 | NA |
| NA | ENSG00000196652 | ZKSCAN5 | zinc finger with KRAB and SCAN domains 5 | 23660 | This gene encodes a zinc finger protein of the Kruppel family. The protein contains a SCAN box and a KRAB A domain and may be involved in transcriptional regulation. A similar protein in mouse is differentially expressed in spermatogenesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000221909 | FAM200A | family with sequence similarity 200 member A | 221786 | This gene encodes a protein of unknown function. The protein is weakly similar to transposase-like proteins in human and mouse. |
| NA | ENSG00000197343 | ZNF655 | zinc finger protein 655 | 79027 | This gene encodes a zinc finger protein. The zinc finger proteins are involved in DNA binding and protein-protein interactions. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000197037 | ZSCAN25 | zinc finger and SCAN domain containing 25 | 221785 | This gene encodes a protein that bears some similarity to zinc finger proteins, which are involved in DNA binding and protein-protein interactions. Multiple alternatively spliced transcript variants have been identified, but the full-length nature for most of them has not been determined. |
| NA | ENSG00000146833 | TRIM4 | tripartite motif containing 4 | 89122 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The protein localizes to cytoplasmic bodies. Its function has not been identified. Alternatively spliced transcript variants that encode different isoforms have been described. |
| NA | ENSG00000176402 | GJC3 | gap junction protein gamma 3 | 349149 | This gene encodes a gap junction protein. The encoded protein, also known as a connexin, plays a role in formation of gap junctions, which provide direct connections between neighboring cells. Mutations in this gene have been reported to be associated with nonsyndromic hearing loss. |
| NA | ENSG00000166529 | ZSCAN21 | zinc finger and SCAN domain containing 21 | 7589 | NA |
| NA | ENSG00000166526 | ZNF3 | zinc finger protein 3 | 7551 | NA |
| NA | ENSG00000168090 | COPS6 | COP9 signalosome subunit 6 | 10980 | The protein encoded by this gene is one of the eight subunits of COP9 signalosome, a highly conserved protein complex that functions as an important regulator in multiple signaling pathways. The structure and function of COP9 signalosome is similar to that of the 19S regulatory particle of 26S proteasome. COP9 signalosome has been shown to interact with SCF-type E3 ubiquitin ligases and act as a positive regulator of E3 ubiquitin ligases. This protein belongs to translation initiation factor 3 (eIF3) superfamily. It is involved in the regulation of cell cycle and likely to be a cellular cofactor for HIV-1 accessory gene product Vpr. |
| NA | ENSG00000166508 | MCM7 | minichromosome maintenance complex component 7 | 4176 | The protein encoded by this gene is one of the highly conserved mini-chromosome maintenance proteins (MCM) that are essential for the initiation of eukaryotic genome replication. The hexameric protein complex formed by the MCM proteins is a key component of the pre-replication complex (pre_RC) and may be involved in the formation of replication forks and in the recruitment of other DNA replication related proteins. The MCM complex consisting of this protein and MCM2, 4 and 6 proteins possesses DNA helicase activity, and may act as a DNA unwinding enzyme. Cyclin D1-dependent kinase, CDK4, is found to associate with this protein, and may regulate the binding of this protein with the tumorsuppressor protein RB1/RB. Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000221838 | AP4M1 | adaptor related protein complex 4 mu 1 subunit | 9179 | This gene encodes a subunit of the heterotetrameric AP-4 complex. The encoded protein belongs to the adaptor complexes medium subunits family. This AP-4 complex is involved in the recognition and sorting of cargo proteins with tyrosine-based motifs from the trans-golgi network to the endosomal-lysosomal system. |
| NA | ENSG00000106290 | TAF6 | TATA-box binding protein associated factor 6 | 6878 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes one of the smaller subunits of TFIID that binds weakly to TBP but strongly to TAF1, the largest subunit of TFIID. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000166997 | CNPY4 | canopy FGF signaling regulator 4 | 245812 | NA |
| NA | ENSG00000188186 | LAMTOR4 | late endosomal/lysosomal adaptor, MAPK and MTOR activator 4 | 389541 | NA |
| NA | ENSG00000146826 | C7orf43 | chromosome 7 open reading frame 43 | 55262 | NA |
| NA | ENSG00000197093 | GAL3ST4 | galactose-3-O-sulfotransferase 4 | 79690 | This gene encodes a member of the galactose-3-O-sulfotransferase protein family. The product of this gene catalyzes sulfonation by transferring a sulfate to the C-3’ position of galactose residues in O-linked glycoproteins. This enzyme is highly specific for core 1 structures, with asialofetuin, Gal-beta-1,3-GalNAc and Gal-beta-1,3 (GlcNAc-beta-1,6)GalNAc being good substrates. |
| NA | ENSG00000213420 | GPC2 | glypican 2 | 221914 | NA |
| NA | ENSG00000066923 | STAG3 | stromal antigen 3 | 10734 | The protein encoded by this gene is expressed in the nucleus and is a subunit of the cohesin complex which regulates the cohesion of sister chromatids during cell division. A mutation in this gene is associated with premature ovarian failure. Alternate splicing results in multiple transcript variants encoding distinct isoforms. This gene has multiple pseudogenes. |
| TRUE | ENSG00000160844 | NA | NA | NA | NA |
| NA | ENSG00000121716 | PILRB | paired immunoglobin-like type 2 receptor beta | 29990 | The paired immunoglobin-like type 2 receptors consist of highly related activating and inhibitory receptors that are involved in the regulation of many aspects of the immune system. The paired immunoglobulin-like receptor genes are located in a tandem head-to-tail orientation on chromosome 7. This gene encodes the activating member of the receptor pair and contains a truncated cytoplasmic tail relative to its inhibitory counterpart (PILRA), that has a long cytoplasmic tail with immunoreceptor tyrosine-based inhibitory (ITIM) motifs. This gene is thought to have arisen from a duplication of the inhibitory PILRA gene and evolved to acquire its activating function. |
| NA | ENSG00000078487 | ZCWPW1 | zinc finger CW-type and PWWP domain containing 1 | 55063 | NA |
| NA | ENSG00000146834 | MEPCE | methylphosphate capping enzyme | 56257 | NA |
| NA | ENSG00000160813 | PPP1R35 | protein phosphatase 1 regulatory subunit 35 | 221908 | NA |
| NA | ENSG00000166925 | TSC22D4 | TSC22 domain family member 4 | 81628 | TSC22D4 is a member of the TSC22 domain family of leucine zipper transcriptional regulators (see TSC22D3; MIM 300506) (Kester et al., 1999 [PubMed 10488076]; Fiorenza et al., 2001 [PubMed 11707329]). |
| NA | ENSG00000166924 | NYAP1 | neuronal tyrosine phosphorylated phosphoinositide-3-kinase adaptor 1 | 222950 | NA |
| NA | ENSG00000106351 | AGFG2 | ArfGAP with FG repeats 2 | 3268 | This gene is a member of the HIV-1 Rev binding protein (HRB) family and encodes a protein with one Arf-GAP zinc finger domain, several phe-gly (FG) motifs, and four asn-pro-phe (NPF) motifs. This protein interacts with Eps15 homology (EH) domains and plays a role in the Rev export pathway, which mediates the nucleocytoplasmic transfer of proteins and RNAs. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000077454 | LRCH4 | leucine-rich repeats and calponin homology (CH) domain containing 4 | 4034 | This gene encodes a protein that contains leucine-rich repeats (LRR) at its amino terminus and that is known to be involved in ligand binding. The carboxyl terminus may act as a membrane anchor. Identified structural elements suggest that the encoded protein resembles a receptor. |
| NA | ENSG00000106333 | PCOLCE | procollagen C-endopeptidase enhancer | 5118 | Fibrillar collagen types I-III are synthesized as precursor molecules known as procollagens. These precursors contain amino- and carboxyl-terminal peptide extensions known as N- and C-propeptides, respectively, which are cleaved, upon secretion of procollagen from the cell, to yield the mature triple helical, highly structured fibrils. This gene encodes a glycoprotein which binds and drives the enzymatic cleavage of type I procollagen and heightens C-proteinase activity. |
| NA | ENSG00000106330 | MOSPD3 | motile sperm domain containing 3 | 64598 | This gene encodes a multi-pass membrane protein with a major sperm protein (MSP) domain. The deletion of a similar mouse gene is associated with defective cardiac development and neonatal lethality. Alternate transcriptional splice variants, encoding different isoforms, have been described. |
| NA | ENSG00000106327 | TFR2 | transferrin receptor 2 | 7036 | This gene encodes a single-pass type II membrane protein, which is a member of the transferrin receptor-like family. This protein mediates cellular uptake of transferrin-bound iron, and may be involved in iron metabolism, hepatocyte function and erythrocyte differentiation. Mutations in this gene have been associated with hereditary hemochromatosis type III. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000077080 | ACTL6B | actin like 6B | 51412 | The protein encoded by this gene is a member of a family of actin-related proteins (ARPs) which share significant amino acid sequence identity to conventional actins. Both actins and ARPs have an actin fold, which is an ATP-binding cleft, as a common feature. The ARPs are involved in diverse cellular processes, including vesicular transport, spindle orientation, nuclear migration and chromatin remodeling. This gene encodes a subunit of the BAF (BRG1/brm-associated factor) complex in mammals, which is functionally related to SWI/SNF complex in S. cerevisiae and Drosophila; the latter is thought to facilitate transcriptional activation of specific genes by antagonizing chromatin-mediated transcriptional repression. This subunit may be involved in the regulation of genes by structural modulation of their chromatin, specifically in the brain. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000172354 | GNB2 | G protein subunit beta 2 | 2783 | Heterotrimeric guanine nucleotide-binding proteins (G proteins), which integrate signals between receptors and effector proteins, are composed of an alpha, a beta, and a gamma subunit. These subunits are encoded by families of related genes. This gene encodes a beta subunit. Beta subunits are important regulators of alpha subunits, as well as of certain signal transduction receptors and effectors. This gene contains a trinucleotide (CCG) repeat length polymorphism in its 5’ UTR. |
| NA | ENSG00000146830 | GIGYF1 | GRB10 interacting GYF protein 1 | 64599 | NA |
| NA | ENSG00000172336 | POP7 | POP7 homolog, ribonuclease P/MRP subunit | 10248 | NA |
| NA | ENSG00000196411 | EPHB4 | EPH receptor B4 | 2050 | Ephrin receptors and their ligands, the ephrins, mediate numerous developmental processes, particularly in the nervous system. Based on their structures and sequence relationships, ephrins are divided into the ephrin-A (EFNA) class, which are anchored to the membrane by a glycosylphosphatidylinositol linkage, and the ephrin-B (EFNB) class, which are transmembrane proteins. The Eph family of receptors are divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. Ephrin receptors make up the largest subgroup of the receptor tyrosine kinase (RTK) family. The protein encoded by this gene binds to ephrin-B2 and plays an essential role in vascular development. |
| NA | ENSG00000146828 | SLC12A9 | solute carrier family 12 member 9 | 56996 | NA |
| NA | ENSG00000087077 | TRIP6 | thyroid hormone receptor interactor 6 | 7205 | This gene is a member of the zyxin family and encodes a protein with three LIM zinc-binding domains. This protein localizes to focal adhesion sites and along actin stress fibers. Recruitment of this protein to the plasma membrane occurs in a lysophosphatidic acid (LPA)-dependent manner and it regulates LPA-induced cell migration. Alternatively spliced variants which encode different protein isoforms have been described; however, not all variants have been fully characterized. |
| NA | ENSG00000087087 | SRRT | serrate, RNA effector molecule | 51593 | NA |
| NA | ENSG00000169894 | MUC3A | mucin 3A, cell surface associated | 4584 | The mucin genes encode epithelial glycoproteins, some of which are secreted and some membrane bound. Each of the genes contains at least one large domain of tandemly repeated sequence that encodes the peptide sequence rich in serine and/or threonine residues, which carries most of the O-linked glycosylation (Gendler and Spicer, 1995 [PubMed 7778880]). |
| NA | ENSG00000205277 | MUC12 | mucin 12, cell surface associated | 10071 | NA |
| NA | ENSG00000106366 | SERPINE1 | serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1 | 5054 | This gene encodes a member of the serine proteinase inhibitor (serpin) superfamily. This member is the principal inhibitor of tissue plasminogen activator (tPA) and urokinase (uPA), and hence is an inhibitor of fibrinolysis. Defects in this gene are the cause of plasminogen activator inhibitor-1 deficiency (PAI-1 deficiency), and high concentrations of the gene product are associated with thrombophilia. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000106367 | AP1S1 | adaptor related protein complex 1 sigma 1 subunit | 1174 | The protein encoded by this gene is part of the clathrin coat assembly complex which links clathrin to receptors in coated vesicles. These vesicles are involved in endocytosis and Golgi processing. This protein, as well as beta-prime-adaptin, gamma-adaptin, and the medium (mu) chain AP47, form the AP-1 assembly protein complex located at the Golgi vesicle. |
| NA | ENSG00000128564 | VGF | VGF nerve growth factor inducible | 7425 | This gene is specifically expressed in a subpopulation of neuroendocrine cells, and is upregulated by nerve growth factor. The structural organization of this gene is similar to that of the rat gene, and both the translated and the untranslated regions show a high degree of sequence similarity to the rat gene. The encoded secretory protein also shares similarities with the secretogranin/chromogranin family, however, its exact function is not known. |
| NA | ENSG00000106397 | PLOD3 | procollagen-lysine, 2-oxoglutarate 5-dioxygenase 3 | 8985 | The protein encoded by this gene is a membrane-bound homodimeric enzyme that is localized to the cisternae of the rough endoplasmic reticulum. The enzyme (cofactors iron and ascorbate) catalyzes the hydroxylation of lysyl residues in collagen-like peptides. The resultant hydroxylysyl groups are attachment sites for carbohydrates in collagen and thus are critical for the stability of intermolecular crosslinks. Some patients with Ehlers-Danlos syndrome type VIB have deficiencies in lysyl hydroxylase activity. |
| NA | ENSG00000106404 | CLDN15 | claudin 15 | 24146 | This gene encodes a member of the claudin family. Claudins are integral membrane proteins and components of tight junction strands. Tight junction strands serve as a physical barrier to prevent solutes and water from passing freely through the paracellular space between epithelial or endothelial cell sheets, and also play critical roles in maintaining cell polarity and signal transductions. Alternatively spliced transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000214253 | FIS1 | fission, mitochondrial 1 | 51024 | The balance between fission and fusion regulates the morphology of mitochondria. TTC11 is a component of a mitochondrial complex that promotes mitochondrial fission (James et al., 2003 [PubMed 12783892]). |
| NA | ENSG00000128581 | IFT22 | intraflagellar transport 22 | 64792 | NA |
| NA | ENSG00000257923 | CUX1 | cut like homeobox 1 | 1523 | The protein encoded by this gene is a member of the homeodomain family of DNA binding proteins. It may regulate gene expression, morphogenesis, and differentiation and it may also play a role in the cell cycle progession. Several alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000160999 | SH2B2 | SH2B adaptor protein 2 | 10603 | The protein encoded by this gene is expressed in B lymphocytes and contains pleckstrin homology and src homology 2 (SH2) domains. In Burkitt’s lymphoma cell lines, it is tyrosine-phosphorylated in response to B cell receptor stimulation. Because it binds Shc independent of stimulation and Grb2 after stimulation, it appears to play a role in signal transduction from the receptor to the Shc/Grb2 pathway. |
| NA | ENSG00000128563 | PRKRIP1 | PRKR interacting protein 1 (IL11 inducible) | 79706 | NA |
| NA | ENSG00000160991 | ORAI2 | ORAI calcium release-activated calcium modulator 2 | 80228 | NA |
| NA | ENSG00000160993 | ALKBH4 | alkB homolog 4, lysine demethylase | 54784 | NA |
| NA | ENSG00000161036 | LRWD1 | leucine-rich repeats and WD repeat domain containing 1 | 222229 | The protein encoded by this gene interacts with components of the origin recognition complex (ORC) and regulates the formation of the prereplicative complex. The encoded protein stabilizes the ORC and therefore aids in DNA replication. This protein is required for the G1/S phase transition of the cell cycle. In addition, the encoded protein binds to trimethylated histone H3 in heterochromatin and recruits the ORC and lysine methyltransferases, which help maintain the repressive heterochromatic state. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000005075 | POLR2J | polymerase (RNA) II subunit J | 5439 | This gene encodes a subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. The product of this gene exists as a heterodimer with another polymerase subunit; together they form a core subassembly unit of the polymerase. Two similar genes are located nearby on chromosome 7q22.1 and a pseudogene is found on chromosome 7p13. |
| NA | ENSG00000168255 | POLR2J3 | polymerase (RNA) II subunit J3 | 548644 | This gene is a member of the RNA polymerase II subunit 11 gene family, which includes three genes in a cluster on chromosome 7q22.1 and a pseudogene on chromosome 7p13. The founding member of this family, DNA directed RNA polymerase II polypeptide J, has been shown to encode a subunit of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. This locus produces multiple, alternatively spliced transcripts that potentially express isoforms with distinct C-termini compared to DNA directed RNA polymerase II polypeptide J. Most or all variants are spliced to include additional non-coding exons at the 3’ end which makes them candidates for nonsense-mediated decay (NMD). Consequently, it is not known if this locus expresses a protein or proteins in vivo. |
| NA | ENSG00000222011 | FAM185A | family with sequence similarity 185 member A | 222234 | NA |
| NA | ENSG00000161040 | FBXL13 | F-box and leucine-rich repeat protein 13 | 222235 | Members of the F-box protein family, such as FBXL13, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000128606 | LRRC17 | leucine rich repeat containing 17 | 10234 | NA |
| NA | ENSG00000170632 | ARMC10 | armadillo repeat containing 10 | 83787 | This gene encodes a protein that contains an armadillo repeat and transmembrane domain. The encoded protein decreases the transcriptional activity of the tumor suppressor protein p53 through direct interaction with the DNA-binding domain of p53, and may play a role in cell growth and survival. Upregulation of this gene may play a role in hepatocellular carcinoma. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 3. |
| NA | ENSG00000161048 | NAPEPLD | N-acyl phosphatidylethanolamine phospholipase D | 222236 | NAPEPLD is a phospholipase D type enzyme that catalyzes the release of N-acylethanolamine (NAE) from N-acyl-phosphatidylethanolamine (NAPE) in the second step of the biosynthesis of N-acylethanolamine (Okamoto et al., 2004 [PubMed 14634025]). |
| NA | ENSG00000105821 | DNAJC2 | DnaJ heat shock protein family (Hsp40) member C2 | 27000 | This gene is a member of the M-phase phosphoprotein (MPP) family. The gene encodes a phosphoprotein with a J domain and a Myb DNA-binding domain which localizes to both the nucleus and the cytosol. The protein is capable of forming a heterodimeric complex that associates with ribosomes, acting as a molecular chaperone for nascent polypeptide chains as they exit the ribosome. This protein was identified as a leukemia-associated antigen and expression of the gene is upregulated in leukemic blasts. Also, chromosomal aberrations involving this gene are associated with primary head and neck squamous cell tumors. This gene has a pseudogene on chromosome 6. Alternatively spliced variants which encode different protein isoforms have been described. |
| NA | ENSG00000164815 | ORC5 | origin recognition complex subunit 5 | 5001 | The origin recognition complex (ORC) is a highly conserved six subunit protein complex essential for the initiation of the DNA replication in eukaryotic cells. Studies in yeast demonstrated that ORC binds specifically to origins of replication and serves as a platform for the assembly of additional initiation factors such as Cdc6 and Mcm proteins. The protein encoded by this gene is a subunit of the ORC complex. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000135250 | SRPK2 | SRSF protein kinase 2 | 6733 | NA |
| NA | ENSG00000091127 | PUS7 | pseudouridylate synthase 7 (putative) | 54517 | NA |
| NA | ENSG00000135249 | RINT1 | RAD50 interactor 1 | 60561 | NA |
| NA | ENSG00000185055 | EFCAB10 | EF-hand calcium binding domain 10 | ENSG00000185055 | NA |
| NA | ENSG00000146776 | ATXN7L1 | ataxin 7 like 1 | 222255 | NA |
| NA | ENSG00000105835 | NAMPT | nicotinamide phosphoribosyltransferase | 10135 | This gene encodes a protein that catalyzes the condensation of nicotinamide with 5-phosphoribosyl-1-pyrophosphate to yield nicotinamide mononucleotide, one step in the biosynthesis of nicotinamide adenine dinucleotide. The protein belongs to the nicotinic acid phosphoribosyltransferase (NAPRTase) family and is thought to be involved in many important biological processes, including metabolism, stress response and aging. This gene has a pseudogene on chromosome 10. |
| NA | ENSG00000253276 | CCDC71L | coiled-coil domain containing 71-like | 168455 | NA |
| NA | ENSG00000005249 | PRKAR2B | protein kinase cAMP-dependent type II regulatory subunit beta | 5577 | cAMP is a signaling molecule important for a variety of cellular functions. cAMP exerts its effects by activating the cAMP-dependent protein kinase, which transduces the signal through phosphorylation of different target proteins. The inactive kinase holoenzyme is a tetramer composed of two regulatory and two catalytic subunits. cAMP causes the dissociation of the inactive holoenzyme into a dimer of regulatory subunits bound to four cAMP and two free monomeric catalytic subunits. Four different regulatory subunits and three catalytic subunits have been identified in humans. The protein encoded by this gene is one of the regulatory subunits. This subunit can be phosphorylated by the activated catalytic subunit. This subunit has been shown to interact with and suppress the transcriptional activity of the cAMP responsive element binding protein 1 (CREB1) in activated T cells. Knockout studies in mice suggest that this subunit may play an important role in regulating energy balance and adiposity. The studies also suggest that this subunit may mediate the gene induction and cataleptic behavior induced by haloperidol. |
| NA | ENSG00000164597 | COG5 | component of oligomeric golgi complex 5 | 10466 | The protein encoded by this gene is one of eight proteins (Cog1-8) which form a Golgi-localized complex (COG) required for normal Golgi morphology and function. The encoded protein is organized with conserved oligomeric Golgi complex components 6, 7 and 8 into a sub-complex referred to as lobe B. Alternative splicing results in multiple transcript variants. Mutations in this gene result in congenital disorder of glycosylation type 2I. |
| NA | ENSG00000105865 | DUS4L | dihydrouridine synthase 4 like | 11062 | NA |
| NA | ENSG00000075790 | BCAP29 | B-cell receptor-associated protein 29 | 55973 | NA |
| NA | ENSG00000105879 | CBLL1 | Cbl proto-oncogene like 1, E3 ubiquitin protein ligase | 79872 | This gene encodes an E3 ubiquitin-ligase for the E-cadherin complex and mediates its ubiquitination, endocytosis, and degradation in the lysosomes. The encoded protein contains a RING-finger domain and is also thought to have a role in control of cell proliferation. A related pseudogene has been identified on chromosome X. Alternative splicing results in a non-coding transcript variant. |
| NA | ENSG00000091140 | DLD | dihydrolipoamide dehydrogenase | 1738 | This gene encodes a member of the class-I pyridine nucleotide-disulfide oxidoreductase family. The encoded protein has been identified as a moonlighting protein based on its ability to perform mechanistically distinct functions. In homodimeric form, the encoded protein functions as a dehydrogenase and is found in several multi-enzyme complexes that regulate energy metabolism. However, as a monomer, this protein can function as a protease. Mutations in this gene have been identified in patients with E3-deficient maple syrup urine disease and lipoamide dehydrogenase deficiency. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000091136 | LAMB1 | laminin subunit beta 1 | 3912 | Laminins, a family of extracellular matrix glycoproteins, are the major noncollagenous constituent of basement membranes. They have been implicated in a wide variety of biological processes including cell adhesion, differentiation, migration, signaling, neurite outgrowth and metastasis. Laminins are composed of 3 non identical chains: laminin alpha, beta and gamma (formerly A, B1, and B2, respectively) and they form a cruciform structure consisting of 3 short arms, each formed by a different chain, and a long arm composed of all 3 chains. Each laminin chain is a multidomain protein encoded by a distinct gene. Several isoforms of each chain have been described. Different alpha, beta and gamma chain isomers combine to give rise to different heterotrimeric laminin isoforms which are designated by Arabic numerals in the order of their discovery, i.e. alpha1beta1gamma1 heterotrimer is laminin 1. The biological functions of the different chains and trimer molecules are largely unknown, but some of the chains have been shown to differ with respect to their tissue distribution, presumably reflecting diverse functions in vivo. This gene encodes the beta chain isoform laminin, beta 1. The beta 1 chain has 7 structurally distinct domains which it shares with other beta chain isomers. The C-terminal helical region containing domains I and II are separated by domain alpha, domains III and V contain several EGF-like repeats, and domains IV and VI have a globular conformation. Laminin, beta 1 is expressed in most tissues that produce basement membranes, and is one of the 3 chains constituting laminin 1, the first laminin isolated from Engelbreth-Holm-Swarm (EHS) tumor. A sequence in the beta 1 chain that is involved in cell attachment, chemotaxis, and binding to the laminin receptor was identified and shown to have the capacity to inhibit metastasis. |
| NA | ENSG00000091129 | NRCAM | neuronal cell adhesion molecule | 4897 | Cell adhesion molecules (CAMs) are members of the immunoglobulin superfamily. This gene encodes a neuronal cell adhesion molecule with multiple immunoglobulin-like C2-type domains and fibronectin type-III domains. This ankyrin-binding protein is involved in neuron-neuron adhesion and promotes directional signaling during axonal cone growth. This gene is also expressed in non-neural tissues and may play a general role in cell-cell communication via signaling from its intracellular domain to the actin cytoskeleton during directional cell migration. Allelic variants of this gene have been associated with autism and addiction vulnerability. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000135241 | PNPLA8 | patatin like phospholipase domain containing 8 | 50640 | This gene encodes a member of the patatin-like phospholipase domain containing protein family. Members of this family are phospholipases which catalyze the cleavage of fatty acids from membrane phospholipids. The product of this gene is a calcium-independent phospholipase. Mutations in this gene have been associated with mitochondrial myopathy with lactic acidosis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000177683 | THAP5 | THAP domain containing 5 | 168451 | NA |
| NA | ENSG00000128590 | DNAJB9 | DnaJ heat shock protein family (Hsp40) member B9 | 4189 | This gene is a member of the J protein family. J proteins function in many cellular processes by regulating the ATPase activity of 70 kDa heat shock proteins. This gene is a member of the type 2 subgroup of DnaJ proteins. The encoded protein is localized to the endoplasmic reticulum. This protein is induced by endoplasmic reticulum stress and plays a role in protecting stressed cells from apoptosis. |
| NA | ENSG00000184903 | IMMP2L | inner mitochondrial membrane peptidase subunit 2 | 83943 | This gene encodes a protein involved in processing the signal peptide sequences used to direct mitochondrial proteins to the mitochondria. The encoded protein resides in the mitochondria and is one of the necessary proteins for the catalytic activity of the mitochondrial inner membrane peptidase (IMP) complex. Two variants that encode the same protein have been described for this gene. |
| NA | ENSG00000173114 | LRRN3 | leucine rich repeat neuronal 3 | 54674 | NA |
| NA | ENSG00000146802 | TMEM168 | transmembrane protein 168 | 64418 | NA |
| NA | ENSG00000164603 | C7orf60 | chromosome 7 open reading frame 60 | 154743 | NA |
| NA | ENSG00000128573 | FOXP2 | forkhead box P2 | 93986 | This gene encodes a member of the forkhead/winged-helix (FOX) family of transcription factors. It is expressed in fetal and adult brain as well as in several other organs such as the lung and gut. The protein product contains a FOX DNA-binding domain and a large polyglutamine tract and is an evolutionarily conserved transcription factor, which may bind directly to approximately 300 to 400 gene promoters in the human genome to regulate the expression of a variety of genes. This gene is required for proper development of speech and language regions of the brain during embryogenesis, and may be involved in a variety of biological pathways and cascades that may ultimately influence language development. Mutations in this gene cause speech-language disorder 1 (SPCH1), also known as autosomal dominant speech and language disorder with orofacial dyspraxia. Multiple alternative transcripts encoding different isoforms have been identified in this gene. |
| NA | ENSG00000135272 | MDFIC | MyoD family inhibitor domain containing | 29969 | This gene product is a member of a family of proteins characterized by a specific cysteine-rich C-terminal domain, which is involved in transcriptional regulation of viral genome expression. Alternative translation initiation from an upstream non-AUG (GUG), and an in-frame, downstream AUG codon, results in the production of two isoforms, p40 and p32, respectively, which have different subcellular localization; p32 is mainly found in the cytoplasm, whereas p40 is targeted to the nucleolus. Both isoforms have transcriptional regulatory activity that is attributable to the cysteine-rich C-terminal domain. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000135269 | TES | testin LIM domain protein | 26136 | Cancer-associated chromosomal changes often involve regions containing fragile sites. This gene maps to a commom fragile site on chromosome 7q31.2 designated FRA7G. This gene is similar to mouse Testin, a testosterone-responsive gene encoding a Sertoli cell secretory protein containing three LIM domains. LIM domains are double zinc-finger motifs that mediate protein-protein interactions between transcription factors, cytoskeletal proteins and signaling proteins. This protein is a negative regulator of cell growth and may act as a tumor suppressor. This scaffold protein may also play a role in cell adhesion, cell spreading and in the reorganization of the actin cytoskeleton. Multiple protein isoforms are encoded by transcript variants of this gene. |
| NA | ENSG00000105974 | CAV1 | caveolin 1 | 857 | The scaffolding protein encoded by this gene is the main component of the caveolae plasma membranes found in most cell types. The protein links integrin subunits to the tyrosine kinase FYN, an initiating step in coupling integrins to the Ras-ERK pathway and promoting cell cycle progression. The gene is a tumor suppressor gene candidate and a negative regulator of the Ras-p42/44 mitogen-activated kinase cascade. Caveolin 1 and caveolin 2 are located next to each other on chromosome 7 and express colocalizing proteins that form a stable hetero-oligomeric complex. Mutations in this gene have been associated with Berardinelli-Seip congenital lipodystrophy. Alternatively spliced transcripts encode alpha and beta isoforms of caveolin 1. |
| NA | ENSG00000105976 | MET | MET proto-oncogene, receptor tyrosine kinase | 4233 | The proto-oncogene MET product is the hepatocyte growth factor receptor and encodes tyrosine-kinase activity. The primary single chain precursor protein is post-translationally cleaved to produce the alpha and beta subunits, which are disulfide linked to form the mature receptor. Various mutations in the MET gene are associated with papillary renal carcinoma. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198898 | CAPZA2 | capping actin protein of muscle Z-line alpha subunit 2 | 830 | The protein encoded by this gene is a member of the F-actin capping protein alpha subunit family. It is the alpha subunit of the barbed-end actin binding protein Cap Z. By capping the barbed end of actin filaments, Cap Z regulates the growth of the actin filaments at the barbed end. |
| NA | ENSG00000004866 | ST7 | suppression of tumorigenicity 7 | 7982 | The gene for this product maps to a region on chromosome 7 identified as an autism-susceptibility locus. Mutation screening of the entire coding region in autistic individuals failed to identify phenotype-specific variants, suggesting that coding mutations for this gene are unlikely to be involved in the etiology of autism. The function of this gene product has not been determined. Transcript variants encoding different isoforms of this protein have been described. |
| NA | ENSG00000004866 | ST7-OT3 | ST7 overlapping transcript 3 | 93655 | NA |
| NA | ENSG00000077063 | CTTNBP2 | cortactin binding protein 2 | 83992 | This gene encodes a protein with six ankyrin repeats and several proline-rich regions. A similar gene in rat interacts with a central regulator of the actin cytoskeleton. |
| NA | ENSG00000128534 | LSM8 | LSM8 homolog, U6 small nuclear RNA associated | 51691 | This gene encodes a member of the like-Sm family of proteins. The encoded protein consists of a closed barrel shape, made up of five anti-parallel beta strands and an alpha helix. This protein partners with six paralogs to form a heteroheptameric ring which transiently binds U6 small nuclear RNAs and is involved in the general maturation of RNA in the nucleus. |
| NA | ENSG00000184408 | KCND2 | potassium voltage-gated channel subfamily D member 2 | 3751 | Voltage-gated potassium (Kv) channels represent the most complex class of voltage-gated ion channels from both functional and structural standpoints. Their diverse functions include regulating neurotransmitter release, heart rate, insulin secretion, neuronal excitability, epithelial electrolyte transport, smooth muscle contraction, and cell volume. Four sequence-related potassium channel genes - shaker, shaw, shab, and shal - have been identified in Drosophila, and each has been shown to have human homolog(s). This gene encodes a member of the potassium channel, voltage-gated, shal-related subfamily, members of which form voltage-activated A-type potassium ion channels and are prominent in the repolarization phase of the action potential. This member mediates a rapidly inactivating, A-type outward potassium current which is not under the control of the N terminus as it is in Shaker channels. |
| NA | ENSG00000106025 | TSPAN12 | tetraspanin 12 | 23554 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. |
| NA | ENSG00000071243 | ING3 | inhibitor of growth family member 3 | 54556 | The protein encoded by this gene is similar to ING1, a tumor suppressor protein that can interact with TP53, inhibit cell growth, and induce apoptosis. This protein contains a PHD-finger, which is a common motif in proteins involved in chromatin remodeling. This gene can activate p53 trans-activated promoters, including promoters of p21/waf1 and bax. Overexpression of this gene has been shown to inhibit cell growth and induce apoptosis. Allelic loss and reduced expression of this gene were detected in head and neck cancers. Two alternatively spliced transcript variants encoding different isoforms have been observed. |
| NA | ENSG00000196937 | FAM3C | family with sequence similarity 3 member C | 10447 | This gene is a member of the family with sequence similarity 3 (FAM3) family and encodes a secreted protein with a GG domain. A change in expression of this protein has been noted in pancreatic cancer-derived cells. |
| NA | ENSG00000008311 | AASS | aminoadipate-semialdehyde synthase | 10157 | This gene encodes a bifunctional enzyme that catalyzes the first two steps in the mammalian lysine degradation pathway. The N-terminal and the C-terminal portions of this enzyme contain lysine-ketoglutarate reductase and saccharopine dehydrogenase activity, respectively, resulting in the conversion of lysine to alpha-aminoadipic semialdehyde. Mutations in this gene are associated with familial hyperlysinemia. |
| NA | ENSG00000081803 | CADPS2 | Ca2+ dependent secretion activator 2 | 93664 | This gene encodes a member of the calcium-dependent activator of secretion (CAPS) protein family, which are calcium binding proteins that regulate the exocytosis of synaptic and dense-core vesicles in neurons and neuroendocrine cells. Mutations in this gene may contribute to autism susceptibility. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000128609 | NDUFA5 | NADH:ubiquinone oxidoreductase subunit A5 | 4698 | This nuclear gene encodes a conserved protein that comprises the B13 subunit of complex I of the mitochondrial respiratory chain. The encoded protein localizes to the inner mitochondrial membrane, where it is thought to aid in the transfer of electrons from NADH to ubiquinone. Alternative splicing results in multiple transcript variants. There are numerous pseudogenes of this gene on chromosomes 1, 3, 6, 8, 9, 11, 12, and 16. |
| NA | ENSG00000170775 | GPR37 | G protein-coupled receptor 37 | 2861 | This gene is a member of the G protein-coupled receptor family. The encoded protein contains seven transmembrane domains and is found in cell and endoplasmic reticulum membranes. G protein-coupled receptors are involved in translating outside signals into G protein mediated intracellular effects. This gene product interacts with Parkin and is involved in juvenile Parkinson disease. |
| NA | ENSG00000128513 | POT1 | protection of telomeres 1 | 25913 | This gene is a member of the telombin family and encodes a nuclear protein involved in telomere maintenance. Specifically, this protein functions as a member of a multi-protein complex that binds to the TTAGGG repeats of telomeres, regulating telomere length and protecting chromosome ends from illegitimate recombination, catastrophic chromosome instability, and abnormal chromosome segregation. Increased transcriptional expression of this gene is associated with stomach carcinogenesis and its progression. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000179603 | GRM8 | glutamate receptor, metabotropic 8 | 2918 | L-glutamate is the major excitatory neurotransmitter in the central nervous system and activates both ionotropic and metabotropic glutamate receptors. Glutamatergic neurotransmission is involved in most aspects of normal brain function and can be perturbed in many neuropathologic conditions. The metabotropic glutamate receptors are a family of G protein-coupled receptors, that have been divided into 3 groups on the basis of sequence homology, putative signal transduction mechanisms, and pharmacologic properties. Group I includes GRM1 and GRM5 and these receptors have been shown to activate phospholipase C. Group II includes GRM2 and GRM3 while Group III includes GRM4, GRM6, GRM7 and GRM8. Group II and III receptors are linked to the inhibition of the cyclic AMP cascade but differ in their agonist selectivities. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000048405 | ZNF800 | zinc finger protein 800 | 168850 | NA |
| NA | ENSG00000179562 | GCC1 | GRIP and coiled-coil domain containing 1 | 79571 | The protein encoded by this gene is a peripheral membrane protein. It is sensitive to brefeldin A. This encoded protein contains a GRIP domain which is thought to be used in targeting. It may play a role in the organization of trans-Golgi network subcompartment involved with membrane transport. |
| NA | ENSG00000004059 | ARF5 | ADP ribosylation factor 5 | 381 | This gene is a member of the human ADP-ribosylation factor (ARF) gene family. These genes encode small guanine nucleotide-binding proteins that stimulate the ADP-ribosyltransferase activity of cholera toxin and play a role in vesicular trafficking and as activators of phospholipase D. The gene products include 6 ARF proteins and 11 ARF-like proteins and constitute 1 family of the RAS superfamily. The ARF proteins are categorized as class I (ARF1, ARF2,and ARF3), class II (ARF4 and ARF5) and class III (ARF6). The members of each class share a common gene organization. |
| NA | ENSG00000197157 | SND1 | staphylococcal nuclease and tudor domain containing 1 | 27044 | NA |
| NA | ENSG00000128594 | LRRC4 | leucine rich repeat containing 4 | 64101 | This gene is significantly downregulated in primary brain tumors. The exact function of the protein encoded by this gene is unknown. |
| NA | ENSG00000106348 | IMPDH1 | IMP (inosine 5’-monophosphate) dehydrogenase 1 | 3614 | The protein encoded by this gene acts as a homotetramer to regulate cell growth. The encoded protein is an enzyme that catalyzes the synthesis of xanthine monophosphate (XMP) from inosine-5’-monophosphate (IMP). This is the rate-limiting step in the de novo synthesis of guanine nucleotides. Defects in this gene are a cause of retinitis pigmentosa type 10 (RP10). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000135248 | FAM71F1 | family with sequence similarity 71 member F1 | 84691 | NA |
| NA | ENSG00000128595 | CALU | calumenin | 813 | The product of this gene is a calcium-binding protein localized in the endoplasmic reticulum (ER) and it is involved in such ER functions as protein folding and sorting. This protein belongs to a family of multiple EF-hand proteins (CERC) that include reticulocalbin, ERC-55, and Cab45 and the product of this gene. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000128596 | CCDC136 | coiled-coil domain containing 136 | 64753 | NA |
| NA | ENSG00000128591 | FLNC | filamin C | 2318 | This gene encodes one of three related filamin genes, specifically gamma filamin. These filamin proteins crosslink actin filaments into orthogonal networks in cortical cytoplasm and participate in the anchoring of membrane proteins for the actin cytoskeleton. Three functional domains exist in filamin: an N-terminal filamentous actin-binding domain, a C-terminal self-association domain, and a membrane glycoprotein-binding domain. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000128524 | ATP6V1F | ATPase H+ transporting V1 subunit F | 9296 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A and three B subunits, two G subunits plus the C, D, E, F, and H subunits. The V1 domain contains the ATP catalytic site. The V0 domain consists of five different subunits: a, c, c’, c’, and d. Additional isoforms of many of the V1 and V0 subunit proteins are encoded by multiple genes or alternatively spliced transcript variants. This encoded protein is the V1 domain F subunit protein. |
| NA | ENSG00000064419 | TNPO3 | transportin 3 | 23534 | The protein encoded by this gene is a nuclear import receptor for serine/arginine-rich (SR) proteins such as the splicing factors SFRS1 and SFRS2. The encoded protein has also been shown to be involved in HIV-1 infection, apparently through interaction with the HIV-1 capsid protein. Two transcript variants encoding different isoforms as well as a noncoding transcript have been found for this gene. |
| NA | ENSG00000158457 | TSPAN33 | tetraspanin 33 | 340348 | NA |
| NA | ENSG00000128602 | SMO | smoothened, frizzled class receptor | 6608 | The protein encoded by this gene is a G protein-coupled receptor that interacts with the patched protein, a receptor for hedgehog proteins. The encoded protein tranduces signals to other proteins after activation by a hedgehog protein/patched protein complex. |
| NA | ENSG00000158467 | AHCYL2 | adenosylhomocysteinase like 2 | 23382 | The protein encoded by this gene acts as a homotetramer and may be involved in the conversion of S-adenosyl-L-homocysteine to L-homocysteine and adenosine. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000128578 | STRIP2 | striatin interacting protein 2 | 57464 | NA |
| NA | ENSG00000106459 | NRF1 | nuclear respiratory factor 1 | 4899 | This gene encodes a protein that homodimerizes and functions as a transcription factor which activates the expression of some key metabolic genes regulating cellular growth and nuclear genes required for respiration, heme biosynthesis, and mitochondrial DNA transcription and replication. The protein has also been associated with the regulation of neurite outgrowth. Alternative splicing results in multiple transcript variants. Confusion has occurred in bibliographic databases due to the shared symbol of NRF1 for this gene and for ‘nuclear factor (erythroid-derived 2)-like 1’ which has an official symbol of NFE2L1. |
| NA | ENSG00000186591 | UBE2H | ubiquitin conjugating enzyme E2 H | 7328 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, or E1s, ubiquitin-conjugating enzymes, or E2s, and ubiquitin-protein ligases, or E3s. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. The encoded protein sequence is 100% identical to the mouse homolog and 98% identical to the frog and zebrafish homologs. Three alternatively spliced transcript variants have been found for this gene and they encode distinct isoforms. |
| NA | ENSG00000091732 | ZC3HC1 | zinc finger C3HC-type containing 1 | 51530 | This gene encodes an F-box-containing protein that is a component of an SCF-type E3 ubiquitin ligase complex that regulates the onset of cell division. The G2/M transition in the cell cycle requires the interaction of the proteins cyclin B1 and cyclin-dependent kinase 1. The activated ubiquitin ligase complex targets the protein cyclin B1 for degradation, preventing this transition to mitosis. |
| NA | ENSG00000128607 | KLHDC10 | kelch domain containing 10 | 23008 | NA |
| NA | ENSG00000146842 | TMEM209 | transmembrane protein 209 | 84928 | NA |
| NA | ENSG00000106477 | CEP41 | centrosomal protein 41kDa | 95681 | This gene encodes a centrosomal and microtubule-binding protein which is predicted to have two coiled-coil domains and a rhodanese domain. In human retinal pigment epithelial cells the protein localized to centrioles and cilia. Mutations in this gene have been associated with Joubert Syndrome 15; an autosomal recessive ciliopathy and neurological disorder. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000106484 | MEST | mesoderm specific transcript | 4232 | This gene encodes a member of the alpha/beta hydrolase superfamily. It is imprinted, exhibiting preferential expression from the paternal allele in fetal tissues, and isoform-specific imprinting in lymphocytes. The loss of imprinting of this gene has been linked to certain types of cancer and may be due to promotor switching. The encoded protein may play a role in development. Alternatively spliced transcript variants encoding multiple isoforms have been identified for this gene. Pseudogenes of this gene are located on the short arm of chromosomes 3 and 4, and the long arm of chromosomes 6 and 15. |
| NA | ENSG00000158623 | COPG2 | coatomer protein complex subunit gamma 2 | 26958 | NA |
| NA | ENSG00000128567 | PODXL | podocalyxin like | 5420 | This gene encodes a member of the sialomucin protein family. The encoded protein was originally identified as an important component of glomerular podocytes. Podocytes are highly differentiated epithelial cells with interdigitating foot processes covering the outer aspect of the glomerular basement membrane. Other biological activities of the encoded protein include: binding in a membrane protein complex with Na+/H+ exchanger regulatory factor to intracellular cytoskeletal elements, playing a role in hematopoetic cell differentiation, and being expressed in vascular endothelium cells and binding to L-selectin. |
| NA | ENSG00000221866 | PLXNA4 | plexin A4 | 91584 | NA |
| NA | ENSG00000106554 | CHCHD3 | coiled-coil-helix-coiled-coil-helix domain containing 3 | 54927 | The protein encoded by this gene is an inner mitochondrial membrane scaffold protein. Absence of the encoded protein affects the structural integrity of mitochondrial cristae and leads to reductions in ATP production, cell growth, and oxygen consumption. This protein is part of the mitochondrial contact site and cristae organizing system (MICOS). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000131558 | EXOC4 | exocyst complex component 4 | 60412 | The protein encoded by this gene is a component of the exocyst complex, a multiple protein complex essential for targeting exocytic vesicles to specific docking sites on the plasma membrane. Though best characterized in yeast, the component proteins and functions of exocyst complex have been demonstrated to be highly conserved in higher eukaryotes. At least eight components of the exocyst complex, including this protein, are found to interact with the actin cytoskeletal remodeling and vesicle transport machinery. The complex is also essential for the biogenesis of epithelial cell surface polarity. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000205060 | SLC35B4 | solute carrier family 35 member B4 | 84912 | Glycosyltransferases, such as SLC35B4, transport nucleotide sugars from the cytoplasm where they are synthesized, to the Golgi apparatus where they are utilized in the synthesis of glycoproteins, glycolipids, and proteoglycans (Ashikov et al., 2005 [PubMed 15911612]). |
| NA | ENSG00000085662 | AKR1B1 | aldo-keto reductase family 1, member B1 (aldose reductase) | 231 | This gene encodes a member of the aldo/keto reductase superfamily, which consists of more than 40 known enzymes and proteins. This member catalyzes the reduction of a number of aldehydes, including the aldehyde form of glucose, and is thereby implicated in the development of diabetic complications by catalyzing the reduction of glucose to sorbitol. Multiple pseudogenes have been identified for this gene. The nomenclature system used by the HUGO Gene Nomenclature Committee to define human aldo-keto reductase family members is known to differ from that used by the Mouse Genome Informatics database. |
| NA | ENSG00000172331 | BPGM | bisphosphoglycerate mutase | 669 | 2,3-diphosphoglycerate (2,3-DPG) is a small molecule found at high concentrations in red blood cells where it binds to and decreases the oxygen affinity of hemoglobin. This gene encodes a multifunctional enzyme that catalyzes 2,3-DPG synthesis via its synthetase activity, and 2,3-DPG degradation via its phosphatase activity. The enzyme also has phosphoglycerate phosphomutase activity. Deficiency of this enzyme increases the affinity of cells for oxygen. Mutations in this gene result in hemolytic anemia. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000122786 | CALD1 | caldesmon 1 | 800 | This gene encodes a calmodulin- and actin-binding protein that plays an essential role in the regulation of smooth muscle and nonmuscle contraction. The conserved domain of this protein possesses the binding activities to Ca(2+)-calmodulin, actin, tropomyosin, myosin, and phospholipids. This protein is a potent inhibitor of the actin-tropomyosin activated myosin MgATPase, and serves as a mediating factor for Ca(2+)-dependent inhibition of smooth muscle contraction. Alternative splicing of this gene results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000146856 | AGBL3 | ATP/GTP binding protein-like 3 | 340351 | NA |
| NA | ENSG00000122783 | C7orf49 | chromosome 7 open reading frame 49 | 78996 | NA |
| NA | ENSG00000105875 | WDR91 | WD repeat domain 91 | 29062 | NA |
| NA | ENSG00000080802 | CNOT4 | CCR4-NOT transcription complex subunit 4 | 4850 | The protein encoded by this gene is a subunit of the CCR4-NOT complex, a global transcriptional regulator. The encoded protein interacts with CNOT1 and has E3 ubiquitin ligase activity. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000155561 | NUP205 | nucleoporin 205kDa | 23165 | NA |
| NA | ENSG00000105887 | MTPN | myotrophin | 136319 | The transcript produced from this gene is bi-cistronic and can encode both myotrophin and leucine zipper protein 6. The myotrophin protein is associated with cardiac hypertrophy, where it is involved in the conversion of NFkappa B p50-p65 heterodimers to p50-p50 and p65-p65 homodimers. This protein also has a potential function in cerebellar morphogenesis, and it may be involved in the differentiation of cerebellar neurons, particularly of granule cells. A cryptic ORF at the 3’ end of this transcript uses a novel internal ribosome entry site and a non-AUG translation initiation codon to produce leucine zipper protein 6, a 6.4 kDa tumor antigen that is associated with myeloproliferative disease. |
| NA | ENSG00000157680 | DGKI | diacylglycerol kinase iota | 9162 | This gene is a member of the type IV diacylglycerol kinase subfamily. Diacylglycerol kinases regulate the intracellular concentration of diacylglycerol through its phosphorylation, producing phosphatidic acid. The specific role of the enzyme encoded by this gene is undetermined, however, it may play a crucial role in the production of phosphatidic acid in the retina or in recessive forms of retinal degeneration. |
| NA | ENSG00000182158 | CREB3L2 | cAMP responsive element binding protein 3-like 2 | 64764 | This gene encodes a member of the oasis bZIP transcription factor family. Members of this family can dimerize but form homodimers only. The encoded protein is a transcriptional activator. Translocations between this gene on chromosome 7 and the gene fused in sarcoma on chromosome 16 can be found in some tumors. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000122779 | TRIM24 | tripartite motif containing 24 | 8805 | The protein encoded by this gene mediates transcriptional control by interaction with the activation function 2 (AF2) region of several nuclear receptors, including the estrogen, retinoic acid, and vitamin D3 receptors. The protein localizes to nuclear bodies and is thought to associate with chromatin and heterochromatin-associated factors. The protein is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains - a RING, a B-box type 1 and a B-box type 2 - and a coiled-coil region. Two alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000122778 | KIAA1549 | KIAA1549 | 57670 | The protein encoded by this gene belongs to the UPF0606 family. This gene has been found to be fused to the BRAF oncogene in many cases of pilocytic astrocytoma. The fusion results from 2Mb tandem duplications at 7q34. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000105948 | TTC26 | tetratricopeptide repeat domain 26 | 79989 | NA |
| NA | ENSG00000164898 | C7orf55 | chromosome 7 open reading frame 55 | 154791 | NA |
| NA | ENSG00000146963 | LUC7L2 | LUC7-like 2 pre-mRNA splicing factor | 51631 | This gene encodes a protein that contains a C2H2-type zinc finger, coiled-coil region and arginine, serine-rich (RS) domain. A similar protein in mouse interacts with sodium channel modifier 1, and the encoded protein may be involved in the recognition of non-consensus splice donor sites in association with the U1 snRNP spliceosomal subunit. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000188883 | KLRG2 | killer cell lectin like receptor G2 | 346689 | NA |
| NA | ENSG00000064393 | HIPK2 | homeodomain interacting protein kinase 2 | 28996 | This gene encodes a conserved serine/threonine kinase that is a member of the homeodomain-interacting protein kinase family. The encoded protein interacts with homeodomain transcription factors and many other transcription factors such as p53, and can function as both a corepressor and a coactivator depending on the transcription factor and its subcellular localization. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000059377 | TBXAS1 | thromboxane A synthase 1 | 6916 | This gene encodes a member of the cytochrome P450 superfamily of enzymes. The cytochrome P450 proteins are monooxygenases which catalyze many reactions involved in drug metabolism and synthesis of cholesterol, steroids and other lipids. However, this protein is considered a member of the cytochrome P450 superfamily on the basis of sequence similarity rather than functional similarity. This endoplasmic reticulum membrane protein catalyzes the conversion of prostglandin H2 to thromboxane A2, a potent vasoconstrictor and inducer of platelet aggregation. The enzyme plays a role in several pathophysiological processes including hemostasis, cardiovascular disease, and stroke. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000059378 | PARP12 | poly(ADP-ribose) polymerase family member 12 | 64761 | NA |
| NA | ENSG00000006459 | KDM7A | lysine demethylase 7A | 80853 | NA |
| NA | ENSG00000157800 | SLC37A3 | solute carrier family 37 member 3 | 84255 | NA |
| NA | ENSG00000133606 | MKRN1 | makorin ring finger protein 1 | 23608 | This gene encodes a protein that belongs to a novel class of zinc finger proteins. The encoded protein functions as a transcriptional co-regulator, and as an E3 ubiquitin ligase that promotes the ubiquitination and proteasomal degradation of target proteins. The protein encoded by this gene is thought to regulate RNA polymerase II-catalyzed transcription. Substrates for this protein’s E3 ubiquitin ligase activity include the capsid protein of the West Nile virus and the catalytic subunit of the telomerase ribonucleoprotein. This protein controls cell cycle arrest and apoptosis by regulating p21, a cell cycle regulator, and the tumor suppressor protein p53. Pseudogenes of this gene are present on chromosomes 1, 3, 9, 12 and 20, and on the X chromosome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000146966 | DENND2A | DENN domain containing 2A | 27147 | NA |
| NA | ENSG00000133597 | ADCK2 | aarF domain containing kinase 2 | 90956 | NA |
| NA | ENSG00000090266 | NDUFB2 | NADH:ubiquinone oxidoreductase subunit B2 | 4708 | The protein encoded by this gene is a subunit of the multisubunit NADH:ubiquinone oxidoreductase (complex I). Mammalian complex I is composed of 45 different subunits. This protein has NADH dehydrogenase activity and oxidoreductase activity. It plays a important role in transfering electrons from NADH to the respiratory chain. The immediate electron acceptor for the enzyme is believed to be ubiquinone. Hydropathy analysis revealed that this subunit and 4 other subunits have an overall hydrophilic pattern, even though they are found within the hydrophobic protein (HP) fraction of complex I. |
| NA | ENSG00000157764 | BRAF | B-Raf proto-oncogene, serine/threonine kinase | 673 | This gene encodes a protein belonging to the raf/mil family of serine/threonine protein kinases. This protein plays a role in regulating the MAP kinase/ERKs signaling pathway, which affects cell division, differentiation, and secretion. Mutations in this gene are associated with cardiofaciocutaneous syndrome, a disease characterized by heart defects, mental retardation and a distinctive facial appearance. Mutations in this gene have also been associated with various cancers, including non-Hodgkin lymphoma, colorectal cancer, malignant melanoma, thyroid carcinoma, non-small cell lung carcinoma, and adenocarcinoma of lung. A pseudogene, which is located on chromosome X, has been identified for this gene. |
| NA | ENSG00000261115 | TMEM178B | transmembrane protein 178B | 100507421 | NA |
| NA | ENSG00000006530 | AGK | acylglycerol kinase | 55750 | The protein encoded by this gene is a mitochondrial membrane protein involved in lipid and glycerolipid metabolism. The encoded protein is a lipid kinase that catalyzes the formation of phosphatidic and lysophosphatidic acids. Defects in this gene have been associated with mitochondrial DNA depletion syndrome 10. |
| NA | ENSG00000257093 | KIAA1147 | KIAA1147 | 57189 | NA |
| NA | ENSG00000106028 | SSBP1 | single stranded DNA binding protein 1 | 6742 | SSBP1 is a housekeeping gene involved in mitochondrial biogenesis (Tiranti et al., 1995 [PubMed 7789991]). It is also a subunit of a single-stranded DNA (ssDNA)-binding complex involved in the maintenance of genome stability (Huang et al., 2009) [PubMed 19683501]. |
| NA | ENSG00000270672 | MTRNR2L6 | MT-RNR2-like 6 | 100463482 | NA |
| NA | ENSG00000106123 | EPHB6 | EPH receptor B6 | 2051 | This gene encodes a member of a family of transmembrane proteins that function as receptors for ephrin-B family proteins. Unlike other members of this family, the encoded protein does not contain a functional kinase domain. Activity of this protein can influence cell adhesion and migration. Expression of this gene is downregulated during tumor progression, suggesting that the protein may suppress tumor invasion and metastasis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197448 | GSTK1 | glutathione S-transferase kappa 1 | 373156 | This gene encodes a member of the kappa class of the glutathione transferase superfamily of enzymes that function in cellular detoxification. The encoded protein is localized to the peroxisome and catalyzes the conjugation of glutathione to a wide range of hydrophobic substates facilitating the removal of these compounds from cells. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000106144 | CASP2 | caspase 2 | 835 | This gene encodes a member of the cysteine-aspartic acid protease (caspase) family. Caspases mediate cellular apoptosis through the proteolytic cleavage of specific protein substrates. The encoded protein may function in stress-induced cell death pathways, cell cycle maintenance, and the suppression of tumorigenesis. Increased expression of this gene may play a role in neurodegenerative disorders including Alzheimer’s disease, Huntington’s disease and temporal lobe epilepsy. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000159784 | FAM131B | family with sequence similarity 131 member B | 9715 | NA |
| NA | ENSG00000159840 | ZYX | zyxin | 7791 | Focal adhesions are actin-rich structures that enable cells to adhere to the extracellular matrix and at which protein complexes involved in signal transduction assemble. Zyxin is a zinc-binding phosphoprotein that concentrates at focal adhesions and along the actin cytoskeleton. Zyxin has an N-terminal proline-rich domain and three LIM domains in its C-terminal half. The proline-rich domain may interact with SH3 domains of proteins involved in signal transduction pathways while the LIM domains are likely involved in protein-protein binding. Zyxin may function as a messenger in the signal transduction pathway that mediates adhesion-stimulated changes in gene expression and may modulate the cytoskeletal organization of actin bundles. Alternative splicing results in multiple transcript variants that encode the same isoform. |
| NA | ENSG00000146904 | EPHA1 | EPH receptor A1 | 2041 | This gene belongs to the ephrin receptor subfamily of the protein-tyrosine kinase family. EPH and EPH-related receptors have been implicated in mediating developmental events, particularly in the nervous system. Receptors in the EPH subfamily typically have a single kinase domain and an extracellular region containing a Cys-rich domain and 2 fibronectin type III repeats. The ephrin receptors are divided into 2 groups based on the similarity of their extracellular domain sequences and their affinities for binding ephrin-A and ephrin-B ligands. This gene is expressed in some human cancer cell lines and has been implicated in carcinogenesis. |
| NA | ENSG00000198420 | TCAF1 | TRPM8 channel associated factor 1 | 9747 | NA |
| NA | ENSG00000213214 | ARHGEF35 | Rho guanine nucleotide exchange factor 35 | 445328 | NA |
| NA | ENSG00000050327 | LOC102725117 | rho guanine nucleotide exchange factor 5-like | 102725117 | NA |
| NA | ENSG00000050327 | ARHGEF5 | Rho guanine nucleotide exchange factor 5 | 7984 | Rho GTPases play a fundamental role in numerous cellular processes initiated by extracellular stimuli that work through G protein coupled receptors. The encoded protein may form a complex with G proteins and stimulate Rho-dependent signals. This protein may be involved in the control of cytoskeletal organization. |
| NA | ENSG00000196511 | TPK1 | thiamin pyrophosphokinase 1 | 27010 | This gene encodes a protein, that exists as a homodimer, which catalyzes the conversion of thiamine to thiamine pyrophosphate. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000055130 | CUL1 | cullin 1 | 8454 | NA |
| NA | ENSG00000155660 | PDIA4 | protein disulfide isomerase family A member 4 | 9601 | NA |
| NA | ENSG00000197362 | ZNF786 | zinc finger protein 786 | 136051 | NA |
| NA | ENSG00000204947 | ZNF425 | zinc finger protein 425 | 155054 | NA |
| NA | ENSG00000197024 | ZNF398 | zinc finger protein 398 | 57541 | This gene encodes a member of the Kruppel family of C2H2-type zinc-finger transcription factor proteins. The encoded protein acts as a transcriptional activator. Two transcript variants encoding distinct isoforms have been identified for this gene. Other transcript variants have been described, but their full length sequence has not been determined. |
| NA | ENSG00000170265 | ZNF282 | zinc finger protein 282 | 8427 | NA |
| NA | ENSG00000170260 | ZNF212 | zinc finger protein 212 | 7988 | This gene belongs to the C2H2-type zinc finger gene family. The zinc finger proteins are involved in gene regulation and development, and are quite conserved throughout evolution. Like this gene product, a third of the zinc finger proteins containing C2H2 fingers also contain the KRAB domain, which has been found to be involved in protein-protein interactions. |
| NA | ENSG00000204946 | ZNF783 | zinc finger family member 783 | 100289678 | NA |
| NA | ENSG00000196453 | ZNF777 | zinc finger protein 777 | 27153 | NA |
| NA | ENSG00000181220 | ZNF746 | zinc finger protein 746 | 155061 | NA |
| NA | ENSG00000133619 | KRBA1 | KRAB-A domain containing 1 | 84626 | NA |
| NA | ENSG00000106479 | ZNF862 | zinc finger protein 862 | 643641 | NA |
| NA | ENSG00000171130 | ATP6V0E2 | ATPase H+ transporting V0 subunit e2 | 155066 | Multisubunit vacuolar-type proton pumps, or H(+)-ATPases, acidify various intracellular compartments, such as vacuoles, clathrin-coated and synaptic vesicles, endosomes, lysosomes, and chromaffin granules. H(+)-ATPases are also found in plasma membranes of specialized cells, where they play roles in urinary acidification, bone resorption, and sperm maturation. Multiple subunits form H(+)-ATPases, with proteins of the V1 class hydrolyzing ATP for energy to transport H+, and proteins of the V0 class forming an integral membrane domain through which H+ is transported. ATP6V0E2 encodes an isoform of the H(+)-ATPase V0 e subunit, an essential proton pump component (Blake-Palmer et al., 2007 [PubMed 17350184]). |
| NA | ENSG00000106538 | RARRES2 | retinoic acid receptor responder 2 | 5919 | This gene encodes a secreted chemotactic protein that initiates chemotaxis via the ChemR23 G protein-coupled seven-transmembrane domain ligand. Expression of this gene is upregulated by the synthetic retinoid tazarotene and occurs in a wide variety of tissues. The active protein has several roles, including that as an adipokine and as an antimicrobial protein with activity against bacteria and fungi. |
| NA | ENSG00000214022 | REPIN1 | replication initiator 1 | 29803 | NA |
| NA | ENSG00000196456 | ZNF775 | zinc finger protein 775 | 285971 | NA |
| NA | ENSG00000055118 | KCNH2 | potassium voltage-gated channel subfamily H member 2 | 3757 | This gene encodes a voltage-activated potassium channel belonging to the eag family. It shares sequence similarity with the Drosophila ether-a-go-go (eag) gene. Mutations in this gene can cause long QT syndrome type 2 (LQT2). Transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000164867 | NOS3 | nitric oxide synthase 3 | 4846 | Nitric oxide is a reactive free radical which acts as a biologic mediator in several processes, including neurotransmission and antimicrobial and antitumoral activities. Nitric oxide is synthesized from L-arginine by nitric oxide synthases. Variations in this gene are associated with susceptibility to coronary spasm. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197150 | ABCB8 | ATP binding cassette subfamily B member 8 | 11194 | This nuclear gene encodes a multi-pass membrane protein that is targeted to the mitochondrial inner membrane. The encoded protein is an ATP-dependent transporter that may mediate the passage of organic and inorganic molecules out of the mitochondria. Loss of function of the related gene in mouse results in a disruption of iron homeostasis between the mitochondria and cytosol. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164885 | CDK5 | cyclin-dependent kinase 5 | 1020 | This gene encodes a proline-directed serine/threonine kinase that is a member of the cyclin-dependent kinase family of proteins. Unlike other members of the family, the protein encoded by this gene does not directly control cell cycle regulation. Instead the protein, which is predominantly expressed at high levels in mammalian postmitotic central nervous system neurons, functions in diverse processes such as synaptic plasticity and neuronal migration through phosphorylation of proteins required for cytoskeletal organization, endocytosis and exocytosis, and apoptosis. In humans, an allelic variant of the gene that results in undetectable levels of the protein has been associated with lethal autosomal recessive lissencephaly-7. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000164889 | SLC4A2 | solute carrier family 4 member 2 | 6522 | NA |
| NA | ENSG00000164896 | FASTK | Fas activated serine/threonine kinase | 10922 | The protein encoded by this gene is a member of the serine/threonine protein kinase family. This kinase was shown to be activated rapidly during Fas-mediated apoptosis in Jurkat cells. In response to Fas receptor ligation, it phosphorylates TIA1, an apoptosis-promoting nuclear RNA-binding protein. The encoded protein is a strong inducer of lymphocyte apoptosis. Two transcript variants encoding different isoforms have been found for this gene. Other variants exist, but their full-length natures have not yet been determined. |
| NA | ENSG00000164897 | TMUB1 | transmembrane and ubiquitin like domain containing 1 | 83590 | NA |
| NA | ENSG00000133612 | AGAP3 | ArfGAP with GTPase domain, ankyrin repeat and PH domain 3 | 116988 | NA |
| NA | ENSG00000033050 | ABCF2 | ATP binding cassette subfamily F member 2 | 10061 | This gene encodes a member of the ATP-binding cassette (ABC) transporter superfamily. ATP-binding casette proteins transport various molecules across extra- and intracellular membranes. Alterations in this gene may be involved in cancer progression. Alternative splicing results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 3 and 7. |
| NA | ENSG00000033100 | CHPF2 | chondroitin polymerizing factor 2 | 54480 | NA |
| NA | ENSG00000013374 | NUB1 | negative regulator of ubiquitin-like proteins 1 | 51667 | This gene encodes a protein that functions as a negative regulator of NEDD8, a ubiquitin-like protein that conjugates with cullin family members in order to regulate vital biological events. The protein encoded by this gene regulates the NEDD8 conjugation system post-transcriptionally by recruiting NEDD8 and its conjugates to the proteasome for degradation. This protein interacts with the product of the AIPL1 gene, which is associated with Leber congenital amaurosis, an inherited retinopathy, and mutations in that gene can abolish interaction with this protein, which may contribute to the pathogenesis. This protein is also known to accumulate in Lewy bodies in Parkinson’s disease and dementia with Lewy bodies, and in glial cytoplasmic inclusions in multiple system atrophy, with this abnormal accumulation being specific to alpha-synucleinopathy lesions. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000106615 | RHEB | Ras homolog enriched in brain | 6009 | This gene is a member of the small GTPase superfamily and encodes a lipid-anchored, cell membrane protein with five repeats of the RAS-related GTP-binding region. This protein is vital in regulation of growth and cell cycle progression due to its role in the insulin/TOR/S6K signaling pathway. The protein has GTPase activity and shuttles between a GDP-bound form and a GTP-bound form, and farnesylation of the protein is required for this activity. Three pseudogenes have been mapped, two on chromosome 10 and one on chromosome 22. |
| NA | ENSG00000106617 | PRKAG2 | protein kinase AMP-activated non-catalytic subunit gamma 2 | 51422 | AMP-activated protein kinase (AMPK) is a heterotrimeric protein composed of a catalytic alpha subunit, a noncatalytic beta subunit, and a noncatalytic regulatory gamma subunit. Various forms of each of these subunits exist, encoded by different genes. AMPK is an important energy-sensing enzyme that monitors cellular energy status and functions by inactivating key enzymes involved in regulating de novo biosynthesis of fatty acid and cholesterol. This gene is a member of the AMPK gamma subunit family. Mutations in this gene have been associated with Wolff-Parkinson-White syndrome, familial hypertrophic cardiomyopathy, and glycogen storage disease of the heart. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000178234 | GALNT11 | polypeptide N-acetylgalactosaminyltransferase 11 | 63917 | NA |
| NA | ENSG00000055609 | KMT2C | lysine methyltransferase 2C | 58508 | This gene is a member of the myeloid/lymphoid or mixed-lineage leukemia (MLL) family and encodes a nuclear protein with an AT hook DNA-binding domain, a DHHC-type zinc finger, six PHD-type zinc fingers, a SET domain, a post-SET domain and a RING-type zinc finger. This protein is a member of the ASC-2/NCOA6 complex (ASCOM), which possesses histone methylation activity and is involved in transcriptional coactivation. |
| NA | ENSG00000196584 | XRCC2 | X-ray repair complementing defective repair in Chinese hamster cells 2 | 7516 | This gene encodes a member of the RecA/Rad51-related protein family that participates in homologous recombination to maintain chromosome stability and repair DNA damage. This gene is involved in the repair of DNA double-strand breaks by homologous recombination and it functionally complements Chinese hamster irs1, a repair-deficient mutant that exhibits hypersensitivity to a number of different DNA-damaging agents. |
| NA | ENSG00000133627 | ACTR3B | ARP3 actin-related protein 3 homolog B (yeast) | 57180 | This gene encodes a member of the actin-related proteins (ARP), which form multiprotein complexes and share 35-55% amino acid identity with conventional actin. The protein encoded by this gene may have a regulatory role in the actin cytoskeleton and induce cell-shape change and motility. Pseudogenes of this gene are located on chromosomes 2, 4, 10, 16, 22 and Y. Alternative splicing results in multiple transcript variants and protein isoforms. |
| NA | ENSG00000157212 | PAXIP1 | PAX interacting protein 1 | 22976 | This gene is a member of the paired box (PAX) gene family and encodes a nuclear protein with six BRCT (breast cancer carboxy-terminal) domains. This protein plays a critical role in maintaining genome stability, condensation of chromatin and progression through mitosis. |
| NA | ENSG00000186480 | INSIG1 | insulin induced gene 1 | 3638 | Oxysterols regulate cholesterol homeostasis through the liver X receptor (LXR)- and sterol regulatory element-binding protein (SREBP)-mediated signaling pathways. This gene is an insulin-induced gene. It encodes an endoplasmic reticulum (ER) membrane protein that plays a critical role in regulating cholesterol concentrations in cells. This protein binds to the sterol-sensing domains of SREBP cleavage-activating protein (SCAP) and HMG CoA reductase, and is essential for the sterol-mediated trafficking of the two proteins. Alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000216895 | AC009403.2 | NA | ENSG00000216895 | NA |
| NA | ENSG00000184863 | RBM33 | RNA binding motif protein 33 | 155435 | NA |
| TRUE | ENSG00000244291 | NA | NA | NA | NA |
| NA | ENSG00000105982 | RNF32 | ring finger protein 32 | 140545 | The protein encoded by this gene contains two RING ring finger motifs. RING finger motifs are present in a variety of functionally distinct proteins and are known to be involved in protein-DNA or protein-protein interactions. This gene was found to be expressed during spermatogenesis, most likely in spermatocytes and/or in spermatids. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000105983 | LMBR1 | limb development membrane protein 1 | 64327 | This gene encodes a member of the LMBR1-like membrane protein family. Another member of this protein family has been shown to be a lipocalin transmembrane receptor. A highly conserved, cis-acting regulatory module for the sonic hedgehog gene is located within an intron of this gene. Consequently, disruption of this genic region can alter sonic hedgehog expression and affect limb patterning, but it is not known if this gene functions directly in limb development. Mutations and chromosomal deletions and rearrangements in this genic region are associated with acheiropody and preaxial polydactyly, which likely result from altered sonic hedgehog expression. |
| NA | ENSG00000146909 | NOM1 | nucleolar protein with MIF4G domain 1 | 64434 | Proteins that contain MIF4G (middle of eIF4G (MIM 600495)) and/or MA3 domains, such as NOM1, function in protein translation. These domains include binding sites for members of the EIF4A family of ATP-dependent DEAD box RNA helicases (see EIF4A1; MIM 602641) (Simmons et al., 2005 [PubMed 15715967]). |
| NA | ENSG00000009335 | UBE3C | ubiquitin protein ligase E3C | 9690 | NA |
| NA | ENSG00000105993 | DNAJB6 | DnaJ heat shock protein family (Hsp40) member B6 | 10049 | This gene encodes a member of the DNAJ protein family. DNAJ family members are characterized by a highly conserved amino acid stretch called the ‘J-domain’ and function as one of the two major classes of molecular chaperones involved in a wide range of cellular events, such as protein folding and oligomeric protein complex assembly. This family member may also play a role in polyglutamine aggregation in specific neurons. Alternative splicing of this gene results in multiple transcript variants; however, not all variants have been fully described. |
| NA | ENSG00000155093 | PTPRN2 | protein tyrosine phosphatase, receptor type N2 | 5799 | This gene encodes a protein with sequence similarity to receptor-like protein tyrosine phosphatases. However, tyrosine phosphatase activity has not been experimentally validated for this protein. Studies of the rat ortholog suggest that the encoded protein may instead function as a phosphatidylinositol phosphatase with the ability to dephosphorylate phosphatidylinositol 3-phosphate and phosphatidylinositol 4,5-diphosphate, and this function may be involved in the regulation of insulin secretion. This protein has been identified as an autoantigen in insulin-dependent diabetes mellitus. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000146918 | NCAPG2 | non-SMC condensin II complex subunit G2 | 54892 | This gene encodes a protein that belongs to the Condensin2nSMC family of proteins. The encoded protein is a regulatory subunit of the condensin II complex which, along with the condensin I complex, plays a role in chromosome assembly and segregation during mitosis. A similar protein in mouse is required for early development of the embryo. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000117868 | ESYT2 | extended synaptotagmin protein 2 | 57488 | NA |
| NA | ENSG00000126870 | WDR60 | WD repeat domain 60 | 55112 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD) and may facilitate the formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes including cell cycle progression, signal transduction, apoptosis, and gene regulation. The encoded protein contains four WD repeats and may play a role in the formation of cilia. Mutations in this gene have been associated with short-rib polydactyly and Jeune syndromes. |
| NA | ENSG00000106018 | VIPR2 | vasoactive intestinal peptide receptor 2 | 7434 | This gene encodes a receptor for vasoactive intestinal peptide, a small neuropeptide. Vasoactive intestinal peptide is involved in smooth muscle relaxation, exocrine and endocrine secretion, and water and ion flux in lung and intestinal epithelia. Its actions are effected through integral membrane receptors associated with a guanine nucleotide binding protein which activates adenylate cyclase. |
| NA | ENSG00000172748 | ZNF596 | zinc finger protein 596 | 169270 | NA |
| NA | ENSG00000147364 | FBXO25 | F-box protein 25 | 26260 | This gene encodes a member of the F-box protein family which is characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into 3 classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene belongs to the Fbxs class. Three alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000180190 | TDRP | testis development related protein | 157695 | NA |
| NA | ENSG00000182372 | CLN8 | ceroid-lipofuscinosis, neuronal 8 | 2055 | This gene encodes a transmembrane protein belonging to a family of proteins containing TLC domains, which are postulated to function in lipid synthesis, transport, or sensing. The protein localizes to the endoplasmic reticulum (ER), and may recycle between the ER and ER-Golgi intermediate compartment. Mutations in this gene are associated with progressive epilepsy with mental retardation (EMPR), which is a subtype of neuronal ceroid lipofuscinoses (NCL). Patients with mutations in this gene have altered levels of sphingolipid and phospholipids in the brain. |
| NA | ENSG00000104728 | ARHGEF10 | Rho guanine nucleotide exchange factor 10 | 9639 | This gene encodes a Rho guanine nucleotide exchange factor (GEF). Rho GEFs regulate the activity of small Rho GTPases by stimulating the exchange of guanine diphosphate (GDP) for guanine triphosphate (GTP) and may play a role in neural morphogenesis. Mutations in this gene are associated with slowed nerve conduction velocity (SNCV). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000176595 | KBTBD11 | kelch repeat and BTB domain containing 11 | 9920 | NA |
| NA | ENSG00000147316 | MCPH1 | microcephalin 1 | 79648 | This gene encodes a DNA damage response protein. The encoded protein may play a role in G2/M checkpoint arrest via maintenance of inhibitory phosphorylation of cyclin-dependent kinase 1. Mutations in this gene have been associated with primary autosomal recessive microcephaly 1 and premature chromosome condensation syndrome. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000155189 | AGPAT5 | 1-acylglycerol-3-phosphate O-acyltransferase 5 | 55326 | This gene encodes a member of the 1-acylglycerol-3-phosphate O-acyltransferase family. This integral membrane protein converts lysophosphatidic acid to phosphatidic acid, the second step in de novo phospholipid biosynthesis. A pseudogene of this gene is present on the Y chromosome. |
| TRUE | ENSG00000182319 | NA | NA | NA | NA |
| NA | ENSG00000147324 | MFHAS1 | malignant fibrous histiocytoma amplified sequence 1 | 9258 | Identified in a human 8p amplicon, this gene is a potential oncogene whose expression is enhanced in some malignant fibrous histiocytomas (MFH). The primary structure of its product includes an ATP/GTP-binding site, three leucine zipper domains, and a leucine-rich tandem repeat, which are structural or functional elements for interactions among proteins related to the cell cycle, and which suggest that overexpression might be oncogenic with respect to MFH. |
| NA | ENSG00000104626 | ERI1 | exoribonuclease 1 | 90459 | NA |
| NA | ENSG00000173281 | PPP1R3B | protein phosphatase 1 regulatory subunit 3B | 79660 | This gene encodes the catalytic subunit of the serine/theonine phosphatase, protein phosphatase-1. The encoded protein is expressed in liver and skeletal muscle tissue and may be involved in regulating glycogen synthesis in these tissues. This gene may be a involved in type 2 diabetes and maturity-onset diabetes of the young. Alternate splicing results in multiple transcript variants that encode the same protein. |
| NA | ENSG00000173273 | TNKS | tankyrase | 8658 | NA |
| NA | ENSG00000175806 | MSRA | methionine sulfoxide reductase A | 4482 | This gene encodes a ubiquitous and highly conserved protein that carries out the enzymatic reduction of methionine sulfoxide to methionine. Human and animal studies have shown the highest levels of expression in kidney and nervous tissue. The protein functions in the repair of oxidatively damaged proteins to restore biological activity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000254093 | PINX1 | PIN2/TERF1 interacting, telomerase inhibitor 1 | 54984 | NA |
| NA | ENSG00000171044 | XKR6 | XK related 6 | 286046 | NA |
| TRUE | ENSG00000215346 | NA | NA | NA | NA |
| NA | ENSG00000104643 | MTMR9 | myotubularin related protein 9 | 66036 | This gene encodes a myotubularin-related protein that is atypical to most other members of the myotubularin-related protein family because it has no dual-specificity phosphatase domain. The encoded protein contains a double-helical motif similar to the SET interaction domain, which is thought to have a role in the control of cell proliferation. In mouse, a protein similar to the encoded protein binds with MTMR7, and together they dephosphorylate phosphatidylinositol 3-phosphate and inositol 1,3-bisphosphate. |
| NA | ENSG00000154328 | NEIL2 | nei like DNA glycosylase 2 | 252969 | NEIL2 belongs to a class of DNA glycosylases homologous to the bacterial Fpg/Nei family. These glycosylases initiate the first step in base excision repair by cleaving bases damaged by reactive oxygen species and introducing a DNA strand break via the associated lyase reaction (Bandaru et al., 2002 [PubMed 12509226]) |
| NA | ENSG00000079459 | FDFT1 | farnesyl-diphosphate farnesyltransferase 1 | 2222 | This gene encodes a membrane-associated enzyme located at a branch point in the mevalonate pathway. The encoded protein is the first specific enzyme in cholesterol biosynthesis, catalyzing the dimerization of two molecules of farnesyl diphosphate in a two-step reaction to form squalene. |
| NA | ENSG00000164733 | CTSB | cathepsin B | 1508 | This gene encodes a member of the C1 family of peptidases. Alternative splicing of this gene results in multiple transcript variants. At least one of these variants encodes a preproprotein that is proteolytically processed to generate multiple protein products. These products include the cathepsin B light and heavy chains, which can dimerize to form the double chain form of the enzyme. This enzyme is a lysosomal cysteine protease with both endopeptidase and exopeptidase activity that may play a role in protein turnover. It is also known as amyloid precursor protein secretase and is involved in the proteolytic processing of amyloid precursor protein (APP). Incomplete proteolytic processing of APP has been suggested to be a causative factor in Alzheimer’s disease, the most common cause of dementia. Overexpression of the encoded protein has been associated with esophageal adenocarcinoma and other tumors. Multiple pseudogenes of this gene have been identified. |
| NA | ENSG00000186523 | FAM86B1 | family with sequence similarity 86 member B1 | 85002 | NA |
| NA | ENSG00000186523 | FAM86B2 | family with sequence similarity 86 member B2 | 653333 | NA |
| NA | ENSG00000186523 | FAM86KP | family with sequence similarity 86 member K, pseudogene | 100287013 | NA |
| NA | ENSG00000154359 | LONRF1 | LON peptidase N-terminal domain and ring finger 1 | 91694 | NA |
| NA | ENSG00000164741 | DLC1 | DLC1 Rho GTPase activating protein | 10395 | This gene encodes a GTPase-activating protein (GAP) that is a member of the rhoGAP family of proteins which play a role in the regulation of small GTP-binding proteins. GAP family proteins participate in signaling pathways that regulate cell processes involved in cytoskeletal changes. This gene functions as a tumor suppressor gene in a number of common cancers, including prostate, lung, colorectal, and breast cancers. Multiple transcript variants due to alternative promoters and alternative splicing have been found for this gene. |
| NA | ENSG00000164743 | C8orf48 | chromosome 8 open reading frame 48 | 157773 | NA |
| NA | ENSG00000155970 | MICU3 | mitochondrial calcium uptake family member 3 | 286097 | NA |
| NA | ENSG00000104219 | ZDHHC2 | zinc finger DHHC-type containing 2 | 51201 | NA |
| NA | ENSG00000198791 | CNOT7 | CCR4-NOT transcription complex subunit 7 | 29883 | The protein encoded by this gene binds to an anti-proliferative protein, B-cell translocation protein 1, which negatively regulates cell proliferation. Binding of the two proteins, which is driven by phosphorylation of the anti-proliferative protein, causes signaling events in cell division that lead to changes in cell proliferation associated with cell-cell contact. The encoded protein downregulates the innate immune response and therefore provides a therapeutic target for enhancing its antimicrobial activity against foreign agents. Alternate splicing of this gene results in two transcript variants encoding different isoforms. |
| NA | ENSG00000155975 | VPS37A | VPS37A, ESCRT-I subunit | 137492 | This gene belongs to the VPS37 family, and encodes a component of the ESCRT-I (endosomal sorting complex required for transport I) protein complex, required for the sorting of ubiquitinated transmembrane proteins into internal vesicles of multivesicular bodies. Expression of this gene is downregulated in hepatocellular carcinoma, and mutations in this gene are associated with autosomal recessive spastic paraplegia-53. A related pseudogene has been identified on chromosome 5. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000003987 | MTMR7 | myotubularin related protein 7 | 9108 | This gene encodes a member of the myotubularin family of tyrosine/dual-specificity phosphatases. The encoded protein is characterized by four distinct domains that are conserved among all members of the myotubularin family: the glucosyltransferase, Rab-like GTPase activator and myotubularins domain, the Rac-induced recruitment domain, the protein tyrosine phosphatases and dual-specificity phosphatases domain and the suppressor of variegation 3-9, enhancer-of-zeste, and trithorax interaction domain. This protein dephosphorylates the target substrates phosphatidylinositol 3-phosphate and inositol 1,3-bisphosphate. A pseudogene of this gene is found on chromosome 5. |
| NA | ENSG00000003989 | SLC7A2 | solute carrier family 7 member 2 | 6542 | The protein encoded by this gene is a cationic amino acid transporter and a member of the APC (amino acid-polyamine-organocation) family of transporters. The encoded membrane protein is responsible for the cellular uptake of arginine, lysine and ornithine. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000104213 | PDGFRL | platelet derived growth factor receptor like | 5157 | This gene encodes a protein with significant sequence similarity to the ligand binding domain of platelet-derived growth factor receptor beta. Mutations in this gene, or deletion of a chromosomal segment containing this gene, are associated with sporadic hepatocellular carcinomas, colorectal cancers, and non-small cell lung cancers. This suggests this gene product may function as a tumor suppressor. |
| NA | ENSG00000129422 | MTUS1 | microtubule associated tumor suppressor 1 | 57509 | This gene encodes a protein which contains a C-terminal domain able to interact with the angiotension II (AT2) receptor and a large coiled-coil region allowing dimerization. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. One of the transcript variants has been shown to encode a mitochondrial protein that acts as a tumor suppressor and partcipates in AT2 signaling pathways. Other variants may encode nuclear or transmembrane proteins but it has not been determined whether they also participate in AT2 signaling pathways. |
| NA | ENSG00000078674 | PCM1 | pericentriolar material 1 | 5108 | The protein encoded by this gene is a component of centriolar satellites, which are electron dense granules scattered around centrosomes. Inhibition studies show that this protein is essential for the correct localization of several centrosomal proteins, and for anchoring microtubules to the centrosome. Chromosomal aberrations involving this gene are associated with papillary thyroid carcinomas and a variety of hematological malignancies, including atypical chronic myeloid leukemia and T-cell lymphoma. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000104763 | ASAH1 | N-acylsphingosine amidohydrolase (acid ceramidase) 1 | 427 | This gene encodes a member of the acid ceramidase family of proteins. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed. Processing of this preproprotein generates alpha and beta subunits that heterodimerize to form the mature lysosomal enzyme, which catalyzes the degradation of ceramide into sphingosine and free fatty acid. This enzyme is overexpressed in multiple human cancers and may play a role in cancer progression. Mutations in this gene are associated with the lysosomal storage disorder, Farber lipogranulomatosis, and a neuromuscular disorder, spinal muscular atrophy with progressive myoclonic epilepsy. |
| NA | ENSG00000171428 | NAT1 | N-acetyltransferase 1 (arylamine N-acetyltransferase) | 9 | This gene is one of two arylamine N-acetyltransferase (NAT) genes in the human genome, and is orthologous to the mouse and rat Nat2 genes. The enzyme encoded by this gene catalyzes the transfer of an acetyl group from acetyl-CoA to various arylamine and hydrazine substrates. This enzyme helps metabolize drugs and other xenobiotics, and functions in folate catabolism. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000156011 | PSD3 | pleckstrin and Sec7 domain containing 3 | 23362 | NA |
| NA | ENSG00000104611 | SH2D4A | SH2 domain containing 4A | 63898 | NA |
| NA | ENSG00000175445 | LPL | lipoprotein lipase | 4023 | LPL encodes lipoprotein lipase, which is expressed in heart, muscle, and adipose tissue. LPL functions as a homodimer, and has the dual functions of triglyceride hydrolase and ligand/bridging factor for receptor-mediated lipoprotein uptake. Severe mutations that cause LPL deficiency result in type I hyperlipoproteinemia, while less extreme mutations in LPL are linked to many disorders of lipoprotein metabolism. |
| NA | ENSG00000147416 | ATP6V1B2 | ATPase H+ transporting V1 subunit B2 | 526 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A, three B, and two G subunits, as well as a C, D, E, F, and H subunit. The V1 domain contains the ATP catalytic site. The protein encoded by this gene is one of two V1 domain B subunit isoforms and is the only B isoform highly expressed in osteoclasts. |
| NA | ENSG00000061337 | LZTS1 | leucine zipper, putative tumor suppressor 1 | 11178 | This gene encodes a tumor suppressor protein that is ubiquitously expressed in normal tissues. In uveal melanomas, expression of this protein is silenced in rapidly metastasizing and metastatic tumor cells but has normal expression in slowly metastasizing or nonmetastasizing tumor cells. This protein may have a role in cell-cycle control by interacting with the Cdk1/cyclinB1 complex. This gene is located on chromosomal region 8p22. Loss of heterozygosity (LOH) in the 8p arm is a common characteristic of many types of cancer. |
| NA | ENSG00000168546 | GFRA2 | GDNF family receptor alpha 2 | 2675 | Glial cell line-derived neurotrophic factor (GDNF) and neurturin (NTN) are two structurally related, potent neurotrophic factors that play key roles in the control of neuron survival and differentiation. The protein encoded by this gene is a member of the GDNF receptor family. It is a glycosylphosphatidylinositol(GPI)-linked cell surface receptor for both GDNF and NTN, and mediates activation of the RET tyrosine kinase receptor. This encoded protein acts preferentially as a receptor for NTN compared to its other family member, GDNF family receptor alpha 1. This gene is a candidate gene for RET-associated diseases. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130227 | XPO7 | exportin 7 | 23039 | The transport of protein and large RNAs through the nuclear pore complexes (NPC) is an energy-dependent and regulated process. The import of proteins with a nuclear localization signal (NLS) is accomplished by recognition of one or more clusters of basic amino acids by the importin-alpha/beta complex; see MIM 600685 and MIM 602738. The small GTPase RAN (MIM 601179) plays a key role in NLS-dependent protein import. RAN-binding protein-16 is a member of the importin-beta superfamily of nuclear transport receptors. |
| NA | ENSG00000158863 | FAM160B2 | family with sequence similarity 160 member B2 | 64760 | NA |
| NA | ENSG00000168476 | REEP4 | receptor accessory protein 4 | 80346 | NA |
| NA | ENSG00000168495 | POLR3D | polymerase (RNA) III subunit D | 661 | This gene complements a temperature-sensitive mutant isolated from the BHK-21 Syrian hamster cell line. It leads to a block in progression through the G1 phase of the cell cycle at nonpermissive temperatures. |
| NA | ENSG00000104635 | SLC39A14 | solute carrier family 39 member 14 | 23516 | Zinc is an essential cofactor for hundreds of enzymes. It is involved in protein, nucleic acid, carbohydrate, and lipid metabolism, as well as in the control of gene transcription, growth, development, and differentiation. SLC39A14 belongs to a subfamily of proteins that show structural characteristics of zinc transporters (Taylor and Nicholson, 2003 [PubMed 12659941]). |
| NA | ENSG00000120896 | SORBS3 | sorbin and SH3 domain containing 3 | 10174 | This gene encodes an SH3 domain-containing adaptor protein. The presence of SH3 domains play a role in this protein’s ability to bind other cytoplasmic molecules and contribute to cystoskeletal organization, cell adhesion and migration, signaling, and gene expression. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000120913 | PDLIM2 | PDZ and LIM domain 2 | 64236 | This gene encodes a member of the ALP subfamily of PDZ-LIM domain proteins. The encoded protein suppresses anchorage-dependent growth and promotes cell migration and adhesion through interactions with the actin cytoskeleton via the PDZ domain. The encoded protein is also a putative tumor suppressor protein, and decreased expression of this gene is associated with several malignancies including breast cancer and adult T-cell leukemia. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000241852 | C8orf58 | chromosome 8 open reading frame 58 | 541565 | NA |
| NA | ENSG00000158941 | CCAR2 | cell cycle and apoptosis regulator 2 | 57805 | NA |
| NA | ENSG00000147439 | BIN3 | bridging integrator 3 | 55909 | The product of this gene is a member of the BAR domain protein family. The encoded protein is comprised solely of a BAR domain which is predicted to form coiled-coil structures and proposed to mediate dimerization, sense and induce membrane curvature, and bind small GTPases. BAR domain proteins have been implicated in endocytosis, intracellular transport, and a diverse set of other processes. |
| NA | ENSG00000008853 | RHOBTB2 | Rho related BTB domain containing 2 | 23221 | The protein encoded by this gene is a small Rho GTPase and a candidate tumor suppressor. The encoded protein interacts with the cullin-3 protein, a ubiquitin E3 ligase necessary for mitotic cell division. This protein inhibits the growth and spread of some types of breast cancer. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000173530 | TNFRSF10D | tumor necrosis factor receptor superfamily member 10d | 8793 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This receptor contains an extracellular TRAIL-binding domain, a transmembrane domain, and a truncated cytoplamic death domain. This receptor does not induce apoptosis, and has been shown to play an inhibitory role in TRAIL-induced cell apoptosis. |
| NA | ENSG00000104689 | TNFRSF10A | tumor necrosis factor receptor superfamily member 10a | 8797 | The protein encoded by this gene is a member of the TNF-receptor superfamily. This receptor is activated by tumor necrosis factor-related apoptosis inducing ligand (TNFSF10/TRAIL), and thus transduces cell death signal and induces cell apoptosis. Studies with FADD-deficient mice suggested that FADD, a death domain containing adaptor protein, is required for the apoptosis mediated by this protein. |
| NA | ENSG00000147457 | CHMP7 | charged multivesicular body protein 7 | 91782 | NA |
| NA | ENSG00000104679 | R3HCC1 | R3H domain and coiled-coil containing 1 | 203069 | NA |
| NA | ENSG00000134013 | LOXL2 | lysyl oxidase like 2 | 4017 | This gene encodes a member of the lysyl oxidase gene family. The prototypic member of the family is essential to the biogenesis of connective tissue, encoding an extracellular copper-dependent amine oxidase that catalyses the first step in the formation of crosslinks in collagens and elastin. A highly conserved amino acid sequence at the C-terminus end appears to be sufficient for amine oxidase activity, suggesting that each family member may retain this function. The N-terminus is poorly conserved and may impart additional roles in developmental regulation, senescence, tumor suppression, cell growth control, and chemotaxis to each member of the family. |
| NA | ENSG00000197217 | ENTPD4 | ectonucleoside triphosphate diphosphohydrolase 4 | 9583 | This gene encodes a member of the apyrase protein family. Apyrases are enzymes that catalyze the hydrolysis of nucleotide diphosphates and triphosphates in a calcium or magnesium-dependent manner. The encoded protein is an endo-apyrase and may play a role in salvaging nucleotides from lysosomes. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and these isoforms may differ in divalent cation dependence and substrate specificity. |
| NA | ENSG00000147454 | SLC25A37 | solute carrier family 25 member 37 | 51312 | SLC25A37 is a solute carrier localized in the mitochondrial inner membrane. It functions as an essential iron importer for the synthesis of mitochondrial heme and iron-sulfur clusters (summary by Chen et al., 2009 [PubMed 19805291]). |
| NA | ENSG00000104722 | NEFM | neurofilament, medium polypeptide | 4741 | Neurofilaments are type IV intermediate filament heteropolymers composed of light, medium, and heavy chains. Neurofilaments comprise the axoskeleton and functionally maintain neuronal caliber. They may also play a role in intracellular transport to axons and dendrites. This gene encodes the medium neurofilament protein. This protein is commonly used as a biomarker of neuronal damage. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000147459 | DOCK5 | dedicator of cytokinesis 5 | 80005 | NA |
| NA | ENSG00000104756 | KCTD9 | potassium channel tetramerization domain containing 9 | 54793 | NA |
| NA | ENSG00000221914 | PPP2R2A | protein phosphatase 2 regulatory subunit B, alpha | 5520 | The product of this gene belongs to the phosphatase 2 regulatory subunit B family. Protein phosphatase 2 is one of the four major Ser/Thr phosphatases, and it is implicated in the negative control of cell growth and division. It consists of a common heteromeric core enzyme, which is composed of a catalytic subunit and a constant regulatory subunit, that associates with a variety of regulatory subunits. The B regulatory subunit might modulate substrate selectivity and catalytic activity. This gene encodes an alpha isoform of the regulatory subunit B55 subfamily. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000240694 | PNMA2 | paraneoplastic Ma antigen 2 | 10687 | NA |
| NA | ENSG00000104228 | TRIM35 | tripartite motif containing 35 | 23087 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The function of this protein has not been identified. |
| NA | ENSG00000120915 | EPHX2 | epoxide hydrolase 2 | 2053 | This gene encodes a member of the epoxide hydrolase family. The protein, found in both the cytosol and peroxisomes, binds to specific epoxides and converts them to the corresponding dihydrodiols. Mutations in this gene have been associated with familial hypercholesterolemia. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000168077 | SCARA3 | scavenger receptor class A member 3 | 51435 | This gene encodes a macrophage scavenger receptor-like protein. This protein has been shown to deplete reactive oxygen species, and thus play an important role in protecting cells from oxidative stress. The expression of this gene is induced by oxidative stress. Alternatively spliced transcript variants encoding distinct isoforms have been described. |
| NA | ENSG00000171320 | ESCO2 | establishment of sister chromatid cohesion N-acetyltransferase 2 | 157570 | This gene encodes a protein that may have acetyltransferase activity and may be required for the establishment of sister chromatid cohesion during the S phase of mitosis. Mutations in this gene have been associated with Roberts syndrome. |
| NA | ENSG00000168078 | PBK | PDZ binding kinase | 55872 | This gene encodes a serine/threonine protein kinase related to the dual specific mitogen-activated protein kinase kinase (MAPKK) family. Evidence suggests that mitotic phosphorylation is required for its catalytic activity. The encoded protein may be involved in the activation of lymphoid cells and support testicular functions, with a suggested role in the process of spermatogenesis. Overexpression of this gene has been implicated in tumorigenesis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000134014 | ELP3 | elongator acetyltransferase complex subunit 3 | 55140 | ELP3 is the catalytic subunit of the histone acetyltransferase elongator complex, which contributes to transcript elongation and also regulates the maturation of projection neurons (Creppe et al., 2009 [PubMed 19185337]). |
| NA | ENSG00000186918 | ZNF395 | zinc finger protein 395 | 55893 | NA |
| NA | ENSG00000104290 | FZD3 | frizzled class receptor 3 | 7976 | This gene is a member of the frizzled gene family. Members of this family encode seven-transmembrane domain proteins that are receptors for the wingless type MMTV integration site family of signaling proteins. Most frizzled receptors are coupled to the beta-catenin canonical signaling pathway. The function of this protein is unknown, although it may play a role in mammalian hair follicle development. Alternative splicing results in multiple transcript variants. This gene is a susceptibility locus for schizophrenia. |
| NA | ENSG00000012232 | EXTL3 | exostosin like glycosyltransferase 3 | 2137 | This gene encodes a single-pass membrane protein which functions as a glycosyltransferase. The encoded protein catalyzes the transfer of N-acetylglucosamine to glycosaminoglycan chains. This reaction is important in heparin and heparan sulfate synthesis. Alternative splicing results in the multiple transcript variants. |
| NA | ENSG00000104299 | INTS9 | integrator complex subunit 9 | 55756 | This gene encodes a subunit of the Integrator complex. This protein complex binds the C-terminal domain of RNA polymerase II and likely plays a role in small nuclear RNA processing. The encoded protein has similarities to the subunits of the cleavage and polyadenylation specificity factor complex. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000147421 | HMBOX1 | homeobox containing 1 | 79618 | NA |
| NA | ENSG00000197892 | KIF13B | kinesin family member 13B | 23303 | NA |
| NA | ENSG00000120875 | DUSP4 | dual specificity phosphatase 4 | 1846 | The protein encoded by this gene is a member of the dual specificity protein phosphatase subfamily. These phosphatases inactivate their target kinases by dephosphorylating both the phosphoserine/threonine and phosphotyrosine residues. They negatively regulate members of the mitogen-activated protein (MAP) kinase superfamily (MAPK/ERK, SAPK/JNK, p38), which are associated with cellular proliferation and differentiation. Different members of the family of dual specificity phosphatases show distinct substrate specificities for various MAP kinases, different tissue distribution and subcellular localization, and different modes of inducibility of their expression by extracellular stimuli. This gene product inactivates ERK1, ERK2 and JNK, is expressed in a variety of tissues, and is localized in the nucleus. Two alternatively spliced transcript variants, encoding distinct isoforms, have been observed for this gene. In addition, multiple polyadenylation sites have been reported. |
| NA | ENSG00000133872 | SARAF | store-operated calcium entry-associated regulatory factor | 51669 | NA |
| NA | ENSG00000157110 | RBPMS | RNA binding protein with multiple splicing | 11030 | This gene encodes a member of the RNA recognition motif family of RNA-binding proteins. The RNA recognition motif is between 80-100 amino acids in length and family members contain one to four copies of the motif. The RNA recognition motif consists of two short stretches of conserved sequence, as well as a few highly conserved hydrophobic residues. The encoded protein has a single, putative RNA recognition motif in its N-terminus. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000197265 | GTF2E2 | general transcription factor IIE subunit 2 | 2961 | NA |
| NA | ENSG00000104687 | GSR | glutathione reductase | 2936 | This gene encodes a member of the class-I pyridine nucleotide-disulfide oxidoreductase family. This enzyme is a homodimeric flavoprotein. It is a central enzyme of cellular antioxidant defense, and reduces oxidized glutathione disulfide (GSSG) to the sulfhydryl form GSH, which is an important cellular antioxidant. Rare mutations in this gene result in hereditary glutathione reductase deficiency. Multiple alternatively spliced transcript variants encoding different isoforms have been found. |
| NA | ENSG00000133863 | TEX15 | testis expressed 15 | 56154 | NA |
| NA | ENSG00000172733 | PURG | purine-rich element binding protein G | 29942 | The exact function of this gene is not known, however, its encoded product is highly similar to purine-rich element binding protein A. The latter is a DNA-binding protein which binds preferentially to the single strand of the purine-rich element termed PUR, and has been implicated in the control of both DNA replication and transcription. This gene lies in close proximity to the Werner syndrome gene, but on the opposite strand, on chromosome 8p11. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165392 | WRN | Werner syndrome RecQ like helicase | 7486 | This gene encodes a member of the RecQ subfamily and the DEAH (Asp-Glu-Ala-His) subfamily of DNA and RNA helicases. DNA helicases are involved in many aspects of DNA metabolism, including transcription, replication, recombination, and repair. This protein contains a nuclear localization signal in the C-terminus and shows a predominant nucleolar localization. It possesses an intrinsic 3’ to 5’ DNA helicase activity, and is also a 3’ to 5’ exonuclease. Based on interactions between this protein and Ku70/80 heterodimer in DNA end processing, this protein may be involved in the repair of double strand DNA breaks. Defects in this gene are the cause of Werner syndrome, an autosomal recessive disorder characterized by premature aging. |
| NA | ENSG00000157168 | NRG1 | neuregulin 1 | 3084 | The protein encoded by this gene is a membrane glycoprotein that that mediates cell-cell signaling and plays a critical role in the growth and development of multiple organ systems. An extraordinary variety of different isoforms are produced from this gene through alternative promoter usage and splicing. These isoforms are expressed in a tissue-specific manner and differ significantly in their structure, and are classified as types I, II, III, IV, V and VI. Dysregulation of this gene has been linked to diseases such as cancer, schizophrenia, and bipolar disorder (BPD). |
| NA | ENSG00000172728 | FUT10 | fucosyltransferase 10 (alpha (1,3) fucosyltransferase) | 84750 | NA |
| NA | ENSG00000129696 | TTI2 | TELO2 interacting protein 2 | 80185 | This gene encodes a regulator of the DNA damage response. The protein is a component of the Triple T complex (TTT) which also includes telomere length regulation protein and TELO2 interacting protein 1. The TTT complex is involved in cellular resistance to DNA damage stresses and may act as a regulator of phosphoinositide-3-kinase-related protein kinase (PIKK) abundance. |
| NA | ENSG00000198042 | MAK16 | MAK16 homolog | 84549 | NA |
| NA | ENSG00000133874 | RNF122 | ring finger protein 122 | 79845 | The encoded protein contains a RING finger, a motif present in a variety of functionally distinct proteins and known to be involved in protein-protein and protein-DNA interactions. The encoded protein is localized to the endoplasmic reticulum and golgi apparatus, and may be associated with cell viability. |
| NA | ENSG00000156687 | UNC5D | unc-5 netrin receptor D | 137970 | NA |
| NA | ENSG00000147475 | ERLIN2 | ER lipid raft associated 2 | 11160 | This gene encodes a member of the SPFH domain-containing family of lipid raft-associated proteins. The encoded protein is localized to lipid rafts of the endoplasmic reticulum and plays a critical role in inositol 1,4,5-trisphosphate (IP3) signaling by mediating ER-associated degradation of activated IP3 receptors. Mutations in this gene are a cause of spastic paraplegia-18 (SPG18). Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000147471 | PROSC | proline synthetase co-transcribed homolog (bacterial) | 11212 | NA |
| NA | ENSG00000104221 | BRF2 | BRF2, RNA polymerase III transcription initiation factor 50 kDa subunit | 55290 | This gene encodes one of the multiple subunits of the RNA polymerase III transcription factor complex required for transcription of genes with promoter elements upstream of the initiation site. The product of this gene, a TFIIB-like factor, is directly recruited to the TATA-box of polymerase III small nuclear RNA gene promoters through its interaction with the TATA-binding protein. |
| NA | ENSG00000156675 | RAB11FIP1 | RAB11 family interacting protein 1 (class I) | 80223 | This gene encodes one of the Rab11-family interacting proteins (Rab11-FIPs), which play a role in the Rab-11 mediated recycling of vesicles. The encoded protein may be involved in endocytic sorting, trafficking of proteins including integrin subunits and epidermal growth factor receptor (EGFR), and transport between the recycling endosome and the trans-Golgi network. Alternative splicing results in multiple transcript variants. A pseudogene is described on the X chromosome. |
| NA | ENSG00000187840 | EIF4EBP1 | eukaryotic translation initiation factor 4E binding protein 1 | 1978 | This gene encodes one member of a family of translation repressor proteins. The protein directly interacts with eukaryotic translation initiation factor 4E (eIF4E), which is a limiting component of the multisubunit complex that recruits 40S ribosomal subunits to the 5’ end of mRNAs. Interaction of this protein with eIF4E inhibits complex assembly and represses translation. This protein is phosphorylated in response to various signals including UV irradiation and insulin signaling, resulting in its dissociation from eIF4E and activation of mRNA translation. |
| NA | ENSG00000129691 | ASH2L | ash2 (absent, small, or homeotic)-like (Drosophila) | 9070 | NA |
| NA | ENSG00000147465 | STAR | steroidogenic acute regulatory protein | 6770 | The protein encoded by this gene plays a key role in the acute regulation of steroid hormone synthesis by enhancing the conversion of cholesterol into pregnenolone. This protein permits the cleavage of cholesterol into pregnenolone by mediating the transport of cholesterol from the outer mitochondrial membrane to the inner mitochondrial membrane. Mutations in this gene are a cause of congenital lipoid adrenal hyperplasia (CLAH), also called lipoid CAH. A pseudogene of this gene is located on chromosome 13. |
| NA | ENSG00000156735 | BAG4 | BCL2 associated athanogene 4 | 9530 | The protein encoded by this gene is a member of the BAG1-related protein family. BAG1 is an anti-apoptotic protein that functions through interactions with a variety of cell apoptosis and growth related proteins including BCL-2, Raf-protein kinase, steroid hormone receptors, growth factor receptors and members of the heat shock protein 70 kDa family. This protein contains a BAG domain near the C-terminus, which could bind and inhibit the chaperone activity of Hsc70/Hsp70. This protein was found to be associated with the death domain of tumor necrosis factor receptor type 1 (TNF-R1) and death receptor-3 (DR3), and thereby negatively regulates downstream cell death signaling. The regulatory role of this protein in cell death was demonstrated in epithelial cells which undergo apoptosis while integrin mediated matrix contacts are lost. Alternatively spliced transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000085788 | DDHD2 | DDHD domain containing 2 | 23259 | This gene encodes a phospholipase enzyme containing sterile-alpha-motif (SAM), WWE, and DDHD domains. This protein participates in membrane trafficking between the endoplastic reticulum and the Golgi body. Mutations in this gene can cause autosomal recessive spastic paraplegia 54. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000077782 | FGFR1 | fibroblast growth factor receptor 1 | 2260 | The protein encoded by this gene is a member of the fibroblast growth factor receptor (FGFR) family, where amino acid sequence is highly conserved between members and throughout evolution. FGFR family members differ from one another in their ligand affinities and tissue distribution. A full-length representative protein consists of an extracellular region, composed of three immunoglobulin-like domains, a single hydrophobic membrane-spanning segment and a cytoplasmic tyrosine kinase domain. The extracellular portion of the protein interacts with fibroblast growth factors, setting in motion a cascade of downstream signals, ultimately influencing mitogenesis and differentiation. This particular family member binds both acidic and basic fibroblast growth factors and is involved in limb induction. Mutations in this gene have been associated with Pfeiffer syndrome, Jackson-Weiss syndrome, Antley-Bixler syndrome, osteoglophonic dysplasia, and autosomal dominant Kallmann syndrome 2. Chromosomal aberrations involving this gene are associated with stem cell myeloproliferative disorder and stem cell leukemia lymphoma syndrome. Alternatively spliced variants which encode different protein isoforms have been described; however, not all variants have been fully characterized. |
| NA | ENSG00000147526 | TACC1 | transforming acidic coiled-coil containing protein 1 | 6867 | This locus may represent a breast cancer candidate gene. It is located close to FGFR1 on a region of chromosome 8 that is amplified in some breast cancers. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169490 | TM2D2 | TM2 domain containing 2 | 83877 | The protein encoded by this gene contains a structural module related to that of the seven transmembrane domain G protein-coupled receptor superfamily. This protein has sequence and structural similarities to the beta-amyloid binding protein (BBP), but, unlike BBP, it does not regulate a response to beta-amyloid peptide. This protein may have regulatory roles in cell death or proliferation signal cascades. This gene has multiple alternatively spliced transcript variants which encode two different isoforms. |
| NA | ENSG00000168615 | ADAM9 | ADAM metallopeptidase domain 9 | 8754 | This gene encodes a member of the ADAM (a disintegrin and metalloprotease domain) family. Members of this family are membrane-anchored proteins structurally related to snake venom disintegrins, and have been implicated in a variety of biological processes involving cell-cell and cell-matrix interactions, including fertilization, muscle development, and neurogenesis. The protein encoded by this gene interacts with SH3 domain-containing proteins, binds mitotic arrest deficient 2 beta protein, and is also involved in TPA-induced ectodomain shedding of membrane-anchored heparin-binding EGF-like growth factor. Several alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000131203 | IDO1 | indoleamine 2,3-dioxygenase 1 | 3620 | This gene encodes indoleamine 2,3-dioxygenase (IDO) - a heme enzyme that catalyzes the first and rate-limiting step in tryptophan catabolism to N-formyl-kynurenine. This enzyme acts on multiple tryptophan substrates including D-tryptophan, L-tryptophan, 5-hydroxy-tryptophan, tryptamine, and serotonin. This enzyme is thought to play a role in a variety of pathophysiological processes such as antimicrobial and antitumor defense, neuropathology, immunoregulation, and antioxidant activity. Through its expression in dendritic cells, monocytes, and macrophages this enzyme modulates T-cell behavior by its peri-cellular catabolization of the essential amino acid tryptophan. |
| NA | ENSG00000165061 | ZMAT4 | zinc finger matrin-type 4 | 79698 | NA |
| NA | ENSG00000104332 | SFRP1 | secreted frizzled-related protein 1 | 6422 | This gene encodes a member of the SFRP family that contains a cysteine-rich domain homologous to the putative Wnt-binding site of Frizzled proteins. Members of this family act as soluble modulators of Wnt signaling; epigenetic silencing of SFRP genes leads to deregulated activation of the Wnt-pathway which is associated with cancer. This gene may also be involved in determining the polarity of photoreceptor cells in the retina. |
| NA | ENSG00000147533 | GOLGA7 | golgin A7 | 51125 | NA |
| NA | ENSG00000147536 | GINS4 | GINS complex subunit 4 | 84296 | The yeast heterotetrameric GINS complex is made up of Sld5, Psf1 (GINS1; MIM 610608), Psf2 (GINS2; MIM 610609), and Psf3 (GINS3; MIM 610610). The formation of the GINS complex is essential for the initiation of DNA replication in yeast and Xenopus egg extracts (Ueno et al., 2005 [PubMed 16287864]). See GINS1 for additional information about the GINS complex. |
| NA | ENSG00000158669 | GPAT4 | glycerol-3-phosphate acyltransferase 4 | 137964 | Lysophosphatidic acid acyltransferases (EC 2.3.1.51) catalyze the conversion of lysophosphatidic acid (LPA) to phosphatidic acid (PA). LPA and PA are involved in signal transduction and lipid biosynthesis. |
| NA | ENSG00000029534 | ANK1 | ankyrin 1 | 286 | Ankyrins are a family of proteins that link the integral membrane proteins to the underlying spectrin-actin cytoskeleton and play key roles in activities such as cell motility, activation, proliferation, contact and the maintenance of specialized membrane domains. Multiple isoforms of ankyrin with different affinities for various target proteins are expressed in a tissue-specific, developmentally regulated manner. Most ankyrins are typically composed of three structural domains: an amino-terminal domain containing multiple ankyrin repeats; a central region with a highly conserved spectrin binding domain; and a carboxy-terminal regulatory domain which is the least conserved and subject to variation. Ankyrin 1, the prototype of this family, was first discovered in the erythrocytes, but since has also been found in brain and muscles. Mutations in erythrocytic ankyrin 1 have been associated in approximately half of all patients with hereditary spherocytosis. Complex patterns of alternative splicing in the regulatory domain, giving rise to different isoforms of ankyrin 1 have been described. Truncated muscle-specific isoforms of ankyrin 1 resulting from usage of an alternate promoter have also been identified. |
| NA | ENSG00000083168 | KAT6A | lysine acetyltransferase 6A | 7994 | This gene encodes a member of the MOZ, YBFR2, SAS2, TIP60 family of histone acetyltransferases. The protein is composed of a nuclear localization domain, a double C2H2 zinc finger domain that binds to acetylated histone tails, a histone acetyl-transferase domain, a glutamate/aspartate-rich region, and a serine- and methionine-rich transactivation domain. It is part of a complex that acetylates lysine-9 residues in histone 3, and in addition, it acts as a co-activator for several transcription factors. Allelic variants of this gene are associated with autosomal dominant mental retardation-32. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000070718 | AP3M2 | adaptor related protein complex 3 mu 2 subunit | 10947 | This gene encodes a subunit of the heterotetrameric adaptor-related protein comlex 3 (AP-3), which belongs to the adaptor complexes medium subunits family. The AP-3 complex plays a role in protein trafficking to lysosomes and specialized organelles. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000104368 | PLAT | plasminogen activator, tissue type | 5327 | This gene encodes tissue-type plasminogen activator, a secreted serine protease that converts the proenzyme plasminogen to plasmin, a fibrinolytic enzyme. The encoded preproprotein is proteolytically processed by plasmin or trypsin to generate heavy and light chains. These chains associate via disulfide linkages to form the heterodimeric enzyme. This enzyme plays a role in cell migration and tissue remodeling. Increased enzymatic activity causes hyperfibrinolysis, which manifests as excessive bleeding, while decreased activity leads to hypofibrinolysis, which can result in thrombosis or embolism. Alternative splicing of this gene results in multiple transcript variants, at least one of which encodes an isoform that is proteolytically processed. |
| NA | ENSG00000104365 | IKBKB | inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase beta | 3551 | The protein encoded by this gene phosphorylates the inhibitor in the inhibitor/NF-kappa-B complex, causing dissociation of the inhibitor and activation of NF-kappa-B. The encoded protein itself is found in a complex of proteins. Several transcript variants, some protein-coding and some not, have been found for this gene. |
| NA | ENSG00000070501 | POLB | polymerase (DNA) beta | 5423 | The protein encoded by this gene is a DNA polymerase involved in base excision and repair, also called gap-filling DNA synthesis. The encoded protein, acting as a monomer, is normally found in the cytoplasm, but it translocates to the nucleus upon DNA damage. Several transcript variants of this gene exist, but the full-length nature of only one has been described to date. |
| NA | ENSG00000078668 | VDAC3 | voltage dependent anion channel 3 | 7419 | This gene encodes a voltage-dependent anion channel (VDAC), and belongs to the mitochondrial porin family. VDACs are small, integral membrane proteins that traverse the outer mitochondrial membrane and conduct ATP and other small metabolites. They are known to bind several kinases of intermediary metabolism, thought to be involved in translocation of adenine nucleotides, and are hypothesized to form part of the mitochondrial permeability transition pore, which results in the release of cytochrome c at the onset of apoptotic cell death. Alternatively transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000168575 | SLC20A2 | solute carrier family 20 member 2 | 6575 | This gene encodes a member of the inorganic phosphate transporter family. The encoded protein is a type 3 sodium-dependent phosphate symporter that plays an important role in phosphate homeostasis by mediating cellular phosphate uptake. The encoded protein also confers susceptibility to viral infection as a gamma-retroviral receptor. Mutations in this gene may play a role in familial idiopathic basal ganglia calcification. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000176209 | SMIM19 | small integral membrane protein 19 | 114926 | NA |
| NA | ENSG00000120925 | RNF170 | ring finger protein 170 | 81790 | This gene encodes a RING domain-containing protein that resides in the endoplasmic reticulum (ER) membrane. This protein functions as an E3 ubiquitin ligase and mediates ubiquitination and processing of inositol 1,4,5-trisphosphate (IP3) receptors via the ER-associated protein degradation pathway. It is recruited to the activated IP3 receptors by the ERLIN1/ERLIN2 complex to which it is constitutively bound. Mutations in this gene are associated with autosomal dominant sensory ataxia. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000168172 | HOOK3 | hook microtubule-tethering protein 3 | 84376 | Hook proteins are cytosolic coiled-coil proteins that contain conserved N-terminal domains, which attach to microtubules, and more divergent C-terminal domains, which mediate binding to organelles. The Drosophila Hook protein is a component of the endocytic compartment. |
| NA | ENSG00000165102 | HGSNAT | heparan-alpha-glucosaminide N-acetyltransferase | 138050 | This gene encodes a lysosomal acetyltransferase, which is one of several enzymes involved in the lysosomal degradation of heparin sulfate. Mutations in this gene are associated with Sanfilippo syndrome C, one type of the lysosomal storage disease mucopolysaccaridosis III, which results from impaired degradation of heparan sulfate. |
| NA | ENSG00000164808 | SPIDR | scaffolding protein involved in DNA repair | 23514 | NA |
| NA | ENSG00000253729 | PRKDC | protein kinase, DNA-activated, catalytic polypeptide | 5591 | This gene encodes the catalytic subunit of the DNA-dependent protein kinase (DNA-PK). It functions with the Ku70/Ku80 heterodimer protein in DNA double strand break repair and recombination. The protein encoded is a member of the PI3/PI4-kinase family. |
| NA | ENSG00000169139 | UBE2V2 | ubiquitin conjugating enzyme E2 V2 | 7336 | Ubiquitin-conjugating enzyme E2 variant proteins constitute a distinct subfamily within the E2 protein family. They have sequence similarity to other ubiquitin-conjugating enzymes but lack the conserved cysteine residue that is critical for the catalytic activity of E2s. The protein encoded by this gene also shares homology with ubiquitin-conjugating enzyme E2 variant 1 and yeast MMS2 gene product. It may be involved in the differentiation of monocytes and enterocytes. |
| NA | ENSG00000147485 | PXDNL | peroxidasin like | 137902 | NA |
| NA | ENSG00000023287 | RB1CC1 | RB1 inducible coiled-coil 1 | 9821 | The protein encoded by this gene interacts with signaling pathways to coordinately regulate cell growth, cell proliferation, apoptosis, autophagy, and cell migration. This tumor suppressor also enhances retinoblastoma 1 gene expression in cancer cells. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000047249 | ATP6V1H | ATPase H+ transporting V1 subunit H | 51606 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of intracellular organelles. V-ATPase-dependent organelle acidification is necessary for multiple processes including protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. The encoded protein is the regulatory H subunit of the V1 domain of V-ATPase, which is required for catalysis of ATP but not the assembly of V-ATPase. Decreased expression of this gene may play a role in the development of type 2 diabetes. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000187735 | TCEA1 | transcription elongation factor A1 | 6917 | NA |
| NA | ENSG00000120992 | LYPLA1 | lysophospholipase I | 10434 | This gene encodes a member of the alpha/beta hydrolase superfamily. The encoded protein functions as a homodimer, exhibiting both depalmitoylating as well as lysophospholipase activity, and may be involved in Ras localization and signaling. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene have been defined on chromosomes 4, 6, and 7. |
| NA | ENSG00000137547 | MRPL15 | mitochondrial ribosomal protein L15 | 29088 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein that belongs to the EcoL15 ribosomal protein family. A pseudogene corresponding to this gene is found on chromosome 15q. |
| NA | ENSG00000167904 | TMEM68 | transmembrane protein 68 | 137695 | NA |
| NA | ENSG00000137574 | TGS1 | trimethylguanosine synthase 1 | 96764 | NA |
| NA | ENSG00000254087 | LYN | LYN proto-oncogene, Src family tyrosine kinase | 4067 | This gene encodes a tyrosine protein kinase, which maybe involved in the regulation of mast cell degranulation, and erythroid differentiation. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000008988 | RPS20 | ribosomal protein S20 | 6224 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 40S subunit. The protein belongs to the S10P family of ribosomal proteins. It is located in the cytoplasm. This gene is co-transcribed with the small nucleolar RNA gene U54, which is located in its second intron. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Two transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000170791 | CHCHD7 | coiled-coil-helix-coiled-coil-helix domain containing 7 | 79145 | NA |
| NA | ENSG00000104331 | IMPAD1 | inositol monophosphatase domain containing 1 | 54928 | This gene encodes a member of the inositol monophosphatase family. The encoded protein is localized to the Golgi apparatus and catalyzes the hydrolysis of phosphoadenosine phosphate (PAP) to adenosine monophosphate (AMP). Mutations in this gene are a cause of GRAPP type chondrodysplasia with joint dislocations, and a pseudogene of this gene is located on the long arm of chromosome 1. |
| NA | ENSG00000169122 | FAM110B | family with sequence similarity 110 member B | 90362 | NA |
| NA | ENSG00000215114 | UBXN2B | UBX domain protein 2B | 137886 | NA |
| NA | ENSG00000137575 | SDCBP | syndecan binding protein | 6386 | The protein encoded by this gene was initially identified as a molecule linking syndecan-mediated signaling to the cytoskeleton. The syntenin protein contains tandemly repeated PDZ domains that bind the cytoplasmic, C-terminal domains of a variety of transmembrane proteins. This protein may also affect cytoskeletal-membrane organization, cell adhesion, protein trafficking, and the activation of transcription factors. The protein is primarily localized to membrane-associated adherens junctions and focal adhesions but is also found at the endoplasmic reticulum and nucleus. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000035681 | NSMAF | neutral sphingomyelinase activation associated factor | 8439 | This gene encodes a WD-repeat protein that binds the cytoplasmic sphingomyelinase activation domain of the 55kD tumor necrosis factor receptor. This protein is required for TNF-mediated activation of neutral sphingomyelinase and may play a role in regulating TNF-induced cellular responses such as inflammation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000198846 | TOX | thymocyte selection associated high mobility group box | 9760 | The protein encoded by this gene contains a HMG box DNA binding domain. HMG boxes are found in many eukaryotic proteins involved in chromatin assembly, transcription and replication. This protein may function to regulate T-cell development. |
| NA | ENSG00000178538 | CA8 | carbonic anhydrase 8 | 767 | The protein encoded by this gene was initially named CA-related protein because of sequence similarity to other known carbonic anhydrase genes. However, the gene product lacks carbonic anhydrase activity (i.e., the reversible hydration of carbon dioxide). The gene product continues to carry a carbonic anhydrase designation based on clear sequence identity to other members of the carbonic anhydrase gene family. The absence of CA8 gene transcription in the cerebellum of the lurcher mutant in mice with a neurologic defect suggests an important role for this acatalytic form. |
| NA | ENSG00000104388 | RAB2A | RAB2A, member RAS oncogene family | 5862 | The protein encoded by this gene belongs to the Rab family, members of which are small molecular weight guanosine triphosphatases (GTPases) that contain highly conserved domains involved in GTP binding and hydrolysis. The Rabs are membrane-bound proteins, involved in vesicular fusion and trafficking. This protein is a resident of pre-Golgi intermediates, and is required for protein transport from the endoplasmic reticulum (ER) to the Golgi complex. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000171316 | CHD7 | chromodomain helicase DNA binding protein 7 | 55636 | This gene encodes a protein that contains several helicase family domains. Mutations in this gene have been found in some patients with the CHARGE syndrome. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137563 | GGH | gamma-glutamyl hydrolase | 8836 | This gene catalyzes the hydrolysis of folylpoly-gamma-glutamates and antifolylpoly-gamma-glutamates by the removal of gamma-linked polyglutamates and glutamate. |
| NA | ENSG00000104442 | ARMC1 | armadillo repeat containing 1 | 55156 | NA |
| NA | ENSG00000066855 | MTFR1 | mitochondrial fission regulator 1 | 9650 | This gene encodes a mitochondrial protein that is characterized by a poly-proline rich region. A chicken homolog of this protein promotes mitochondrial fission and the mouse homolog protects cells from oxidative stress. A related pseudogene of this gene is found on chromosome X. |
| NA | ENSG00000205268 | PDE7A | phosphodiesterase 7A | 5150 | The protein encoded by this gene belongs to the cyclic nucleotide phosphodiesterase (PDE) family, and PDE7 subfamily. This PDE hydrolyzes the second messenger, cAMP, which is a regulator and mediator of a number of cellular responses to extracellular signals. Thus, by regulating the cellular concentration of cAMP, this protein plays a key role in many important physiological processes. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000179041 | RRS1 | ribosome biogenesis regulator homolog | 23212 | NA |
| NA | ENSG00000185697 | MYBL1 | MYB proto-oncogene like 1 | 4603 | NA |
| NA | ENSG00000175073 | VCPIP1 | valosin containing protein (p97)/p47 complex interacting protein 1 | 80124 | NA |
| NA | ENSG00000213865 | C8orf44 | chromosome 8 open reading frame 44 | 56260 | NA |
| NA | ENSG00000104205 | SGK3 | serum/glucocorticoid regulated kinase family member 3 | 23678 | This gene is a member of the Ser/Thr protein kinase family and encodes a phosphoprotein with a PX (phox homology) domain. The protein phosphorylates several target proteins and has a role in neutral amino acid transport and activation of potassium and chloride channels. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000104218 | CSPP1 | centrosome and spindle pole associated protein 1 | 79848 | This gene encodes a centrosome and spindle pole associated protein. The encoded protein plays a role in cell-cycle progression and spindle organization, regulates cytokinesis, interacts with Nephrocystin 8 and is required for cilia formation. Mutations in this gene result in primary cilia abnormalities and classical Joubert syndrome. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000066777 | ARFGEF1 | ADP ribosylation factor guanine nucleotide exchange factor 1 | 10565 | ADP-ribosylation factors (ARFs) play an important role in intracellular vesicular trafficking. The protein encoded by this gene is involved in the activation of ARFs by accelerating replacement of bound GDP with GTP. It contains a Sec7 domain, which may be responsible for guanine-nucleotide exchange activity and also brefeldin A inhibition. |
| NA | ENSG00000137573 | SULF1 | sulfatase 1 | 23213 | This gene encodes an extracellular heparan sulfate endosulfatase. The encoded enzyme selectively removes 6-O-sulfate groups from heparan sulfate chains of heparan sulfate proteoglycans (HSPGs). The enzyme is secreted through the Golgi and is subsequently localized to the cell surface. The expression of this gene may be down-regulated in several types of cancer, including hepatocellular (HCC), ovarian and breast cancers. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000137571 | SLCO5A1 | solute carrier organic anion transporter family member 5A1 | 81796 | This gene encodes a 12 transmembrane domain protein that is a member of the solute carrier organic anion transporter superfamily. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000147596 | PRDM14 | PR domain 14 | 63978 | This gene encodes a member of the PRDI-BF1 and RIZ homology domain containing (PRDM) family of transcriptional regulators. The encoded protein may possess histone methyltransferase activity and plays a critical role in cell pluripotency by suppressing the expression of differentiation marker genes. Expression of this gene may play a role in breast cancer. |
| NA | ENSG00000140396 | NCOA2 | nuclear receptor coactivator 2 | 10499 | The NCOA2 gene encodes nuclear receptor coactivator 2, which aids in the function of nuclear hormone receptors. Nuclear hormone receptors are conditional transcription factors that play important roles in various aspects of cell growth, development, and homeostasis by controlling expression of specific genes. Members of the nuclear hormone receptor superfamily, which includes the 5 steroid receptors and class II nuclear receptors (see below), are structurally characterized by 3 distinct domains: an N-terminal transcriptional activation domain, a central DNA-binding domain, and a C-terminal hormone-binding domain. Before the binding of hormone, steroid receptors, which are sometimes called class I of the nuclear hormone receptor family, remain inactive in a complex with heat-shock protein-90 (MIM 140571) and other stress family proteins. Binding of hormone induces critical conformational changes in steroid receptors that cause them to dissociate from the inhibitory complex, bind as homodimers to specific DNA enhancer elements associated with target genes, and modulate that gene’s transcription. After binding to enhancer elements, transcription factors require transcriptional coactivator proteins to mediate their stimulation of transcription initiation (Hong et al., 1997 [PubMed 9111344]). |
| NA | ENSG00000067167 | TRAM1 | translocation associated membrane protein 1 | 23471 | This gene encodes a multi-pass membrane protein that is part of the mammalian endoplasmic reticulum. The encoded protein influences glycosylation and facilitates the translocation of secretory proteins across the endoplasmic reticulum membrane by regulating which domains of the nascent polypeptide chain are visible to the cytosol during a translocational pause. |
| NA | ENSG00000147601 | TERF1 | telomeric repeat binding factor 1 | 7013 | This gene encodes a telomere specific protein which is a component of the telomere nucleoprotein complex. This protein is present at telomeres throughout the cell cycle and functions as an inhibitor of telomerase, acting in cis to limit the elongation of individual chromosome ends. The protein structure contains a C-terminal Myb motif, a dimerization domain near its N-terminus and an acidic N-terminus. Two transcripts of this gene are alternatively spliced products. |
| NA | ENSG00000147604 | RPL7 | ribosomal protein L7 | 6129 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L30P family of ribosomal proteins. It contains an N-terminal basic region-leucine zipper (BZIP)-like domain and the RNP consensus submotif RNP2. In vitro the BZIP-like domain mediates homodimerization and stable binding to DNA and RNA, with a preference for 28S rRNA and mRNA. The protein can inhibit cell-free translation of mRNAs, suggesting that it plays a regulatory role in the translation apparatus. It is located in the cytoplasm. The protein has been shown to be an autoantigen in patients with systemic autoimmune diseases, such as systemic lupus erythematosus. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000121039 | RDH10 | retinol dehydrogenase 10 (all-trans) | 157506 | This gene encodes a retinol dehydrogenase, which converts all-trans-retinol to all-trans-retinal, with preference for NADP as a cofactor. Studies in mice suggest that this protein is essential for synthesis of embryonic retinoic acid and is required for limb, craniofacial, and organ development. |
| NA | ENSG00000040341 | STAU2 | staufen double-stranded RNA binding protein 2 | 27067 | Staufen homolog 2 is a member of the family of double-stranded RNA (dsRNA)-binding proteins involved in the transport and/or localization of mRNAs to different subcellular compartments and/or organelles. These proteins are characterized by the presence of multiple dsRNA-binding domains which are required to bind RNAs having double-stranded secondary structures. Staufen homolog 2 shares 48.5% and 59.9% similarity with drosophila and human staufen, respectively. The exact function of Staufen homolog 2 is not known, but since it contains 3 copies of conserved dsRNA binding domain, it could be involved in double-stranded RNA binding events. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000104343 | UBE2W | ubiquitin conjugating enzyme E2 W (putative) | 55284 | This gene encodes a nuclear-localized ubiquitin-conjugating enzyme (E2) that, along with ubiquitin-activating (E1) and ligating (E3) enzymes, coordinates the addition of a ubiquitin moiety to existing proteins. The encoded protein promotes the ubiquitination of Fanconi anemia complementation group proteins and may be important in the repair of DNA damage. There is a pseudogene for this gene on chromosome 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000175606 | TMEM70 | transmembrane protein 70 | 54968 | This gene likely encodes a mitochondrial membrane protein. The encoded protein may play a role in biogenesis of mitochondrial ATP synthase. Mutations in this gene have been associated with neonatal mitochondrial encephalocardiomyopathy due to ATP synthase deficiency. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000104381 | GDAP1 | ganglioside induced differentiation associated protein 1 | 54332 | This gene encodes a member of the ganglioside-induced differentiation-associated protein family, which may play a role in a signal transduction pathway during neuronal development. Mutations in this gene have been associated with various forms of Charcot-Marie-Tooth Disease and neuropathy. Two transcript variants encoding different isoforms and a noncoding variant have been identified for this gene. |
| NA | ENSG00000121005 | CRISPLD1 | cysteine rich secretory protein LCCL domain containing 1 | 83690 | NA |
| NA | ENSG00000091656 | ZFHX4 | zinc finger homeobox 4 | 79776 | NA |
| NA | ENSG00000164751 | PEX2 | peroxisomal biogenesis factor 2 | 5828 | This gene encodes an integral peroxisomal membrane protein required for peroxisome biogenesis. The protein is thought to be involved in peroxisomal matrix protein import. Mutations in this gene result in one form of Zellweger syndrome and infantile Refsum disease. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000171033 | PKIA | protein kinase (cAMP-dependent, catalytic) inhibitor alpha | 5569 | The protein encoded by this gene is a member of the cAMP-dependent protein kinase (PKA) inhibitor family. This protein was demonstrated to interact with and inhibit the activities of both C alpha and C beta catalytic subunits of the PKA. Alternatively spliced transcript variants encoding the same protein have been reported. |
| NA | ENSG00000104427 | ZC2HC1A | zinc finger C2HC-type containing 1A | 51101 | NA |
| NA | ENSG00000104435 | STMN2 | stathmin 2 | 11075 | This gene encodes a member of the stathmin family of phosphoproteins. Stathmin proteins function in microtubule dynamics and signal transduction. The encoded protein plays a regulatory role in neuronal growth and is also thought to be involved in osteogenesis. Reductions in the expression of this gene have been associated with Down’s syndrome and Alzheimer’s disease. Alternatively spliced transcript variants have been observed for this gene. A pseudogene of this gene is located on the long arm of chromosome 6. |
| NA | ENSG00000147586 | MRPS28 | mitochondrial ribosomal protein S28 | 28957 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that has been called mitochondrial ribosomal protein S35 in the literature. |
| NA | ENSG00000076554 | TPD52 | tumor protein D52 | 7163 | NA |
| NA | ENSG00000205189 | ZBTB10 | zinc finger and BTB domain containing 10 | 65986 | NA |
| NA | ENSG00000164687 | FABP5 | fatty acid binding protein 5 | 2171 | This gene encodes the fatty acid binding protein found in epidermal cells, and was first identified as being upregulated in psoriasis tissue. Fatty acid binding proteins are a family of small, highly conserved, cytoplasmic proteins that bind long-chain fatty acids and other hydrophobic ligands. FABPs may play roles in fatty acid uptake, transport, and metabolism. Polymorphisms in this gene are associated with type 2 diabetes. The human genome contains many pseudogenes similar to this locus. |
| NA | ENSG00000133731 | IMPA1 | inositol(myo)-1(or 4)-monophosphatase 1 | 3612 | This gene encodes an enzyme that dephosphorylates myo-inositol monophosphate to generate free myo-inositol, a precursor of phosphatidylinositol, and is therefore an important modulator of intracellular signal transduction via the production of the second messengers myoinositol 1,4,5-trisphosphate and diacylglycerol. This enzyme can also use myo-inositol-1,3-diphosphate, myo-inositol-1,4-diphosphate, scyllo-inositol-phosphate, glucose-1-phosphate, glucose-6-phosphate, fructose-1-phosphate, beta-glycerophosphate, and 2’-AMP as substrates. This enzyme shows magnesium-dependent phosphatase activity and is inhibited by therapeutic concentrations of lithium. Inhibition of inositol monophosphate hydroylosis and subsequent depletion of inositol for phosphatidylinositol synthesis may explain the anti-manic and anti-depressive effects of lithium administered to treat bipolar disorder. Alternative splicing results in multiple transcript variants encoding distinct isoforms. A pseudogene of this gene is also present on chromosome 8q21.13. |
| NA | ENSG00000104231 | ZFAND1 | zinc finger AN1-type containing 1 | 79752 | NA |
| NA | ENSG00000104497 | SNX16 | sorting nexin 16 | 64089 | This gene encodes a member of the sorting nexin family. Members of this family contain a phox (PX) domain, which is a phosphoinositide binding domain, and are involved in intracellular trafficking. The function of this protein has not been determined. This gene results in three transcript variants encoding two distinct isoforms. |
| NA | ENSG00000133739 | LRRCC1 | leucine rich repeat and coiled-coil centrosomal protein 1 | 85444 | NA |
| NA | ENSG00000176731 | C8orf59 | chromosome 8 open reading frame 59 | 401466 | NA |
| NA | ENSG00000185015 | CA13 | carbonic anhydrase 13 | 377677 | Carbonic anhydrases (CAs) are a family of zinc metalloenzymes. For background information on the CA family, see MIM 114800. |
| NA | ENSG00000164879 | CA3 | carbonic anhydrase 3 | 761 | Carbonic anhydrase III (CAIII) is a member of a multigene family (at least six separate genes are known) that encodes carbonic anhydrase isozymes. These carbonic anhydrases are a class of metalloenzymes that catalyze the reversible hydration of carbon dioxide and are differentially expressed in a number of cell types. The expression of the CA3 gene is strictly tissue specific and present at high levels in skeletal muscle and much lower levels in cardiac and smooth muscle. A proportion of carriers of Duchenne muscle dystrophy have a higher CA3 level than normal. The gene spans 10.3 kb and contains seven exons and six introns. |
| NA | ENSG00000123124 | WWP1 | WW domain containing E3 ubiquitin protein ligase 1 | 11059 | WW domain-containing proteins are found in all eukaryotes and play an important role in the regulation of a wide variety of cellular functions such as protein degradation, transcription, and RNA splicing. This gene encodes a protein which contains 4 tandem WW domains and a HECT (homologous to the E6-associated protein carboxyl terminus) domain. The encoded protein belongs to a family of NEDD4-like proteins, which are E3 ubiquitin-ligase molecules and regulate key trafficking decisions, including targeting of proteins to proteosomes or lysosomes. Alternative splicing of this gene generates at least 6 transcript variants; however, the full length nature of these transcripts has not been defined. |
| NA | ENSG00000176623 | RMDN1 | regulator of microtubule dynamics 1 | 51115 | NA |
| NA | ENSG00000085719 | CPNE3 | copine 3 | 8895 | Calcium-dependent membrane-binding proteins may regulate molecular events at the interface of the cell membrane and cytoplasm. This gene encodes a protein which contains two type II C2 domains in the amino-terminus and an A domain-like sequence in the carboxy-terminus. The A domain mediates interactions between integrins and extracellular ligands. |
| NA | ENSG00000156103 | MMP16 | matrix metallopeptidase 16 | 4325 | Proteins of the matrix metalloproteinase (MMP) family are involved in the breakdown of extracellular matrix in normal physiological processes, such as embryonic development, reproduction, and tissue remodeling, as well as in disease processes, such as arthritis and metastasis. Most MMP’s are secreted as inactive proproteins which are activated when cleaved by extracellular proteinases. The encoded protein activates MMP2 by cleavage. This gene was once referred to as MT-MMP2, but was renamed as MT-MMP3 or MMP16. |
| NA | ENSG00000104312 | RIPK2 | receptor interacting serine/threonine kinase 2 | 8767 | This gene encodes a member of the receptor-interacting protein (RIP) family of serine/threonine protein kinases. The encoded protein contains a C-terminal caspase activation and recruitment domain (CARD), and is a component of signaling complexes in both the innate and adaptive immune pathways. It is a potent activator of NF-kappaB and inducer of apoptosis in response to various stimuli. |
| NA | ENSG00000164823 | OSGIN2 | oxidative stress induced growth inhibitor family member 2 | 734 | NA |
| NA | ENSG00000104320 | NBN | nibrin | 4683 | Mutations in this gene are associated with Nijmegen breakage syndrome, an autosomal recessive chromosomal instability syndrome characterized by microcephaly, growth retardation, immunodeficiency, and cancer predisposition. The encoded protein is a member of the MRE11/RAD50 double-strand break repair complex which consists of 5 proteins. This gene product is thought to be involved in DNA double-strand break repair and DNA damage-induced checkpoint activation. |
| NA | ENSG00000104327 | CALB1 | calbindin 1 | 793 | The protein encoded by this gene is a member of the calcium-binding protein superfamily that includes calmodulin and troponin C. Originally described as a 27 kDa protein, it is now known to be a 28 kDa protein. It contains four active calcium-binding domains, and has two modified domains that are thought to have lost their calcium binding capability. This protein is thought to buffer entry of calcium upon stimulation of glutamate receptors. Depletion of this protein was noted in patients with Huntington disease. |
| NA | ENSG00000180694 | TMEM64 | transmembrane protein 64 | 169200 | NA |
| NA | ENSG00000123119 | NECAB1 | N-terminal EF-hand calcium binding protein 1 | 64168 | NA |
| NA | ENSG00000253250 | C8orf88 | chromosome 8 open reading frame 88 | 100127983 | NA |
| NA | ENSG00000155100 | OTUD6B | OTU domain containing 6B | 51633 | This gene encodes a member of the ovarian tumor domain (OTU)-containing subfamily of deubiquitinating enzymes. Deubiquitinating enzymes are primarily involved in removing ubiquitin from proteins targeted for degradation. This protein may function as a negative regulator of the cell cycle in B cells. |
| NA | ENSG00000214954 | LRRC69 | leucine rich repeat containing 69 | 100130742 | NA |
| NA | ENSG00000205133 | TRIQK | triple QxxK/R motif containing | 286144 | NA |
| NA | ENSG00000188343 | FAM92A1 | family with sequence similarity 92 member A1 | 137392 | NA |
| NA | ENSG00000164953 | TMEM67 | transmembrane protein 67 | 91147 | The protein encoded by this gene localizes to the primary cilium and to the plasma membrane. The gene functions in centriole migration to the apical membrane and formation of the primary cilium. Multiple transcript variants encoding different isoforms have been found for this gene. Defects in this gene are a cause of Meckel syndrome type 3 (MKS3) and Joubert syndrome type 6 (JBTS6). |
| NA | ENSG00000164951 | PDP1 | pyruvate dehyrogenase phosphatase catalytic subunit 1 | 54704 | Pyruvate dehydrogenase (E1) is one of the three components (E1, E2, and E3) of the large pyruvate dehydrogenase complex. Pyruvate dehydrogenase kinases catalyze phosphorylation of serine residues of E1 to inactivate the E1 component and inhibit the complex. Pyruvate dehydrogenase phosphatases catalyze the dephosphorylation and activation of the E1 component to reverse the effects of pyruvate dehydrogenase kinases. Pyruvate dehydrogenase phosphatase is a heterodimer consisting of catalytic and regulatory subunits. Two catalytic subunits have been reported; one is predominantly expressed in skeletal muscle and another one is is much more abundant in the liver. The catalytic subunit, encoded by this gene, is the former, and belongs to the protein phosphatase 2C (PP2C) superfamily. Along with the pyruvate dehydrogenase complex and pyruvate dehydrogenase kinases, this enzyme is located in the mitochondrial matrix. Mutation in this gene causes pyruvate dehydrogenase phosphatase deficiency. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000164949 | GEM | GTP binding protein overexpressed in skeletal muscle | 2669 | The protein encoded by this gene belongs to the RAD/GEM family of GTP-binding proteins. It is associated with the inner face of the plasma membrane and could play a role as a regulatory protein in receptor-mediated signal transduction. Alternative splicing occurs at this locus and two transcript variants encoding the same protein have been identified. |
| NA | ENSG00000197275 | RAD54B | RAD54 homolog B (S. cerevisiae) | 25788 | The protein encoded by this gene belongs to the DEAD-like helicase superfamily. It shares similarity with Saccharomyces cerevisiae RAD54 and RDH54, both of which are involved in homologous recombination and repair of DNA. This protein binds to double-stranded DNA, and displays ATPase activity in the presence of DNA. This gene is highly expressed in testis and spleen, which suggests active roles in meiotic and mitotic recombination. Homozygous mutations of this gene were observed in primary lymphoma and colon cancer. |
| NA | ENSG00000265817 | FSBP | fibrinogen silencer binding protein | 100861412 | NA |
| NA | ENSG00000104413 | ESRP1 | epithelial splicing regulatory protein 1 | 54845 | ESPR1 is an epithelial cell-type-specific splicing regulator (Warzecha et al., 2009 [PubMed 19285943]). |
| NA | ENSG00000156162 | DPY19L4 | dpy-19 like 4 (C. elegans) | 286148 | NA |
| NA | ENSG00000175305 | CCNE2 | cyclin E2 | 9134 | The protein encoded by this gene belongs to the highly conserved cyclin family, whose members are characterized by a dramatic periodicity in protein abundance through the cell cycle. Cyclins function as regulators of CDK kinases. Different cyclins exhibit distinct expression and degradation patterns which contribute to the temporal coordination of each mitotic event. This cyclin forms a complex with and functions as a regulatory subunit of CDK2. This cyclin has been shown to specifically interact with CIP/KIP family of CDK inhibitors, and plays a role in cell cycle G1/S transition. The expression of this gene peaks at the G1-S phase and exhibits a pattern of tissue specificity distinct from that of cyclin E1. A significantly increased expression level of this gene was observed in tumor-derived cells. |
| NA | ENSG00000156170 | NDUFAF6 | NADH:ubiquinone oxidoreductase complex assembly factor 6 | 137682 | This gene encodes a protein that localizes to mitochondria and contains a predicted phytoene synthase domain. The encoded protein plays an important role in the assembly of complex I (NADH-ubiquinone oxidoreductase) of the mitochondrial respiratory chain through regulation of subunit ND1 biogenesis. Mutations in this gene are associated with complex I enzymatic deficiency. |
| NA | ENSG00000164938 | TP53INP1 | tumor protein p53 inducible nuclear protein 1 | 94241 | NA |
| NA | ENSG00000175895 | PLEKHF2 | pleckstrin homology and FYVE domain containing 2 | 79666 | NA |
| NA | ENSG00000156172 | C8orf37 | chromosome 8 open reading frame 37 | 157657 | This gene encodes a ubiquitously expressed protein of unknown function. It has high levels of mRNA expression in the brain, heart, and retina and the protein co-localizes with polyglutamylated tubulin at the base of the primary cilium in human retinal pigment epithelial cells. Mutations in this gene have been associated with autosomal recessive cone-rod dystrophy (arCRD) and retinitis pigmentosa (arRP). |
| NA | ENSG00000156469 | MTERF3 | mitochondrial transcription termination factor 3 | 51001 | NA |
| NA | ENSG00000156471 | PTDSS1 | phosphatidylserine synthase 1 | 9791 | The protein encoded by this gene catalyzes the formation of phosphatidylserine from either phosphatidylcholine or phosphatidylethanolamine. Phosphatidylserine localizes to the mitochondria-associated membrane of the endoplasmic reticulum, where it serves a structural role as well as a signaling role. Defects in this gene are a cause of Lenz-Majewski hyperostotic dwarfism. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169439 | SDC2 | syndecan 2 | 6383 | The protein encoded by this gene is a transmembrane (type I) heparan sulfate proteoglycan and is a member of the syndecan proteoglycan family. The syndecans mediate cell binding, cell signaling, and cytoskeletal organization and syndecan receptors are required for internalization of the HIV-1 tat protein. The syndecan-2 protein functions as an integral membrane protein and participates in cell proliferation, cell migration and cell-matrix interactions via its receptor for extracellular matrix proteins. Altered syndecan-2 expression has been detected in several different tumor types. |
| NA | ENSG00000180543 | TSPYL5 | TSPY-like 5 | 85453 | NA |
| NA | ENSG00000147649 | MTDH | metadherin | 92140 | NA |
| NA | ENSG00000104341 | LAPTM4B | lysosomal protein transmembrane 4 beta | 55353 | NA |
| NA | ENSG00000156482 | RPL30 | ribosomal protein L30 | 6156 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L30E family of ribosomal proteins. It is located in the cytoplasm. This gene is co-transcribed with the U72 small nucleolar RNA gene, which is located in its fourth intron. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000104356 | POP1 | POP1 homolog, ribonuclease P/MRP subunit | 10940 | This gene encodes the protein subunit of two different small nucleolar ribonucleoprotein complexes: the endoribonuclease for mitochondrial RNA processing complex and the ribonuclease P complex. The encoded protein is a ribonuclease that localizes to the nucleus and functions in pre-RNA processing. This protein is also an autoantigen in patients suffering from connective tissue diseases. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000104375 | STK3 | serine/threonine kinase 3 | 6788 | This gene encodes a serine/threonine protein kinase activated by proapoptotic molecules indicating the encoded protein functions as a growth suppressor. Cleavage of the protein product by caspase removes the inhibitory C-terminal portion. The N-terminal portion is transported to the nucleus where it homodimerizes to form the active kinase which promotes the condensation of chromatin during apoptosis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132549 | VPS13B | vacuolar protein sorting 13 homolog B (yeast) | 157680 | This gene encodes a potential transmembrane protein that may function in vesicle-mediated transport and sorting of proteins within the cell. This protein may play a role in the development and the function of the eye, hematological system, and central nervous system. Mutations in this gene have been associated with Cohen syndrome. Multiple splice variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000164919 | COX6C | cytochrome c oxidase subunit 6C | 1345 | Cytochrome c oxidase, the terminal enzyme of the mitochondrial respiratory chain, catalyzes the electron transfer from reduced cytochrome c to oxygen. It is a heteromeric complex consisting of 3 catalytic subunits encoded by mitochondrial genes and multiple structural subunits encoded by nuclear genes. The mitochondrially-encoded subunits function in electron transfer, and the nuclear-encoded subunits may be involved in the regulation and assembly of the complex. This nuclear gene encodes subunit VIc, which has 77% amino acid sequence identity with mouse subunit VIc. This gene is up-regulated in prostate cancer cells. A pseudogene has been found on chromosomes 16p12. |
| NA | ENSG00000147669 | POLR2K | polymerase (RNA) II subunit K | 5440 | This gene encodes one of the smallest subunits of RNA polymerase II, the polymerase responsible for synthesizing messenger RNA in eukaryotes. This subunit is shared by the other two DNA-directed RNA polymerases. |
| NA | ENSG00000104450 | SPAG1 | sperm associated antigen 1 | 6674 | The correlation of anti-sperm antibodies with cases of unexplained infertility implicates a role for these antibodies in blocking fertilization. Improved diagnosis and treatment of immunologic infertility, as well as identification of proteins for targeted contraception, are dependent on the identification and characterization of relevant sperm antigens. The protein expressed by this gene is recognized by anti-sperm agglutinating antibodies from an infertile woman. Furthermore, immunization of female rats with the recombinant human protein reduced fertility. This protein localizes to the plasma membrane of germ cells in the testis and to the post-acrosomal plasma membrane of mature spermatozoa. Recombinant polypeptide binds GTP and exhibits GTPase activity. Thus, this protein may regulate GTP signal transduction pathways involved in spermatogenesis and fertilization. Two transcript variants of this gene encode the same protein. |
| NA | ENSG00000034677 | RNF19A | ring finger protein 19A, RBR E3 ubiquitin protein ligase | 25897 | This gene encodes a member of the ring between ring fingers (RBR) protein family, and the encoded protein contains two RING-finger motifs and an in between RING fingers motif. This protein is an E3 ubiquitin ligase that is localized to Lewy bodies, and ubiquitylates synphilin-1, which is an interacting protein of alpha synuclein in neurons. The encoded protein may be involved in amyotrophic lateral sclerosis and Parkinson’s disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000186106 | ANKRD46 | ankyrin repeat domain 46 | 157567 | This gene encodes a protein containing multiple ankyrin repeats. Ankyrin domains function in protein-protein interactions in a variety of cellular processes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000070756 | PABPC1 | poly(A) binding protein, cytoplasmic 1 | 26986 | This gene encodes a poly(A) binding protein. The protein shuttles between the nucleus and cytoplasm and binds to the 3’ poly(A) tail of eukaryotic messenger RNAs via RNA-recognition motifs. The binding of this protein to poly(A) promotes ribosome recruitment and translation initiation; it is also required for poly(A) shortening which is the first step in mRNA decay. The gene is part of a small gene family including three protein-coding genes and several pseudogenes. |
| NA | ENSG00000164924 | YWHAZ | tyrosine 3-monooxygenase/tryptophan 5-monooxygenase activation protein zeta | 7534 | This gene product belongs to the 14-3-3 family of proteins which mediate signal transduction by binding to phosphoserine-containing proteins. This highly conserved protein family is found in both plants and mammals, and this protein is 99% identical to the mouse, rat and sheep orthologs. The encoded protein interacts with IRS1 protein, suggesting a role in regulating insulin sensitivity. Several transcript variants that differ in the 5’ UTR but that encode the same protein have been identified for this gene. |
| NA | ENSG00000120963 | ZNF706 | zinc finger protein 706 | 51123 | NA |
| NA | ENSG00000083307 | GRHL2 | grainyhead like transcription factor 2 | 79977 | The protein encoded by this gene is a transcription factor that can act as a homodimer or as a heterodimer with either GRHL1 or GRHL3. Defects in this gene are a cause of non-syndromic sensorineural deafness autosomal dominant type 28 (DFNA28). |
| NA | ENSG00000048392 | RRM2B | ribonucleotide reductase regulatory TP53 inducible subunit M2B | 50484 | This gene encodes the small subunit of a p53-inducible ribonucleotide reductase. This heterotetrameric enzyme catalyzes the conversion of ribonucleoside diphosphates to deoxyribonucleoside diphosphates. The product of this reaction is necessary for DNA synthesis. Mutations in this gene have been associated with autosomal recessive mitochondrial DNA depletion syndrome, autosomal dominant progressive external ophthalmoplegia-5, and mitochondrial neurogastrointestinal encephalopathy. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000104517 | UBR5 | ubiquitin protein ligase E3 component n-recognin 5 | 51366 | This gene encodes a progestin-induced protein, which belongs to the HECT (homology to E6-AP carboxyl terminus) family. The HECT family proteins function as E3 ubiquitin-protein ligases, targeting specific proteins for ubiquitin-mediated proteolysis. This gene is localized to chromosome 8q22 which is disrupted in a variety of cancers. This gene potentially has a role in regulation of cell proliferation or differentiation. |
| NA | ENSG00000155090 | KLF10 | Kruppel-like factor 10 | 7071 | This gene encodes a member of a family of proteins that feature C2H2-type zinc finger domains. The encoded protein is a transcriptional repressor that acts as an effector of transforming growth factor beta signaling. Activity of this protein may inhibit the growth of cancers, particularly pancreatic cancer. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000155096 | AZIN1 | antizyme inhibitor 1 | 51582 | The protein encoded by this gene belongs to the antizyme inhibitor family, which plays a role in cell growth and proliferation by maintaining polyamine homeostasis within the cell. Antizyme inhibitors are homologs of ornithine decarboxylase (ODC, the key enzyme in polyamine biosynthesis) that have lost the ability to decarboxylase ornithine; however, retain the ability to bind to antizymes. Antizymes negatively regulate intracellular polyamine levels by binding to ODC and targeting it for degradation, as well as by inhibiting polyamine uptake. Antizyme inhibitors function as positive regulators of polyamine levels by sequestering antizymes and neutralizing their effect. This gene encodes antizyme inhibitor 1, the first member of this gene family that is ubiquitously expressed, and is localized in the nucleus and cytoplasm. Overexpression of antizyme inhibitor 1 gene has been associated with increased proliferation, cellular transformation and tumorigenesis. Gene knockout studies showed that homozygous mutant mice lacking functional antizyme inhibitor 1 gene died at birth with abnormal liver morphology. RNA editing of this gene, predominantly in the liver tissue, has been linked to the progression of hepatocellular carcinoma. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000253320 | AZIN1-AS1 | AZIN1 antisense RNA 1 | ENSG00000253320 | NA |
| NA | ENSG00000155097 | ATP6V1C1 | ATPase H+ transporting V1 subunit C1 | 528 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of intracellular compartments of eukaryotic cells. V-ATPase dependent acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A and three B subunits, two G subunits plus the C, D, E, F, and H subunits. The V1 domain contains the ATP catalytic site. The V0 domain consists of five different subunits: a, c, c’, c’’, and d. Additional isoforms of many of the V1 and V0 subunit proteins are encoded by multiple genes or alternatively spliced transcript variants. This gene is one of two genes that encode the V1 domain C subunit proteins and is found ubiquitously. This C subunit is analogous but not homologous to gamma subunit of F-ATPases. Previously, this gene was designated ATP6D. |
| NA | ENSG00000164930 | FZD6 | frizzled class receptor 6 | 8323 | This gene represents a member of the ‘frizzled’ gene family, which encode 7-transmembrane domain proteins that are receptors for Wnt signaling proteins. The protein encoded by this family member contains a signal peptide, a cysteine-rich domain in the N-terminal extracellular region, and seven transmembrane domains, but unlike other family members, this protein does not contain a C-terminal PDZ domain-binding motif. This protein functions as a negative regulator of the canonical Wnt/beta-catenin signaling cascade, thereby inhibiting the processes that trigger oncogenic transformation, cell proliferation, and inhibition of apoptosis. Alternative splicing results in multiple transcript variants, some of which do not encode a protein with a predicted signal peptide. |
| NA | ENSG00000164934 | DCAF13 | DDB1 and CUL4 associated factor 13 | 25879 | NA |
| NA | ENSG00000176406 | RIMS2 | regulating synaptic membrane exocytosis 2 | 9699 | NA |
| NA | ENSG00000147650 | LRP12 | LDL receptor related protein 12 | 29967 | This gene encodes a member of the low-density lipoprotein receptor related protein family. The product of this gene is a transmembrane protein that is differentially expressed in many cancer cells. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000164830 | OXR1 | oxidation resistance 1 | 55074 | NA |
| NA | ENSG00000154188 | ANGPT1 | angiopoietin 1 | 284 | This gene encodes a secreted glycoprotein that belongs to the angiopoietin family. Members of this family play important roles in vascular development and angiogenesis. All angiopoietins bind with similar affinity to an endothelial cell-specific tyrosine-protein kinase receptor. The protein encoded by this gene is a secreted glycoprotein that activates the receptor by inducing its tyrosine phosphorylation. It plays a critical role in mediating reciprocal interactions between the endothelium and surrounding matrix and mesenchyme and inhibits endothelial permeability. The protein also contributes to blood vessel maturation and stability, and may be involved in early development of the heart. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000104408 | EIF3E | eukaryotic translation initiation factor 3 subunit E | 3646 | NA |
| NA | ENSG00000104412 | EMC2 | ER membrane protein complex subunit 2 | 9694 | NA |
| NA | ENSG00000164841 | TMEM74 | transmembrane protein 74 | 157753 | NA |
| NA | ENSG00000120526 | NUDCD1 | NudC domain containing 1 | 84955 | NA |
| NA | ENSG00000147654 | EBAG9 | estrogen receptor binding site associated, antigen, 9 | 9166 | This gene was identified as an estrogen-responsive gene. Regulation of transcription by estrogen is mediated by estrogen receptor, which binds to the estrogen-responsive element found in the 5’-flanking region of this gene. The encoded protein is a tumor-associated antigen that is expressed at high frequency in a variety of cancers. Alternate splicing results in multiple transcript variants. A pseudogene of this gene has been defined on chromosome 10. |
| NA | ENSG00000104447 | TRPS1 | transcriptional repressor GATA binding 1 | 7227 | This gene encodes a transcription factor that represses GATA-regulated genes and binds to a dynein light chain protein. Binding of the encoded protein to the dynein light chain protein affects binding to GATA consensus sequences and suppresses its transcriptional activity. Defects in this gene are a cause of tricho-rhino-phalangeal syndrome (TRPS) types I-III. |
| NA | ENSG00000147677 | EIF3H | eukaryotic translation initiation factor 3 subunit H | 8667 | NA |
| NA | ENSG00000147679 | UTP23 | UTP23, small subunit processome component | 84294 | NA |
| NA | ENSG00000164754 | RAD21 | RAD21 cohesin complex component | 5885 | The protein encoded by this gene is highly similar to the gene product of Schizosaccharomyces pombe rad21, a gene involved in the repair of DNA double-strand breaks, as well as in chromatid cohesion during mitosis. This protein is a nuclear phospho-protein, which becomes hyperphosphorylated in cell cycle M phase. The highly regulated association of this protein with mitotic chromatin specifically at the centromere region suggests its role in sister chromatid cohesion in mitotic cells. |
| NA | ENSG00000205002 | AARD | alanine and arginine rich domain containing protein | 441376 | NA |
| NA | ENSG00000164758 | MED30 | mediator complex subunit 30 | 90390 | The multiprotein TRAP/Mediator complex facilitates gene expression through a wide variety of transcriptional activators. MED30 is a component of this complex that appears to be metazoan specific (Baek et al., 2002 [PubMed 11909976]). |
| NA | ENSG00000182197 | EXT1 | exostosin glycosyltransferase 1 | 2131 | This gene encodes an endoplasmic reticulum-resident type II transmembrane glycosyltransferase involved in the chain elongation step of heparan sulfate biosynthesis. Mutations in this gene cause the type I form of multiple exostoses. |
| NA | ENSG00000177570 | SAMD12 | sterile alpha motif domain containing 12 | 401474 | NA |
| NA | ENSG00000147676 | MAL2 | mal, T-cell differentiation protein 2 (gene/pseudogene) | 114569 | This gene encodes a multispan transmembrane protein belonging to the MAL proteolipid family. The protein is a component of lipid rafts and, in polarized cells, it primarily localizes to endosomal structures beneath the apical membrane. It is required for transcytosis, an intracellular transport pathway used to deliver membrane-bound proteins and exogenous cargos from the basolateral to the apical surface. |
| NA | ENSG00000136960 | ENPP2 | ectonucleotide pyrophosphatase/phosphodiesterase 2 | 5168 | The protein encoded by this gene functions as both a phosphodiesterase, which cleaves phosphodiester bonds at the 5’ end of oligonucleotides, and a phospholipase, which catalyzes production of lysophosphatidic acid (LPA) in extracellular fluids. LPA evokes growth factor-like responses including stimulation of cell proliferation and chemotaxis. This gene product stimulates the motility of tumor cells and has angiogenic properties, and its expression is upregulated in several kinds of carcinomas. The gene product is secreted and further processed to make the biologically active form. Several alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000064313 | TAF2 | TATA-box binding protein associated factor 2 | 6873 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes one of the larger subunits of TFIID that is stably associated with the TFIID complex. It contributes to interactions at and downstream of the transcription initiation site, interactions that help determine transcription complex response to activators. |
| NA | ENSG00000187955 | COL14A1 | collagen type XIV alpha 1 | 7373 | This gene encodes the alpha chain of type XIV collagen, a member of the FACIT (fibril-associated collagens with interrupted triple helices) collagen family. Type XIV collagen interacts with the fibril surface and is involved in the regulation of fibrillogenesis. |
| NA | ENSG00000172172 | MRPL13 | mitochondrial ribosomal protein L13 | 28998 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein. |
| NA | ENSG00000172167 | MTBP | MDM2 binding protein | 27085 | This gene encodes a protein that interacts with the oncoprotein mouse double minute 2. The encoded protein regulates progression through the cell cycle and may be involved in tumor formation. |
| NA | ENSG00000172164 | SNTB1 | syntrophin beta 1 | 6641 | Dystrophin is a large, rod-like cytoskeletal protein found at the inner surface of muscle fibers. Dystrophin is missing in Duchenne Muscular Dystrophy patients and is present in reduced amounts in Becker Muscular Dystrophy patients. The protein encoded by this gene is a peripheral membrane protein found associated with dystrophin and dystrophin-related proteins. This gene is a member of the syntrophin gene family, which contains at least two other structurally-related genes. |
| NA | ENSG00000178764 | ZHX2 | zinc fingers and homeoboxes 2 | 22882 | The members of the zinc fingers and homeoboxes gene family are nuclear homodimeric transcriptional repressors that interact with the A subunit of nuclear factor-Y (NF-YA) and contain two C2H2-type zinc fingers and five homeobox DNA-binding domains. This gene encodes member 2 of this gene family. In addition to forming homodimers, this protein heterodimerizes with member 1 of the zinc fingers and homeoboxes family. |
| NA | ENSG00000136986 | DERL1 | derlin 1 | 79139 | The protein encoded by this gene is a member of the derlin family. Members of this family participate in the ER-associated degradation response and retrotranslocate misfolded or unfolded proteins from the ER lumen to the cytosol for proteasomal degradation. This protein recognizes substrate in the ER and works in a complex to retrotranslocate it across the ER membrane into the cytosol. This protein may select cystic fibrosis transmembrane conductance regulator protein (CFTR) for degradation as well as unfolded proteins in Alzheimer’s disease. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000156787 | TBC1D31 | TBC1 domain family member 31 | 93594 | NA |
| NA | ENSG00000189376 | C8orf76 | chromosome 8 open reading frame 76 | 84933 | NA |
| NA | ENSG00000165156 | ZHX1 | zinc fingers and homeoboxes 1 | 11244 | The members of the zinc fingers and homeoboxes gene family are nuclear homodimeric transcriptional repressors that interact with the A subunit of nuclear factor-Y (NF-YA) and contain two C2H2-type zinc fingers and five homeobox DNA-binding domains. This gene encodes member 1 of this gene family. In addition to forming homodimers, this protein heterodimerizes with members 2 and 3 of the zinc fingers and homeoboxes family. Alternative splicing results in multiple transcript variants. Read-through transcription also exists between this gene and the downstream chromosome 8 open reading frame 76 (C8orf76) gene. |
| NA | ENSG00000156802 | ATAD2 | ATPase family, AAA domain containing 2 | 29028 | A large family of ATPases has been described, whose key feature is that they share a conserved region of about 220 amino acids that contains an ATP-binding site. The proteins that belong to this family either contain one or two AAA (ATPases Associated with diverse cellular Activities) domains. AAA family proteins often perform chaperone-like functions that assist in the assembly, operation, or disassembly of protein complexes. The protein encoded by this gene contains two AAA domains, as well as a bromodomain. |
| NA | ENSG00000156795 | WDYHV1 | WDYHV motif containing 1 | 55093 | NA |
| NA | ENSG00000176853 | FAM91A1 | family with sequence similarity 91 member A1 | 157769 | NA |
| NA | ENSG00000164983 | TMEM65 | transmembrane protein 65 | 157378 | NA |
| NA | ENSG00000183665 | TRMT12 | tRNA methyltransferase 12 homolog (S. cerevisiae) | 55039 | Wybutosine (yW) is a hypermodified guanosine at the 3-prime position adjacent to the anticodon of phenylalanine tRNA that stabilizes codon-anticodon interactions during decoding on the ribosome. TRMT12 is the human homolog of a yeast gene essential for yW synthesis (Noma and Suzuki, 2006). |
| NA | ENSG00000170881 | RNF139 | ring finger protein 139 | 11236 | The protein encoded by this gene is a multi-membrane spanning protein containing a RING-H2 finger. This protein is located in the endoplasmic reticulum, and has been shown to possess ubiquitin ligase activity. This gene was found to be interrupted by a t(3:8) translocation in a family with hereditary renal and non-medulary thyroid cancer. Studies of the Drosophila counterpart suggested that this protein may interact with tumor suppressor protein VHL, as well as with COPS5/JAB1, a protein responsible for the degradation of tumor suppressor CDKN1B/P27KIP. |
| NA | ENSG00000147687 | TATDN1 | TatD DNase domain containing 1 | 83940 | NA |
| NA | ENSG00000170873 | MTSS1 | metastasis suppressor 1 | 9788 | NA |
| NA | ENSG00000180938 | ZNF572 | zinc finger protein 572 | 137209 | NA |
| NA | ENSG00000104549 | SQLE | squalene epoxidase | 6713 | Squalene epoxidase catalyzes the first oxygenation step in sterol biosynthesis and is thought to be one of the rate-limiting enzymes in this pathway. |
| NA | ENSG00000164961 | KIAA0196 | KIAA0196 | 9897 | This gene encodes a 134 kDa protein named strumpellin that is predicted to have multiple transmembrane domains and a spectrin-repeat-containing domain. This ubiquitously expressed gene has its highest expression in skeletal muscle. The protein is named for Strumpell disease; a form of hereditary spastic paraplegia (HSP). Spastic paraplegias are a diverse group of disorders in which the autosomal dominant forms are characterized by progressive, lower extremity spasticity caused by axonal degeneration in the terminal portions of the longest descending and ascending corticospinal tracts. More than 30 loci (SPG1-33) have been implicated in hereditary spastic paraplegia diseases. |
| NA | ENSG00000156831 | NSMCE2 | NSE2/MMS21 homolog, SMC5-SMC6 complex SUMO ligase | 286053 | NA |
| NA | ENSG00000173334 | TRIB1 | tribbles pseudokinase 1 | 10221 | NA |
| NA | ENSG00000168672 | FAM84B | family with sequence similarity 84 member B | 157638 | NA |
| NA | ENSG00000212993 | POU5F1B | POU class 5 homeobox 1B | 5462 | This intronless gene was thought to be a transcribed pseudogene of POU class 5 homeobox 1, however, it has been reported that this gene can encode a functional protein. The encoded protein is nearly the same length as and highly similar to the POU class 5 homeobox 1 transcription factor, has been shown to be a weak transcriptional activator and may play a role in carcinogenesis and eye development. |
| NA | ENSG00000136997 | MYC | v-myc avian myelocytomatosis viral oncogene homolog | 4609 | The protein encoded by this gene is a multifunctional, nuclear phosphoprotein that plays a role in cell cycle progression, apoptosis and cellular transformation. It functions as a transcription factor that regulates transcription of specific target genes. Mutations, overexpression, rearrangement and translocation of this gene have been associated with a variety of hematopoietic tumors, leukemias and lymphomas, including Burkitt lymphoma. There is evidence to show that alternative translation initiations from an upstream, in-frame non-AUG (CUG) and a downstream AUG start site result in the production of two isoforms with distinct N-termini. The synthesis of non-AUG initiated protein is suppressed in Burkitt’s lymphomas, suggesting its importance in the normal function of this gene. |
| NA | ENSG00000153310 | FAM49B | family with sequence similarity 49 member B | 51571 | NA |
| NA | ENSG00000153317 | ASAP1 | ArfGAP with SH3 domain, ankyrin repeat and PH domain 1 | 50807 | This gene encodes an ADP-ribosylation factor (ARF) GTPase-activating protein. The GTPase-activating activity is stimulated by phosphatidylinositol 4,5-biphosphate (PIP2), and is greater towards ARF1 and ARF5, and lesser for ARF6. This gene maybe involved in regulation of membrane trafficking and cytoskeleton remodeling. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000132294 | EFR3A | EFR3 homolog A | 23167 | This gene encodes a membrane protein. Studies with orthologous gene in mouse show that it is differentially expressed in the auditory brainstem neurons of mice with hearing deficit, compared to mice with normal hearing ability, suggesting a role for this gene in hearing. |
| NA | ENSG00000132297 | HHLA1 | HERV-H LTR-associating 1 | 10086 | NA |
| NA | ENSG00000184156 | KCNQ3 | potassium voltage-gated channel subfamily Q member 3 | 3786 | This gene encodes a protein that functions in the regulation of neuronal excitability. The encoded protein forms an M-channel by associating with the products of the related KCNQ2 or KCNQ5 genes, which both encode integral membrane proteins. M-channel currents are inhibited by M1 muscarinic acetylcholine receptors and are activated by retigabine, a novel anti-convulsant drug. Defects in this gene are a cause of benign familial neonatal convulsions type 2 (BFNC2), also known as epilepsy, benign neonatal type 2 (EBN2). Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000129295 | LRRC6 | leucine rich repeat containing 6 | 23639 | The protein encoded by this gene contains several leucine-rich repeat domains and appears to be involved in the motility of cilia. Defects in this gene are a cause of primary ciliary dyskinesia-19 (CILD19). Two transcript variants, one protein-coding and the other not, have been found for this gene. |
| NA | ENSG00000155926 | SLA | Src-like-adaptor | 6503 | NA |
| NA | ENSG00000008513 | ST3GAL1 | ST3 beta-galactoside alpha-2,3-sialyltransferase 1 | 6482 | The protein encoded by this gene is a type II membrane protein that catalyzes the transfer of sialic acid from CMP-sialic acid to galactose-containing substrates. The encoded protein is normally found in the Golgi but can be proteolytically processed to a soluble form. Correct glycosylation of the encoded protein may be critical to its sialyltransferase activity. This protein, which is a member of glycosyltransferase family 29, can use the same acceptor substrates as does sialyltransferase 4B. Two transcript variants encoding the same protein have been found for this gene. Other transcript variants may exist, but have not been fully characterized yet. |
| NA | ENSG00000066827 | ZFAT | zinc finger and AT-hook domain containing | 57623 | This gene encodes a protein that likely binds DNA and functions as a transcriptional regulator involved in apoptosis and cell survival. This gene resides in a susceptibility locus for autoimmune thyroid disease (AITD) on chromosome 8q24. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000131773 | KHDRBS3 | KH domain containing, RNA binding, signal transduction associated 3 | 10656 | NA |
| NA | ENSG00000167632 | TRAPPC9 | trafficking protein particle complex 9 | 83696 | This gene encodes a protein that likely plays a role in NF-kappa-B signaling. Mutations in this gene have been associated with autosomal-recessive mental retardation. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000104472 | CHRAC1 | chromatin accessibility complex 1 | 54108 | CHRAC1 is a histone-fold protein that interacts with other histone-fold proteins to bind DNA in a sequence-independent manner. These histone-fold protein dimers combine within larger enzymatic complexes for DNA transcription, replication, and packaging. |
| NA | ENSG00000123908 | AGO2 | argonaute 2, RISC catalytic component | 27161 | This gene encodes a member of the Argonaute family of proteins which play a role in RNA interference. The encoded protein is highly basic, and contains a PAZ domain and a PIWI domain. It may interact with dicer1 and play a role in short-interfering-RNA-mediated gene silencing. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169398 | PTK2 | protein tyrosine kinase 2 | 5747 | This gene encodes a cytoplasmic protein tyrosine kinase which is found concentrated in the focal adhesions that form between cells growing in the presence of extracellular matrix constituents. The encoded protein is a member of the FAK subfamily of protein tyrosine kinases but lacks significant sequence similarity to kinases from other subfamilies. Activation of this gene may be an important early step in cell growth and intracellular signal transduction pathways triggered in response to certain neural peptides or to cell interactions with the extracellular matrix. Several transcript variants encoding different isoforms have been found for this gene, but the full-length natures of only four of them have been determined. |
| NA | ENSG00000022567 | SLC45A4 | solute carrier family 45 member 4 | 57210 | NA |
| NA | ENSG00000184489 | PTP4A3 | protein tyrosine phosphatase type IVA, member 3 | 11156 | This gene encodes a member of the protein-tyrosine phosphatase family. Protein tyrosine phosphatases are cell signaling molecules that play regulatory roles in a variety of cellular processes. Studies of this class of protein tyrosine phosphatase in mice demonstrates that they are prenylated in vivo, suggesting their association with cell plasma membrane. The encoded protein may enhance cell proliferation, and overexpression of this gene has been implicated in tumor metastasis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171045 | TSNARE1 | t-SNARE domain containing 1 | 203062 | NA |
| NA | ENSG00000181790 | ADGRB1 | adhesion G protein-coupled receptor B1 | 575 | Angiogenesis is controlled by a local balance between stimulators and inhibitors of new vessel growth and is suppressed under normal physiologic conditions. Angiogenesis has been shown to be essential for growth and metastasis of solid tumors. In order to obtain blood supply for their growth, tumor cells are potently angiogenic and attract new vessels as results of increased secretion of inducers and decreased production of endogenous negative regulators. BAI1 contains at least one ‘functional’ p53-binding site within an intron, and its expression has been shown to be induced by wildtype p53. There are two other brain-specific angiogenesis inhibitor genes, designated BAI2 and BAI3 which along with BAI1 have similar tissue specificities and structures, however only BAI1 is transcriptionally regulated by p53. BAI1 is postulated to be a member of the secretin receptor family, an inhibitor of angiogenesis and a growth suppressor of glioblastomas |
| NA | ENSG00000198576 | ARC | activity-regulated cytoskeleton-associated protein | 23237 | NA |
| NA | ENSG00000130193 | THEM6 | thioesterase superfamily member 6 | 51337 | NA |
| NA | ENSG00000180155 | LYNX1 | Ly6/neurotoxin 1 | 66004 | This gene encodes a member of the Ly-6/neurotoxin gene family, a group of lymphocyte antigens that attach to the cell surface by a glycosylphosphatidylinositol anchor and have a unique structure showing conserved 8-10 cysteine residues with a characteristic spacing pattern. Functional analysis indicates that this protein is not a ligand or neurotransmitter but has the capacity to enhance nicotinic acetylcholine receptor function in the presence of acetylcholine. This gene may also play a role in the pathogenesis of psoriasis vulgaris. Alternatively spliced variants encoding different isoforms have been identified. |
| NA | ENSG00000160932 | LY6E | lymphocyte antigen 6 complex, locus E | 4061 | NA |
| NA | ENSG00000177335 | C8orf31 | chromosome 8 open reading frame 31 | ENSG00000177335 | NA |
| NA | ENSG00000181638 | ZFP41 | ZFP41 zinc finger protein | 286128 | NA |
| NA | ENSG00000185730 | ZNF696 | zinc finger protein 696 | 79943 | NA |
| NA | ENSG00000184428 | TOP1MT | topoisomerase (DNA) I, mitochondrial | 116447 | This gene encodes a mitochondrial DNA topoisomerase that plays a role in the modification of DNA topology. The encoded protein is a type IB topoisomerase and catalyzes the transient breaking and rejoining of DNA to relieve tension and DNA supercoiling generated in the mitochondrial genome during replication and transcription. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000158106 | RHPN1 | rhophilin, Rho GTPase binding protein 1 | 114822 | NA |
| NA | ENSG00000014164 | ZC3H3 | zinc finger CCCH-type containing 3 | 23144 | NA |
| NA | ENSG00000104518 | GSDMD | gasdermin D | 79792 | Gasdermin D is a member of the gasdermin family. Members of this family appear to play a role in regulation of epithelial proliferation. Gasdermin D has been suggested to act as a tumor suppressor. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000104529 | EEF1D | eukaryotic translation elongation factor 1 delta | 1936 | This gene encodes a subunit of the elongation factor-1 complex, which is responsible for the enzymatic delivery of aminoacyl tRNAs to the ribosome. This subunit, delta, functions as guanine nucleotide exchange factor. It is reported that following HIV-1 infection, this subunit interacts with HIV-1 Tat. This interaction results in repression of translation of host cell proteins and enhanced translation of viral proteins. Several alternatively spliced transcript variants encoding multiple isoforms have been found for this gene. Related pseudogenes have been defined on chromosomes 1, 6, 7, 9, 11, 13, 17, 19. |
| NA | ENSG00000179886 | TIGD5 | tigger transposable element derived 5 | 84948 | The protein encoded by this gene belongs to the tigger subfamily of the pogo superfamily of DNA-mediated transposons in humans. These proteins are related to DNA transposons found in fungi and nematodes, and more distantly to the Tc1 and mariner transposases. They are also very similar to the major mammalian centromere protein B. The exact function of this gene is not known. |
| NA | ENSG00000104524 | PYCRL | pyrroline-5-carboxylate reductase-like | 65263 | NA |
| NA | ENSG00000104522 | TSTA3 | tissue specific transplantation antigen P35B | 7264 | Tissue specific transplantation antigen P35B is a NADP(H)-binding protein. It catalyze the two-step epimerase and the reductase reactions in GDP-D-mannose metabolism, converting GDP-4-keto-6-D-deoxymannose to GDP-L-fucose. GDP-L-fucose is the substrate of several fucosyltransferases involved in the expression of many glycoconjugates, including blood group ABH antigens and developmental adhesion antigens. Mutations in this gene may cause leukocyte adhesion deficiency, type II. |
| NA | ENSG00000183309 | ZNF623 | zinc finger protein 623 | 9831 | NA |
| NA | ENSG00000180900 | SCRIB | scribbled planar cell polarity protein | 23513 | This gene encodes a protein that was identified as being similar to the Drosophila scribble protein. The mammalian protein is involved in tumor suppression pathways. As a scaffold protein involved in cell polarization processes, this protein binds to many other proteins. The encoded protein binds to papillomavirus E6 protein via its PDZ domain and the C-terminus of E6. Two alternatively spliced transcript variants that encode different protein isoforms have been found for this gene. |
| NA | ENSG00000179950 | PUF60 | poly(U) binding splicing factor 60KDa | 22827 | This gene encodes a nucleic acid-binding protein that plays a role in a variety of nuclear processes, including pre-mRNA splicing and transcriptional regulation. The encoded protein forms a complex with the far upstream DNA element (FUSE) and FUSE-binding protein at the myelocytomatosis oncogene (MYC) promoter. This complex represses MYC transcription through the core-TFIIH basal transcription factor. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000185189 | NRBP2 | nuclear receptor binding protein 2 | 340371 | NA |
| TRUE | ENSG00000227184 | NA | NA | NA | NA |
| NA | ENSG00000178209 | PLEC | plectin | 5339 | Plectin is a prominent member of an important family of structurally and in part functionally related proteins, termed plakins or cytolinkers, that are capable of interlinking different elements of the cytoskeleton. Plakins, with their multi-domain structure and enormous size, not only play crucial roles in maintaining cell and tissue integrity and orchestrating dynamic changes in cytoarchitecture and cell shape, but also serve as scaffolding platforms for the assembly, positioning, and regulation of signaling complexes (reviewed in PMID: 9701547, 11854008, and 17499243). Plectin is expressed as several protein isoforms in a wide range of cell types and tissues from a single gene located on chromosome 8 in humans (PMID: 8633055, 8698233). Until 2010, this locus was named plectin 1 (symbol PLEC1 in human; Plec1 in mouse and rat) and the gene product had been referred to as ‘hemidesmosomal protein 1’ or ‘plectin 1, intermediate filament binding 500kDa’. These names were superseded by plectin. The plectin gene locus in mouse on chromosome 15 has been analyzed in detail (PMID: 10556294, 14559777), revealing a genomic exon-intron organization with well over 40 exons spanning over 62 kb and an unusual 5’ transcript complexity of plectin isoforms. Eleven exons (1-1j) have been identified that alternatively splice directly into a common exon 2 which is the first exon to encode plectin’s highly conserved actin binding domain (ABD). Three additional exons (-1, 0a, and 0) splice into an alternative first coding exon (1c), and two additional exons (2alpha and 3alpha) are optionally spliced within the exons encoding the acting binding domain (exons 2-8). Analysis of the human locus has identified eight of the eleven alternative 5’ exons found in mouse and rat (PMID: 14672974); exons 1i, 1j and 1h have not been confirmed in human. Furthermore, isoforms lacking the central rod domain encoded by exon 31 have been detected in mouse (PMID:10556294), rat (PMID: 9177781), and human (PMID: 11441066, 10780662, 20052759). The short alternative amino-terminal sequences encoded by the different first exons direct the targeting of the various isoforms to distinct subcellular locations (PMID: 14559777). As the expression of specific plectin isoforms was found to be dependent on cell type (tissue) and stage of development (PMID: 10556294, 12542521, 17389230) it appears that each cell type (tissue) contains a unique set (proportion and composition) of plectin isoforms, as if custom-made for specific requirements of the particular cells. Concordantly, individual isoforms were found to carry out distinct and specific functions (PMID: 14559777, 12542521, 18541706). In 1996, a number of groups reported that patients suffering from epidermolysis bullosa simplex with muscular dystrophy (EBS-MD) lacked plectin expression in skin and muscle tissues due to defects in the plectin gene (PMID: 8698233, 8941634, 8636409, 8894687, 8696340). Two other subtypes of plectin-related EBS have been described: EBS-pyloric atresia (PA) and EBS-Ogna. For reviews of plectin-related diseases see PMID: 15810881, 19945614. Mutations in the plectin gene related to human diseases should be named based on the position in NM_000445 (variant 1, isoform 1c), unless the mutation is located within one of the other alternative first exons, in which case the position in the respective Reference Sequence should be used. |
| NA | ENSG00000178719 | GRINA | glutamate ionotropic receptor NMDA type subunit associated protein 1 | 2907 | NA |
| NA | ENSG00000178896 | EXOSC4 | exosome component 4 | 54512 | NA |
| NA | ENSG00000197858 | GPAA1 | glycosylphosphatidylinositol anchor attachment 1 | 8733 | Posttranslational glycosylphosphatidylinositol (GPI) anchor attachment serves as a general mechanism for linking proteins to the cell surface membrane. The protein encoded by this gene presumably functions in GPI anchoring at the GPI transfer step. The mRNA transcript is ubiquitously expressed in both fetal and adult tissues. The anchor attachment protein 1 contains an N-terminal signal sequence, 1 cAMP- and cGMP-dependent protein kinase phosphorylation site, 1 leucine zipper pattern, 2 potential N-glycosylation sites, and 8 putative transmembrane domains. |
| NA | ENSG00000179091 | CYC1 | cytochrome c1 | 1537 | This gene encodes a subunit of the cytochrome bc1 complex, which plays an important role in the mitochondrial respiratory chain by transferring electrons from the Rieske iron-sulfur protein to cytochrome c. Mutations in this gene may cause mitochondrial complex III deficiency, nuclear type 6. |
| NA | ENSG00000179526 | SHARPIN | SHANK associated RH domain interactor | 81858 | NA |
| NA | ENSG00000179632 | MAF1 | MAF1 homolog, negative regulator of RNA polymerase III | 84232 | This gene encodes a protein that is similar to Maf1, a Saccharomyces cerevisiae protein highly conserved in eukaryotic cells. Yeast Maf1 is a negative effector of RNA polymerase III (Pol III). It responds to changes in the cellular environment and represses pol III transcription. Biochemical studies identified the initiation factor TFIIIB as a target for Maf1-dependent repression. |
| TRUE | ENSG00000204775 | NA | NA | NA | NA |
| NA | ENSG00000185122 | HSF1 | heat shock transcription factor 1 | 3297 | The product of this gene is a heat-shock transcription factor. Transcription of heat-shock genes is rapidly induced after temperature stress. Hsp90, by itself and/or associated with multichaperone complexes, is a major repressor of this gene. |
| NA | ENSG00000185000 | DGAT1 | diacylglycerol O-acyltransferase 1 | 8694 | This gene encodes an multipass transmembrane protein that functions as a key metabolic enzyme. The encoded protein catalyzes the conversion of diacylglycerol and fatty acyl CoA to triacylglycerol. This enzyme can also transfer acyl CoA to retinol. Activity of this protein may be associated with obesity and other metabolic diseases. |
| NA | ENSG00000185803 | SLC52A2 | solute carrier family 52 member 2 | 79581 | This gene encodes a membrane protein which belongs to the riboflavin transporter family. In humans, riboflavin must be obtained by intestinal absorption because it cannot be synthesized by the body. The water-soluble vitamin riboflavin is processed to the coenzymes flavin mononucleotide (FMN) and flavin adenine dinucleotide (FAD) which then act as intermediaries in many cellular metabolic reactions. Paralogous members of the riboflavin transporter gene family are located on chromosomes 17 and 20. Unlike other members of this family, this gene has higher expression in brain tissue than small intestine. Alternative splicing of this gene results in multiple transcript variants encoding the same protein. Mutations in this gene have been associated with Brown-Vialetto-Van Laere syndrome 2 - an autosomal recessive progressive neurologic disorder characterized by deafness, bulbar dysfunction, and axial and limb hypotonia. |
| NA | ENSG00000182325 | FBXL6 | F-box and leucine-rich repeat protein 6 | 26233 | This gene encodes a member of a family of proteins that are characterized by an F-box motif. The encoded protein also contains leucine-rich repeats. F-box-containing proteins comprise one of the subunits of the SCF (SKP1-cullin-F-box) complex, which functions in phosphorylation-dependent ubiquitination. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000071894 | CPSF1 | cleavage and polyadenylation specific factor 1 | 29894 | Cleavage and polyadenylation specificity factor (CPSF) is a multisubunit complex that plays a central role in 3-prime processing of pre-mRNAs. CPSF recognizes the AAUAAA signal in the pre-mRNA and interacts with other proteins to facilitate both RNA cleavage and poly(A) synthesis. CPSF1 is the largest subunit of the CPSF complex (Murthy and Manley, 1995 [PubMed 7590244]). |
| NA | ENSG00000160948 | VPS28 | VPS28, ESCRT-I subunit | 51160 | This gene encodes a protein subunit of the ESCRT-I complex (endosomal complexes required for transport), which functions in the transport and sorting of proteins into subcellular vesicles. This complex can also be hijacked to facilitate the budding of enveloped viruses from the cell membrane. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000160949 | TONSL | tonsoku-like, DNA repair protein | 4796 | The protein encoded by this gene is thought to be a negative regulator of NF-kappa-B mediated transcription. The encoded protein may bind NF-kappa-B complexes and trap them in the cytoplasm, preventing them from entering the nucleus and interacting with the DNA. Phosphorylation of this protein targets it for degradation by the ubiquitination pathway, which frees the NF-kappa-B complexes to enter the nucleus. |
| NA | ENSG00000187954 | CYHR1 | cysteine/histidine-rich 1 | 50626 | NA |
| NA | ENSG00000167702 | KIFC2 | kinesin family member C2 | 90990 | NA |
| NA | ENSG00000160973 | FOXH1 | forkhead box H1 | 8928 | FOXH1 encodes a human homolog of Xenopus forkhead activin signal transducer-1. FOXH1 protein binds SMAD2 and activates an activin response element via binding the DNA motif TGT(G/T)(T/G)ATT. |
| NA | ENSG00000160972 | PPP1R16A | protein phosphatase 1 regulatory subunit 16A | 84988 | NA |
| NA | ENSG00000167700 | MFSD3 | major facilitator superfamily domain containing 3 | 113655 | NA |
| NA | ENSG00000160957 | RECQL4 | RecQ like helicase 4 | 9401 | The protein encoded by this gene is a DNA helicase that belongs to the RecQ helicase family. DNA helicases unwind double-stranded DNA into single-stranded DNAs and may modulate chromosome segregation. This gene is predominantly expressed in thymus and testis. Mutations in this gene are associated with Rothmund-Thomson, RAPADILINO and Baller-Gerold syndromes. |
| NA | ENSG00000160959 | LRRC14 | leucine rich repeat containing 14 | 9684 | This gene encodes a leucine-rich repeat-containing protein. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000213563 | C8orf82 | chromosome 8 open reading frame 82 | 414919 | NA |
| NA | ENSG00000147799 | ARHGAP39 | Rho GTPase activating protein 39 | 80728 | NA |
| NA | ENSG00000198169 | ZNF251 | zinc finger protein 251 | 90987 | NA |
| NA | ENSG00000196378 | ZNF34 | zinc finger protein 34 | 80778 | NA |
| NA | ENSG00000161016 | RPL8 | ribosomal protein L8 | 6132 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L2P family of ribosomal proteins. It is located in the cytoplasm. In rat, the protein associates with the 5.8S rRNA, very likely participates in the binding of aminoacyl-tRNA, and is a constituent of the elongation factor 2-binding site at the ribosomal subunit interface. Alternatively spliced transcript variants encoding the same protein exist. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000197363 | ZNF517 | zinc finger protein 517 | 340385 | NA |
| NA | ENSG00000147789 | ZNF7 | zinc finger protein 7 | 7553 | NA |
| NA | ENSG00000170619 | COMMD5 | COMM domain containing 5 | 28991 | NA |
| NA | ENSG00000170631 | ZNF16 | zinc finger protein 16 | 7564 | The protein encoded by this gene contains multiple tandem zinc finger motifs. The encoded protein is involved in the differentiation of erythroid and megakaryocytic cells. This gene is located in a cluster of related genes on chromosome 8 encoding zinc finger proteins. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000172785 | CBWD1 | COBW domain containing 1 | 55871 | NA |
| NA | ENSG00000107104 | KANK1 | KN motif and ankyrin repeat domains 1 | 23189 | The protein encoded by this gene belongs to the Kank family of proteins, which contain multiple ankyrin repeat domains. This family member functions in cytoskeleton formation by regulating actin polymerization. This gene is a candidate tumor suppressor for renal cell carcinoma. Mutations in this gene cause cerebral palsy spastic quadriplegic type 2, a central nervous system development disorder. A t(5;9) translocation results in fusion of the platelet-derived growth factor receptor beta gene (PDGFRB) on chromosome 5 with this gene in a myeloproliferative neoplasm featuring severe thrombocythemia. Alternative splicing of this gene results in multiple transcript variants. A related pseudogene has been identified on chromosome 20. |
| NA | ENSG00000080503 | SMARCA2 | SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily a, member 2 | 6595 | The protein encoded by this gene is a member of the SWI/SNF family of proteins and is highly similar to the brahma protein of Drosophila. Members of this family have helicase and ATPase activities and are thought to regulate transcription of certain genes by altering the chromatin structure around those genes. The encoded protein is part of the large ATP-dependent chromatin remodeling complex SNF/SWI, which is required for transcriptional activation of genes normally repressed by chromatin. Alternatively spliced transcript variants encoding different isoforms have been found for this gene, which contains a trinucleotide repeat (CAG) length polymorphism. |
| NA | ENSG00000147852 | VLDLR | very low density lipoprotein receptor | 7436 | The low density lipoprotein receptor (LDLR) gene family consists of cell surface proteins involved in receptor-mediated endocytosis of specific ligands. This gene encodes a lipoprotein receptor that is a member of the LDLR family and plays important roles in VLDL-triglyceride metabolism and the reelin signaling pathway. Mutations in this gene cause VLDLR-associated cerebellar hypoplasia. Alternative splicing generates multiple transcript variants encoding distinct isoforms for this gene. |
| NA | ENSG00000080608 | PUM3 | pumilio RNA binding family member 3 | 9933 | NA |
| NA | ENSG00000080298 | RFX3 | regulatory factor X3 | 5991 | This gene is a member of the regulatory factor X gene family, which encodes transcription factors that contain a highly-conserved winged helix DNA binding domain. The protein encoded by this gene is structurally related to regulatory factors X1, X2, X4, and X5. It is a transcriptional activator that can bind DNA as a monomer or as a heterodimer with other RFX family members. Multiple transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000106688 | SLC1A1 | solute carrier family 1 member 1 | 6505 | This gene encodes a member of the high-affinity glutamate transporters that play an essential role in transporting glutamate across plasma membranes. In brain, these transporters are crucial in terminating the postsynaptic action of the neurotransmitter glutamate, and in maintaining extracellular glutamate concentrations below neurotoxic levels. This transporter also transports aspartate, and mutations in this gene are thought to cause dicarboxylicamino aciduria, also known as glutamate-aspartate transport defect. |
| NA | ENSG00000106686 | SPATA6L | spermatogenesis associated 6 like | 55064 | NA |
| NA | ENSG00000205808 | PLPP6 | phospholipid phosphatase 6 | 403313 | NA |
| NA | ENSG00000106993 | CDC37L1 | cell division cycle 37 like 1 | 55664 | CDC37L1 is a cytoplasmic phosphoprotein that exists in complex with HSP90 (HSPCA; MIM 140571) as well as several other proteins involved in HSP90-mediated protein folding (Scholz et al., 2001 [PubMed 11413142]). |
| NA | ENSG00000147853 | AK3 | adenylate kinase 3 | 50808 | The protein encoded by this gene is a GTP:ATP phosphotransferase that is found in the mitochondrial matrix. Several transcript variants encoding a few different isoforms have been found for this gene. |
| NA | ENSG00000120158 | RCL1 | RNA terminal phosphate cyclase like 1 | 10171 | NA |
| NA | ENSG00000107020 | PLGRKT | plasminogen receptor, C-terminal lysine transmembrane protein | 55848 | NA |
| NA | ENSG00000107036 | RIC1 | RIC1 homolog, RAB6A GEF complex partner 1 | 57589 | NA |
| NA | ENSG00000099219 | ERMP1 | endoplasmic reticulum metallopeptidase 1 | 79956 | NA |
| NA | ENSG00000183354 | KIAA2026 | KIAA2026 | 158358 | NA |
| NA | ENSG00000137040 | RANBP6 | RAN binding protein 6 | 26953 | NA |
| NA | ENSG00000147854 | UHRF2 | ubiquitin like with PHD and ring finger domains 2 | 115426 | This gene encodes a nuclear protein which is involved in cell-cycle regulation. The encoded protein is a ubiquitin-ligase capable of ubiquinating PCNP (PEST-containing nuclear protein), and together they may play a role in tumorigenesis. The encoded protein contains an NIRF_N domain, a PHD finger, a set- and ring-associated (SRA) domain, and a RING finger domain and several of these domains have been shown to be essential for the regulation of cell proliferation. This protein may also have a role in intranuclear degradation of polyglutamine aggregates. Alternative splicing results in multiple transcript variants some of which are non-protein coding. |
| NA | ENSG00000178445 | GLDC | glycine decarboxylase | 2731 | Degradation of glycine is brought about by the glycine cleavage system, which is composed of four mitochondrial protein components: P protein (a pyridoxal phosphate-dependent glycine decarboxylase), H protein (a lipoic acid-containing protein), T protein (a tetrahydrofolate-requiring enzyme), and L protein (a lipoamide dehydrogenase). The protein encoded by this gene is the P protein, which binds to glycine and enables the methylamine group from glycine to be transferred to the T protein. Defects in this gene are a cause of nonketotic hyperglycinemia (NKH). |
| NA | ENSG00000107077 | KDM4C | lysine demethylase 4C | 23081 | This gene is a member of the Jumonji domain 2 (JMJD2) family. The encoded protein is a trimethylation-specific demethylase, and converts specific trimethylated histone residues to the dimethylated form. This enzymatic action regulates gene expression and chromosome segregation. Chromosomal aberrations and changes in expression of this gene may be found in tumor cells. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000137038 | TMEM261 | transmembrane protein 261 | 90871 | NA |
| NA | ENSG00000153707 | PTPRD | protein tyrosine phosphatase, receptor type D | 5789 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This PTP contains an extracellular region, a single transmembrane segment and two tandem intracytoplasmic catalytic domains, and thus represents a receptor-type PTP. The extracellular region of this protein is composed of three Ig-like and eight fibronectin type III-like domains. Studies of the similar genes in chicken and fly suggest the role of this PTP is in promoting neurite growth, and regulating neurons axon guidance. Multiple alternatively spliced transcript variants of this gene have been reported. A related pseudogene has been identified on chromosome 5. |
| NA | ENSG00000107186 | MPDZ | multiple PDZ domain crumbs cell polarity complex component | 8777 | The protein encoded by this gene has multiple PDZ domains, which are hallmarks of protein-protein interactions. The encoded protein is known to interact with the HTR2C receptor and may cause it to clump at the cell surface. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000147862 | NFIB | nuclear factor I/B | 4781 | NA |
| NA | ENSG00000175893 | ZDHHC21 | zinc finger DHHC-type containing 21 | 340481 | NA |
| NA | ENSG00000164946 | FREM1 | FRAS1 related extracellular matrix 1 | 158326 | This gene encodes a basement membrane protein that may play a role in craniofacial and renal development. Mutations in this gene have been associated with bifid nose with or without anorectal and renal anomalies. Alternatively spliced transcript variants encoding different isoforms have been described. PubMed ID 19940113 describes one such variant that initiates transcription within a distinct, internal exon; the resulting shorter isoform (named Toll-like/interleukin-1 receptor regulator, TILRR) is suggested to be a co-receptor of the interleukin 1 receptor family and may regulate receptor function and Toll-like receptor/interleukin 1 receptor signal transduction, contributing to the control of inflammatory response activation. |
| NA | ENSG00000155158 | TTC39B | tetratricopeptide repeat domain 39B | 158219 | NA |
| NA | ENSG00000164975 | SNAPC3 | small nuclear RNA activating complex polypeptide 3 | 6619 | NA |
| NA | ENSG00000164985 | PSIP1 | PC4 and SFRS1 interacting protein 1 | 11168 | NA |
| NA | ENSG00000164989 | CCDC171 | coiled-coil domain containing 171 | 203238 | NA |
| NA | ENSG00000173068 | BNC2 | basonuclin 2 | 54796 | NA |
| NA | ENSG00000044459 | CNTLN | centlein | 54875 | NA |
| NA | ENSG00000107295 | SH3GL2 | SH3-domain GRB2-like 2 | 6456 | NA |
| NA | ENSG00000178031 | ADAMTSL1 | ADAMTS like 1 | 92949 | This gene encodes a secreted protein and member of the ADAMTS (a disintegrin and metalloproteinase with thrombospondin motif) family. This protein lacks the metalloproteinase and disintegrin-like domains, which are typical of the ADAMTS family, but contains other ADAMTS domains, including the thrombospondin type 1 motif. This protein may have important functions in the extracellular matrix. Alternative splicing results in multiple transcript variants encoding distinct proteins. |
| NA | ENSG00000155876 | RRAGA | Ras related GTP binding A | 10670 | NA |
| NA | ENSG00000147874 | HAUS6 | HAUS augmin like complex subunit 6 | 54801 | The protein encoded by this gene is a subunit of the augmin complex. The augmin complex plays a role in microtubule attachment to the kinetochore and central spindle formation. This protein may have a role in efficient chromosome congression and segregation by promoting microtubule-dependent microtubule amplification. Pseudogenes of this gene are located on chromosomes 7 and 20. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000147872 | PLIN2 | perilipin 2 | 123 | The protein encoded by this gene belongs to the perilipin family, members of which coat intracellular lipid storage droplets. This protein is associated with the lipid globule surface membrane material, and maybe involved in development and maintenance of adipose tissue. However, it is not restricted to adipocytes as previously thought, but is found in a wide range of cultured cell lines, including fibroblasts, endothelial and epithelial cells, and tissues, such as lactating mammary gland, adrenal cortex, Sertoli and Leydig cells, and hepatocytes in alcoholic liver cirrhosis, suggesting that it may serve as a marker of lipid accumulation in diverse cell types and diseases. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000137145 | DENND4C | DENN domain containing 4C | 55667 | NA |
| NA | ENSG00000155886 | SLC24A2 | solute carrier family 24 member 2 | 25769 | This gene encodes a member of the calcium/cation antiporter superfamily of transport proteins. The encoded protein belongs to the SLC24 branch of exchangers, which can mediate the extrusion of one Ca2+ ion and one K+ ion in exchange for four Na+ ions. This family member is a retinal cone/brain exchanger that can mediate a light-induced decrease in free Ca2+ concentration. This protein may also play a neuroprotective role during ischemic brain injury. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000171843 | MLLT3 | myeloid/lymphoid or mixed-lineage leukemia; translocated to, 3 | 4300 | NA |
| NA | ENSG00000188352 | FOCAD | focadhesin | 54914 | NA |
| NA | ENSG00000198642 | KLHL9 | kelch like family member 9 | 55958 | NA |
| NA | ENSG00000099810 | MTAP | methylthioadenosine phosphorylase | 4507 | This gene encodes an enzyme that plays a major role in polyamine metabolism and is important for the salvage of both adenine and methionine. The encoded enzyme is deficient in many cancers because this gene and the tumor suppressor p16 gene are co-deleted. Multiple alternatively spliced transcript variants have been described for this gene, but their full-length natures remain unknown. |
| NA | ENSG00000176399 | DMRTA1 | DMRT like family A1 | 63951 | NA |
| NA | ENSG00000107105 | ELAVL2 | ELAV like neuron-specific RNA binding protein 2 | 1993 | The protein encoded by this gene is a neural-specific RNA-binding protein that is known to bind to several 3’ UTRs, including its own and also that of FOS and ID. The encoded protein may recognize a GAAA motif in the RNA. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000198680 | TUSC1 | tumor suppressor candidate 1 | 286319 | This gene is located within the region of chromosome 9p that harbors tumor suppressor genes critical in carcinogenesis. It is an intronless gene which is downregulated in non-small-cell lung cancer and small-cell lung cancer cell lines, suggesting that it may play a role in lung tumorigenesis. |
| NA | ENSG00000120159 | CAAP1 | caspase activity and apoptosis inhibitor 1 | 79886 | NA |
| NA | ENSG00000137055 | PLAA | phospholipase A2 activating protein | 9373 | NA |
| NA | ENSG00000096872 | IFT74 | intraflagellar transport 74 | 80173 | NA |
| NA | ENSG00000120156 | TEK | TEK receptor tyrosine kinase | 7010 | This gene encodes a receptor that belongs to the protein tyrosine kinase Tie2 family. The encoded protein possesses a unique extracellular region that contains two immunoglobulin-like domains, three epidermal growth factor (EGF)-like domains and three fibronectin type III repeats. The ligand angiopoietin-1 binds to this receptor and mediates a signaling pathway that functions in embryonic vascular development. Mutations in this gene are associated with inherited venous malformations of the skin and mucous membranes. Alternative splicing results in multiple transcript variants. Additional alternatively spliced transcript variants of this gene have been described, but their full-length nature is not known. |
| NA | ENSG00000147894 | C9orf72 | chromosome 9 open reading frame 72 | 203228 | The protein encoded by this gene plays an important role in the regulation of endosomal trafficking, and has been shown to interact with Rab proteins that are involved in autophagy and endocytic transport. Expansion of a hexanucleotide repeat in non-coding sequence between alternate 5’ exons in transcripts from this gene is associated with 9p-linked ALS (amyotrophic lateral sclerosis) and FTD (frontotemporal dementia) (PMID: 21944778, 21944779). Studies suggest that hexanucleotide expansions could result in the selective stabilization of repeat-containing pre-mRNA, and the accumulation of insoluble dipeptide repeat protein aggregates that could be pathogenic in FTD-ALS patients (PMID: 23393093). Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000122729 | ACO1 | aconitase 1 | 48 | The protein encoded by this gene is a bifunctional, cytosolic protein that functions as an essential enzyme in the TCA cycle and interacts with mRNA to control the levels of iron inside cells. When cellular iron levels are high, this protein binds to a 4Fe-4S cluster and functions as an aconitase. Aconitases are iron-sulfur proteins that function to catalyze the conversion of citrate to isocitrate. When cellular iron levels are low, the protein binds to iron-responsive elements (IREs), which are stem-loop structures found in the 5’ UTR of ferritin mRNA, and in the 3’ UTR of transferrin receptor mRNA. When the protein binds to IRE, it results in repression of translation of ferritin mRNA, and inhibition of degradation of the otherwise rapidly degraded transferrin receptor mRNA. The encoded protein has been identified as a moonlighting protein based on its ability to perform mechanistically distinct functions. Alternative splicing results in multiple transcript variants |
| NA | ENSG00000107201 | DDX58 | DEXD/H-box helicase 58 | 23586 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases which are implicated in a number of cellular processes involving RNA binding and alteration of RNA secondary structure. This gene encodes a protein containing RNA helicase-DEAD box protein motifs and a caspase recruitment domain (CARD). It is involved in viral double-stranded (ds) RNA recognition and the regulation of immune response. |
| NA | ENSG00000197579 | TOPORS | topoisomerase I binding, arginine/serine-rich, E3 ubiquitin protein ligase | 10210 | This gene encodes a nuclear protein which is serine and arginine rich, and contains a RING-type zinc finger domain. It is highly expressed in the testis, and functions as an ubiquitin-protein E3 ligase. Mutations in this gene are associated with retinitis pigmentosa type 31. Alternatively spliced transcript variants, encoding different isoforms, have been observed for this locus. |
| NA | ENSG00000165264 | NDUFB6 | NADH:ubiquinone oxidoreductase subunit B6 | 4712 | The protein encoded by this gene is a subunit of the multisubunit NADH:ubiquinone oxidoreductase (complex I). Mammalian complex I is composed of 45 different subunits. It locates at the mitochondrial inner membrane. This protein has NADH dehydrogenase activity and oxidoreductase activity. It transfers electrons from NADH to the respiratory chain. The immediate electron acceptor for the enzyme is believed to be ubiquinone. Alternative splicing occurs at this locus and three transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000137074 | APTX | aprataxin | 54840 | This gene encodes a member of the histidine triad (HIT) superfamily. The encoded protein may play a role in single-stranded DNA repair through its nucleotide-binding activity and its diadenosine polyphosphate hydrolase activity. Mutations in this gene have been associated with ataxia-ocular apraxia. Alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000086061 | DNAJA1 | DnaJ heat shock protein family (Hsp40) member A1 | 3301 | This gene encodes a member of the DnaJ family of proteins, which act as heat shock protein 70 cochaperones. Heat shock proteins facilitate protein folding, trafficking, prevention of aggregation, and proteolytic degradation. Members of this family are characterized by a highly conserved N-terminal J domain, a glycine/phenylalanine-rich region, four CxxCxGxG zinc finger repeats, and a C-terminal substrate-binding domain. The J domain mediates the interaction with heat shock protein 70 to recruit substrates and regulate ATP hydrolysis activity. In humans, this gene has been implicated in positive regulation of virus replication through co-option by the influenza A virus. Several pseudogenes of this gene are found on other chromosomes. |
| NA | ENSG00000122692 | SMU1 | smu-1 suppressor of mec-8 and unc-52 homolog (C. elegans) | 55234 | NA |
| NA | ENSG00000086062 | B4GALT1 | beta-1,4-galactosyltransferase 1 | 2683 | This gene is one of seven beta-1,4-galactosyltransferase (beta4GalT) genes. They encode type II membrane-bound glycoproteins that appear to have exclusive specificity for the donor substrate UDP-galactose; all transfer galactose in a beta1,4 linkage to similar acceptor sugars: GlcNAc, Glc, and Xyl. Each beta4GalT has a distinct function in the biosynthesis of different glycoconjugates and saccharide structures. As type II membrane proteins, they have an N-terminal hydrophobic signal sequence that directs the protein to the Golgi apparatus and which then remains uncleaved to function as a transmembrane anchor. By sequence similarity, the beta4GalTs form four groups: beta4GalT1 and beta4GalT2, beta4GalT3 and beta4GalT4, beta4GalT5 and beta4GalT6, and beta4GalT7. This gene is unique among the beta4GalT genes because it encodes an enzyme that participates both in glycoconjugate and lactose biosynthesis. For the first activity, the enzyme adds galactose to N-acetylglucosamine residues that are either monosaccharides or the nonreducing ends of glycoprotein carbohydrate chains. The second activity is restricted to lactating mammary tissues where the enzyme forms a heterodimer with alpha-lactalbumin to catalyze UDP-galactose + D-glucose <=> UDP + lactose. The two enzymatic forms result from alternate transcription initiation sites and post-translational processing. Two transcripts, which differ only at the 5’ end, with approximate lengths of 4.1 kb and 3.9 kb encode the same protein. The longer transcript encodes the type II membrane-bound, trans-Golgi resident protein involved in glycoconjugate biosynthesis. The shorter transcript encodes a protein which is cleaved to form the soluble lactose synthase. |
| NA | ENSG00000107262 | BAG1 | BCL2 associated athanogene 1 | 573 | The oncogene BCL2 is a membrane protein that blocks a step in a pathway leading to apoptosis or programmed cell death. The protein encoded by this gene binds to BCL2 and is referred to as BCL2-associated athanogene. It enhances the anti-apoptotic effects of BCL2 and represents a link between growth factor receptors and anti-apoptotic mechanisms. Multiple protein isoforms are encoded by this mRNA through the use of a non-AUG (CUG) initiation codon, and three alternative downstream AUG initiation codons. A related pseudogene has been defined on chromosome X. |
| NA | ENSG00000086102 | NFX1 | nuclear transcription factor, X-box binding 1 | 4799 | MHC class II gene expression is controlled primarily at the transcriptional level by transcription factors that bind to the X and Y boxes, two highly conserved elements in the proximal promoter of MHC class II genes. The protein encoded by this gene is a transcriptional repressor capable of binding to the conserved X box motif of HLA-DRA and other MHC class II genes in vitro. The protein may play a role in regulating the duration of an inflammatory response by limiting the period in which class II MHC molecules are induced by IFN-gamma. Three alternative splice variants, each of which encodes a different isoform, have been identified. |
| NA | ENSG00000165272 | AQP3 | aquaporin 3 (Gill blood group) | 360 | This gene encodes the water channel protein aquaporin 3. Aquaporins are a family of small integral membrane proteins related to the major intrinsic protein, also known as aquaporin 0. Aquaporin 3 is localized at the basal lateral membranes of collecting duct cells in the kidney. In addition to its water channel function, aquaporin 3 has been found to facilitate the transport of nonionic small solutes such as urea and glycerol, but to a smaller degree. It has been suggested that water channels can be functionally heterogeneous and possess water and solute permeation mechanisms. Alternative splicing of this gene results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000165271 | NOL6 | nucleolar protein 6 | 65083 | The nucleolus is a dense subnuclear membraneless organelle that assembles around clusters of rRNA genes and functions in ribosome biogenesis. This gene encodes a nucleolar RNA-associated protein that is highly conserved between species. RNase treatment of permeabilized cells indicates that the nucleolar localization is RNA dependent. Further studies suggest that the protein is associated with ribosome biogenesis through an interaction with pre-rRNA primary transcripts. Alternative splicing has been observed at this locus and two splice variants encoding distinct isoforms have been identified. |
| NA | ENSG00000230453 | ANKRD18B | ankyrin repeat domain 18B | 441459 | NA |
| NA | ENSG00000137073 | UBAP2 | ubiquitin associated protein 2 | 55833 | The protein encoded by this gene contains a UBA (ubiquitin associated) domain, which is characteristic of proteins that function in the ubiquitination pathway. This gene may show increased expression in the adrenal gland and lymphatic tissues. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000198876 | DCAF12 | DDB1 and CUL4 associated factor 12 | 25853 | This gene encodes a WD repeat-containing protein that interacts with the COP9 signalosome, a macromolecular complex that interacts with cullin-RING E3 ligases and regulates their activity by hydrolyzing cullin-Nedd8 conjugates. |
| NA | ENSG00000165006 | UBAP1 | ubiquitin associated protein 1 | 51271 | This gene is a member of the UBA domain family, whose members include proteins having connections to ubiquitin and the ubiquitination pathway. The ubiquitin associated domain is thought to be a non-covalent ubiquitin binding domain consisting of a compact three helix bundle. This particular protein originates from a gene locus in a refined region on chromosome 9 undergoing loss of heterozygosity in nasopharyngeal carcinoma (NPC). Taking into account its cytogenetic location, this UBA domain family member is being studies as a putative target for mutation in nasopharyngeal carcinomas. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000186638 | KIF24 | kinesin family member 24 | 347240 | Kinesins, such as KIF24, are microtubule-dependent ATPases that function as molecular motors. They play important roles in intracellular vesicle transport and cell division (summary by Venturelli et al., 2010 [PubMed 20670673]). |
| NA | ENSG00000164978 | NUDT2 | nudix hydrolase 2 | 318 | This gene encodes a member of the MutT family of nucleotide pyrophosphatases, a subset of the larger NUDIX hydrolase family. The gene product possesses a modification of the MutT sequence motif found in certain nucleotide pyrophosphatases. The enzyme asymmetrically hydrolyzes Ap4A to yield AMP and ATP and is responsible for maintaining the intracellular level of the dinucleotide Ap4A, the function of which has yet to be established. This gene may be a candidate tumor suppressor gene. Alternative splicing has been observed at this locus and four transcript variants, all encoding the same protein, have been identified. |
| NA | ENSG00000164976 | KIAA1161 | KIAA1161 | 57462 | NA |
| NA | ENSG00000164972 | C9orf24 | chromosome 9 open reading frame 24 | 84688 | This gene encodes a nuclear- or perinuclear-localized protein with no predicted domains or similarity to other known proteins. Expression of this gene is induced during the differentiation of bronchial epithelial cells, and the encoded protein may play a role in ciliogenesis. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000164970 | FAM219A | family with sequence similarity 219 member A | 203259 | The protein encoded by this gene has homologs that have been identified in mouse, macaque, etc organisms. Multiple alternatively spliced transcript variants that encode different protein isoforms have been described for this gene. |
| NA | ENSG00000168913 | ENHO | energy homeostasis associated | 375704 | NA |
| NA | ENSG00000164967 | RPP25L | ribonuclease P/MRP 25kDa subunit-like | 138716 | This gene encodes a protein that appears to belong to a family of evolutionarily related proteins (DUF78), that may share one or more domains in common. Members of this family are small archaebacterial proteins with no known function. Alternative splicing has been observed at this locus and two variants, both encoding the same protein, have been identified. |
| NA | ENSG00000137100 | DCTN3 | dynactin subunit 3 | 11258 | This gene encodes the smallest subunit of dynactin, a macromolecular complex consisting of 10 subunits ranging in size from 22 to 150 kD. Dynactin binds to both microtubules and cytoplasmic dynein. It is involved in a diverse array of cellular functions, including ER-to-Golgi transport, the centripetal movement of lysosomes and endosomes, spindle formation, cytokinesis, chromosome movement, nuclear positioning, and axonogenesis. This subunit, like most other dynactin subunits, exists only as a part of the dynactin complex. It is primarily an alpha-helical protein with very little coiled coil, and binds directly to the largest subunit (p150) of dynactin. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000213930 | GALT | galactose-1-phosphate uridylyltransferase | 2592 | Galactose-1-phosphate uridyl transferase (GALT) catalyzes the second step of the Leloir pathway of galactose metabolism, namely the conversion of UDP-glucose + galactose-1-phosphate to glucose-1-phosphate + UDP-galactose. The absence of this enzyme results in classic galactosemia in humans and can be fatal in the newborn period if lactose is not removed from the diet. The pathophysiology of galactosemia has not been clearly defined. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137070 | IL11RA | interleukin 11 receptor subunit alpha | 3590 | Interleukin 11 is a stromal cell-derived cytokine that belongs to a family of pleiotropic and redundant cytokines that use the gp130 transducing subunit in their high affinity receptors. This gene encodes the IL-11 receptor, which is a member of the hematopoietic cytokine receptor family. This particular receptor is very similar to ciliary neurotrophic factor, since both contain an extracellular region with a 2-domain structure composed of an immunoglobulin-like domain and a cytokine receptor-like domain. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000187186 | RP11-195F19.5 | NA | ENSG00000187186 | NA |
| NA | ENSG00000165280 | VCP | valosin containing protein | 7415 | The protein encoded by this gene is a member of a family that includes putative ATP-binding proteins involved in vesicle transport and fusion, 26S proteasome function, and assembly of peroxisomes. This protein, as a structural protein, is associated with clathrin, and heat-shock protein Hsc70, to form a complex. It has been implicated in a number of cellular events that are regulated during mitosis, including homotypic membrane fusion, spindle pole body function, and ubiquitin-dependent protein degradation. |
| NA | ENSG00000221829 | FANCG | Fanconi anemia complementation group G | 2189 | The Fanconi anemia complementation group (FANC) currently includes FANCA, FANCB, FANCC, FANCD1 (also called BRCA2), FANCD2, FANCE, FANCF, FANCG, FANCI, FANCJ (also called BRIP1), FANCL, FANCM and FANCN (also called PALB2). The previously defined group FANCH is the same as FANCA. Fanconi anemia is a genetically heterogeneous recessive disorder characterized by cytogenetic instability, hypersensitivity to DNA crosslinking agents, increased chromosomal breakage, and defective DNA repair. The members of the Fanconi anemia complementation group do not share sequence similarity; they are related by their assembly into a common nuclear protein complex. This gene encodes the protein for complementation group G. |
| NA | ENSG00000165282 | PIGO | phosphatidylinositol glycan anchor biosynthesis class O | 84720 | This gene encodes a protein that is involved in glycosylphosphatidylinositol (GPI)-anchor biosynthesis. The GPI-anchor is a glycolipid which contains three mannose molecules in its core backbone. The GPI-anchor is found on many blood cells and serves to anchor proteins to the cell surface. This protein is involved in the transfer of ethanolaminephosphate (EtNP) to the third mannose in GPI. At least three alternatively spliced transcripts encoding two distinct isoforms have been found for this gene. |
| NA | ENSG00000165283 | STOML2 | stomatin like 2 | 30968 | NA |
| NA | ENSG00000005238 | FAM214B | family with sequence similarity 214 member B | 80256 | NA |
| NA | ENSG00000198722 | UNC13B | unc-13 homolog B (C. elegans) | 10497 | This gene is expressed in the kidney cortical epithelial cells and is upregulated by hyperglycemia. The encoded protein shares a high level of similarity to the rat homolog, and contains 3 C2 domains and a diacylglycerol-binding C1 domain. Hyperglycemia increases the levels of diacylglycerol, which has been shown to induce apoptosis in cells transfected with this gene and thus contribute to the renal cell complications of hyperglycemia. Studies in other species also indicate a role for this protein in the priming step of synaptic vesicle exocytosis. |
| NA | ENSG00000107140 | TESK1 | testis-specific kinase 1 | 7016 | This gene product is a serine/threonine protein kinase that contains an N-terminal protein kinase domain and a C-terminal proline-rich domain. Its protein kinase domain is most closely related to those of the LIM motif-containing protein kinases (LIMKs). The encoded protein can phosphorylate myelin basic protein and histone in vitro. The testicular germ cell-specific expression and developmental pattern of expression of the mouse gene suggests that this gene plays an important role at and after the meiotic phase of spermatogenesis. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000137101 | CD72 | CD72 molecule | 971 | NA |
| NA | ENSG00000137078 | SIT1 | signaling threshold regulating transmembrane adaptor 1 | 27240 | NA |
| NA | ENSG00000159884 | CCDC107 | coiled-coil domain containing 107 | 203260 | This gene encodes a membrane protein which contains a coiled-coil domain in the central region. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137135 | ARHGEF39 | Rho guanine nucleotide exchange factor 39 | 84904 | NA |
| NA | ENSG00000198467 | TPM2 | tropomyosin 2 (beta) | 7169 | This gene encodes beta-tropomyosin, a member of the actin filament binding protein family, and mainly expressed in slow, type 1 muscle fibers. Mutations in this gene can alter the expression of other sarcomeric tropomyosin proteins, and cause cap disease, nemaline myopathy and distal arthrogryposis syndromes. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000137076 | TLN1 | talin 1 | 7094 | This gene encodes a cytoskeletal protein that is concentrated in areas of cell-substratum and cell-cell contacts. The encoded protein plays a significant role in the assembly of actin filaments and in spreading and migration of various cell types, including fibroblasts and osteoclasts. It codistributes with integrins in the cell surface membrane in order to assist in the attachment of adherent cells to extracellular matrices and of lymphocytes to other cells. The N-terminus of this protein contains elements for localization to cell-extracellular matrix junctions. The C-terminus contains binding sites for proteins such as beta-1-integrin, actin, and vinculin. |
| NA | ENSG00000107175 | CREB3 | cAMP responsive element binding protein 3 | 10488 | This gene encodes a transcription factor that is a member of the leucine zipper family of DNA binding proteins. This protein binds to the cAMP-response element and regulates cell proliferation. The protein interacts with host cell factor C1, which also associates with the herpes simplex virus (HSV) protein VP16 that induces transcription of HSV immediate-early genes. This protein and VP16 both bind to the same site on host cell factor C1. It is thought that the interaction between this protein and host cell factor C1 plays a role in the establishment of latency during HSV infection. This protein also plays a role in leukocyte migration, tumor suppression, and endoplasmic reticulum stress-associated protein degradation. Additional transcript variants have been identified, but their biological validity has not been determined. |
| NA | ENSG00000070610 | GBA2 | glucosylceramidase beta 2 | 57704 | This gene encodes a microsomal beta-glucosidase that catalyzes the hydrolysis of bile acid 3-O-glucosides as endogenous compounds. Studies to determine subcellular localization of this protein in the liver indicated that the enzyme was mainly enriched in the microsomal fraction where it appeared to be confined to the endoplasmic reticulum. This putative transmembrane protein is thought to play a role in carbohydrate transport and metabolism. |
| NA | ENSG00000107185 | RGP1 | RGP1 homolog, RAB6A GEF complex partner 1 | 9827 | NA |
| NA | ENSG00000159899 | NPR2 | natriuretic peptide receptor 2 | 4882 | This gene encodes natriuretic peptide receptor B, one of two integral membrane receptors for natriuretic peptides. Both NPR1 and NPR2 contain five functional domains: an extracellular ligand-binding domain, a single membrane-spanning region, and intracellularly a protein kinase homology domain, a helical hinge region involved in oligomerization, and a carboxyl-terminal guanylyl cyclase catalytic domain. The protein is the primary receptor for C-type natriuretic peptide (CNP), which upon ligand binding exhibits greatly increased guanylyl cyclase activity. Mutations in this gene are the cause of acromesomelic dysplasia Maroteaux type. |
| NA | ENSG00000137133 | HINT2 | histidine triad nucleotide binding protein 2 | 84681 | Histidine triad proteins, such as HINT2, are nucleotide hydrolases and transferases that act on the alpha-phosphate of ribonucleotides (Brenner, 2002 [PubMed 12119013]). |
| NA | ENSG00000137103 | TMEM8B | transmembrane protein 8B | 51754 | NA |
| NA | ENSG00000122707 | RECK | reversion inducing cysteine rich protein with kazal motifs | 8434 | The protein encoded by this gene is a cysteine-rich, extracellular protein with protease inhibitor-like domains whose expression is suppressed strongly in many tumors and cells transformed by various kinds of oncogenes. In normal cells, this membrane-anchored glycoprotein may serve as a negative regulator for matrix metalloproteinase-9, a key enzyme involved in tumor invasion and metastasis. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000122694 | GLIPR2 | GLI pathogenesis related 2 | 152007 | NA |
| NA | ENSG00000122705 | CLTA | clathrin light chain A | 1211 | Clathrin is a large, soluble protein composed of heavy and light chains. It functions as the main structural component of the lattice-type cytoplasmic face of coated pits and vesicles which entrap specific macromolecules during receptor-mediated endocytosis. This gene encodes one of two clathrin light chain proteins which are believed to function as regulatory elements. Alternative splicing results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 8 and 12. |
| NA | ENSG00000159921 | GNE | glucosamine (UDP-N-acetyl)-2-epimerase/N-acetylmannosamine kinase | 10020 | The protein encoded by this gene is a bifunctional enzyme that initiates and regulates the biosynthesis of N-acetylneuraminic acid (NeuAc), a precursor of sialic acids. It is a rate-limiting enzyme in the sialic acid biosynthetic pathway. Sialic acid modification of cell surface molecules is crucial for their function in many biologic processes, including cell adhesion and signal transduction. Differential sialylation of cell surface molecules is also implicated in the tumorigenicity and metastatic behavior of malignant cells. Mutations in this gene are associated with sialuria, autosomal recessive inclusion body myopathy, and Nonaka myopathy. Alternative splicing of this gene results in transcript variants encoding different isoforms. |
| NA | ENSG00000137075 | RNF38 | ring finger protein 38 | 152006 | This gene encodes a protein with a coiled-coil motif and a RING-H2 motif (C3H2C2) at its carboxy-terminus. The RING motif is a zinc-binding domain found in a large set of proteins playing roles in diverse cellular processes including oncogenesis, development, signal transduction, and apoptosis. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165304 | MELK | maternal embryonic leucine zipper kinase | 9833 | NA |
| NA | ENSG00000147905 | ZCCHC7 | zinc finger CCHC-type containing 7 | 84186 | NA |
| NA | ENSG00000168795 | ZBTB5 | zinc finger and BTB domain containing 5 | 9925 | NA |
| NA | ENSG00000137054 | POLR1E | polymerase (RNA) I subunit E | 64425 | NA |
| NA | ENSG00000147912 | FBXO10 | F-box protein 10 | 26267 | Members of the F-box protein family, such as FBXO10, are characterized by an approximately 40-amino acid F-box motif. SCF complexes, formed by SKP1 (MIM 601434), cullin (see CUL1; MIM 603134), and F-box proteins, act as protein-ubiquitin ligases. F-box proteins interact with SKP1 through the F box, and they interact with ubiquitination targets through other protein interaction domains (Jin et al., 2004 [PubMed 15520277]). |
| NA | ENSG00000175768 | TOMM5 | translocase of outer mitochondrial membrane 5 | 401505 | NA |
| NA | ENSG00000165275 | TRMT10B | tRNA methyltransferase 10B | 158234 | NA |
| NA | ENSG00000107371 | EXOSC3 | exosome component 3 | 51010 | This gene encodes a non-catalytic component of the human exosome, a complex with 3’-5’ exoribonuclease activity that plays a role in numerous RNA processing and degradation activities. Related pseudogenes of this gene are found on chromosome 19 and 21. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000122696 | SLC25A51 | solute carrier family 25 member 51 | 92014 | NA |
| NA | ENSG00000107338 | SHB | Src homology 2 domain containing adaptor protein B | 6461 | NA |
| NA | ENSG00000137124 | ALDH1B1 | aldehyde dehydrogenase 1 family member B1 | 219 | This protein belongs to the aldehyde dehydrogenases family of proteins. Aldehyde dehydrogenase is the second enzyme of the major oxidative pathway of alcohol metabolism. This gene does not contain introns in the coding sequence. The variation of this locus may affect the development of alcohol-related problems. |
| NA | ENSG00000137142 | IGFBPL1 | insulin like growth factor binding protein-like 1 | 347252 | NA |
| NA | ENSG00000180071 | ANKRD18A | ankyrin repeat domain 18A | 253650 | NA |
| TRUE | ENSG00000196409 | NA | NA | NA | NA |
| NA | ENSG00000215126 | CBWD6 | COBW domain containing 6 | 644019 | NA |
| NA | ENSG00000215126 | CBWD5 | COBW domain containing 5 | 220869 | NA |
| NA | ENSG00000204790 | BX255923.2 | NA | ENSG00000204790 | NA |
| NA | ENSG00000147996 | CBWD5 | COBW domain containing 5 | 220869 | NA |
| NA | ENSG00000196873 | CBWD3 | COBW domain containing 3 | 445571 | NA |
| NA | ENSG00000196873 | CBWD5 | COBW domain containing 5 | 220869 | NA |
| NA | ENSG00000107242 | PIP5K1B | phosphatidylinositol-4-phosphate 5-kinase, type I, beta | 8395 | NA |
| NA | ENSG00000187866 | FAM122A | family with sequence similarity 122A | ENSG00000187866 | NA |
| NA | ENSG00000165060 | FXN | frataxin | 2395 | This nuclear gene encodes a mitochondrial protein which belongs to FRATAXIN family. The protein functions in regulating mitochondrial iron transport and respiration. The expansion of intronic trinucleotide repeat GAA results in Friedreich ataxia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000119139 | TJP2 | tight junction protein 2 | 9414 | This gene encodes a zonula occluden that is a member of the membrane-associated guanylate kinase homolog family. The encoded protein functions as a component of the tight junction barrier in epithelial and endothelial cells and is necessary for proper assembly of tight junctions. Mutations in this gene have been identified in patients with hypercholanemia, and genomic duplication of a 270 kb region including this gene causes autosomal dominant deafness-51. Alternatively spliced transcripts encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000135063 | FAM189A2 | family with sequence similarity 189 member A2 | 9413 | NA |
| NA | ENSG00000188647 | PTAR1 | protein prenyltransferase alpha subunit repeat containing 1 | 375743 | NA |
| NA | ENSG00000204711 | C9orf135 | chromosome 9 open reading frame 135 | 138255 | NA |
| NA | ENSG00000165072 | MAMDC2 | MAM domain containing 2 | 256691 | NA |
| NA | ENSG00000198887 | SMC5 | structural maintenance of chromosomes 5 | 23137 | NA |
| NA | ENSG00000083067 | TRPM3 | transient receptor potential cation channel subfamily M member 3 | 80036 | The product of this gene belongs to the family of transient receptor potential (TRP) channels. TRP channels are cation-selective channels important for cellular calcium signaling and homeostasis. The protein encoded by this gene mediates calcium entry, and this entry is potentiated by calcium store depletion. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000135048 | TMEM2 | transmembrane protein 2 | 23670 | NA |
| NA | ENSG00000107362 | ABHD17B | abhydrolase domain containing 17B | 51104 | NA |
| NA | ENSG00000155621 | C9orf85 | chromosome 9 open reading frame 85 | 138241 | NA |
| NA | ENSG00000107372 | ZFAND5 | zinc finger AN1-type containing 5 | 7763 | NA |
| NA | ENSG00000198963 | RORB | RAR related orphan receptor B | 6096 | The protein encoded by this gene is a member of the NR1 subfamily of nuclear hormone receptors. It is a DNA-binding protein that can bind as a monomer or as a homodimer to hormone response elements upstream of several genes to enhance the expression of those genes. The encoded protein has been shown to interact with NM23-2, a nucleoside diphosphate kinase involved in organogenesis and differentiation, and to help regulate the expression of some genes involved in circadian rhythm. |
| NA | ENSG00000135045 | C9orf40 | chromosome 9 open reading frame 40 | 55071 | NA |
| NA | ENSG00000156017 | CARNMT1 | carnosine N-methyltransferase 1 | 138199 | The protein encoded by this gene is a methyltransferase that converts carnosine to anserine, a dipeptide found abundantly in skeletal muscle. The encoded protein can methylate other dipeptides as well. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000106733 | NMRK1 | nicotinamide riboside kinase 1 | 54981 | Nicotinamide adenine dinucleotide (NAD+) is essential for life in all organisms, both as a coenzyme for oxidoreductases and as a source of ADP-ribosyl groups used in various reactions. Nicotinic acid and nicotinamide, collectively known as niacin, are the vitamin precursors of NAD+. Nicotinamide riboside kinases, such as NRK1, function to synthesize NAD+ through nicotinamide mononucleotide using nicotinamide riboside as the precursor (Bieganowski and Brenner, 2004 [PubMed 15137942]). |
| NA | ENSG00000134996 | OSTF1 | osteoclast stimulating factor 1 | 26578 | Osteoclast-stimulating factor-1 is an intracellular protein produced by osteoclasts that indirectly induces osteoclast formation and bone resorption (Reddy et al., 1998 [PubMed 10092216]). |
| NA | ENSG00000099139 | PCSK5 | proprotein convertase subtilisin/kexin type 5 | 5125 | This gene encodes a member of the subtilisin-like proprotein convertase family, which includes proteases that process protein and peptide precursors trafficking through regulated or constitutive branches of the secretory pathway. The encoded protein undergoes an initial autocatalytic processing event in the ER to generate a heterodimer which exits the ER. It then sorts to the trans-Golgi network where a second autocatalytic event takes place and the catalytic activity is acquired. This encoded protein is widely expressed and one of the seven basic amino acid-specific members which cleave their substrates at single or paired basic residues. It mediates posttranslational endoproteolytic processing for several integrin alpha subunits and is thought to process prorenin, pro-membrane type-1 matrix metalloproteinase and HIV-1 glycoprotein gp160. Alternative splicing results in multiple transcript variants, some of which encode distinct isoforms, including a protease packaged into dense core granules (PC5A) and a type 1 membrane bound protease (PC5B). |
| NA | ENSG00000135002 | RFK | riboflavin kinase | 55312 | Riboflavin kinase (RFK; EC 2.7.1.26) is an essential enzyme that catalyzes the phosphorylation of riboflavin (vitamin B2) to form flavin mononucleotide (FMN), an obligatory step in vitamin B2 utilization and flavin cofactor synthesis (Karthikeyan et al., 2003 [PubMed 12623014]). |
| NA | ENSG00000187210 | GCNT1 | glucosaminyl (N-acetyl) transferase 1, core 2 | 2650 | This gene is a member of the beta-1,6-N-acetylglucosaminyltransferase gene family. It is essential to the formation of Gal beta 1-3(GlcNAc beta 1-6)GalNAc structures and the core 2 O-glycan branch. The gene coding this enzyme was originally mapped to 9q21, but was later localized to 9q13. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000106772 | PRUNE2 | prune homolog 2 (Drosophila) | 158471 | The protein encoded by this gene belongs to the B-cell CLL/lymphoma 2 and adenovirus E1B 19 kDa interacting family, whose members play roles in many cellular processes including apotosis, cell transformation, and synaptic function. Several functions for this protein have been demonstrated including suppression of Ras homolog family member A activity, which results in reduced stress fiber formation and suppression of oncogenic cellular transformation. A high molecular weight isoform of this protein has also been shown to colocalize with Adaptor protein complex 2, beta-Adaptin and endodermal markers, suggesting an involvement in post-endocytic trafficking. In prostate cancer cells, this gene acts as a tumor suppressor and its expression is regulated by prostate cancer antigen 3, a non-protein coding gene on the opposite DNA strand in an intron of this gene. Prostate cancer antigen 3 regulates levels of this gene through formation of a double-stranded RNA that undergoes adenosine deaminase actin on RNA-dependent adenosine-to-inosine RNA editing. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000197969 | VPS13A | vacuolar protein sorting 13 homolog A (S. cerevisiae) | 23230 | The protein encoded by this gene may control steps in the cycling of proteins through the trans-Golgi network to endosomes, lysosomes and the plasma membrane. Mutations in this gene cause the autosomal recessive disorder, chorea-acanthocytosis. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000156049 | GNA14 | G protein subunit alpha 14 | 9630 | This gene encodes a member of the guanine nucleotide-binding, or G protein family. G proteins are heterotrimers consisting of alpha, beta and gamma subunits. The encoded protein is a member of the alpha family of G proteins, more specifically the alpha q subfamily of G proteins. The encoded protein may play a role in pertussis-toxin resistant activation of phospholipase C-beta and its downstream effectors. |
| NA | ENSG00000148019 | CEP78 | centrosomal protein 78kDa | 84131 | NA |
| NA | ENSG00000135069 | PSAT1 | phosphoserine aminotransferase 1 | 29968 | This gene encodes a member of the class-V pyridoxal-phosphate-dependent aminotransferase family. The encoded protein is a phosphoserine aminotransferase and decreased expression may be associated with schizophrenia. Mutations in this gene are also associated with phosphoserine aminotransferase deficiency. Alternative splicing results in multiple transcript variants. Pseudogenes of this gene have been defined on chromosomes 1, 3, and 8. |
| NA | ENSG00000106829 | TLE4 | transducin like enhancer of split 4 | 7091 | NA |
| NA | ENSG00000196781 | TLE1 | transducin like enhancer of split 1 | 7088 | NA |
| NA | ENSG00000165105 | RASEF | RAS and EF-hand domain containing | 158158 | This gene is a member of the Rab family of GTPases that are involved in regulation of membrane traffic. The encoded protein contains an N-terminal EF-hand domain, a coiled-coil motif and a C-terminal Rab domain. A potential role as tumor suppressor has been indicated for this gene. |
| NA | ENSG00000172159 | FRMD3 | FERM domain containing 3 | 257019 | The protein encoded by this gene is a single pass membrane protein primarily found in ovaries. A similar protein in erythrocytes helps determine the shape of red blood cells, but the function of the encoded protein has not been determined. There is some evidence that this is a tumor suppressor gene, and there is also evidence linking defects in this gene to susceptibility to diabetic nephropathy in type 1 diabetes. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000135018 | UBQLN1 | ubiquilin 1 | 29979 | This gene encodes an ubiquitin-like protein (ubiquilin) that shares a high degree of similarity with related products in yeast, rat and frog. Ubiquilins contain an N-terminal ubiquitin-like domain and a C-terminal ubiquitin-associated domain. They physically associate with both proteasomes and ubiquitin ligases, and thus are thought to functionally link the ubiquitination machinery to the proteasome to affect in vivo protein degradation. This ubiquilin has also been shown to modulate accumulation of presenilin proteins, and it is found in lesions associated with Alzheimer’s and Parkinson’s disease. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165113 | GKAP1 | G kinase anchoring protein 1 | 80318 | This gene encodes a protein that is highly similar to the mouse cGMP-dependent protein kinase anchoring protein 42kDa. The mouse protein has been found to localize with the Golgi and recruit cGMP-dependent protein kinase I alpha to the Golgi in mouse testes. It is thought to play a role in germ cell development. Transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165115 | KIF27 | kinesin family member 27 | 55582 | This gene is a member of the KIF27 (kinesin 4) sub-family of the mammalian kinesin family. The gene is an ortholog of the Drosophila Cos2 gene, which plays an important role in the Hedgehog signaling pathway. The encoded protein contains an N-terminal motor domain which includes nucleotide-binding and microtubule-interacting regions, a stalk domain containing a predicted coiled coil motif and a C-terminal tail domain. Alternatively spliced transcript variants have been observed for this gene. Pseudogenes associated with this gene are located on chromosome 9. |
| NA | ENSG00000165118 | C9orf64 | chromosome 9 open reading frame 64 | 84267 | NA |
| NA | ENSG00000165119 | HNRNPK | heterogeneous nuclear ribonucleoprotein K | 3190 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus, some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene is located in the nucleoplasm and has three repeats of KH domains that binds to RNAs. It is distinct among other hnRNP proteins in its binding preference; it binds tenaciously to poly(C). This protein is also thought to have a role during cell cycle progession. Several alternatively spliced transcript variants have been described for this gene, however, not all of them are fully characterized. |
| NA | ENSG00000178966 | RMI1 | RecQ mediated genome instability 1 | 80010 | RMI1 is a component of protein complexes that limit DNA crossover formation via the dissolution of double Holliday junctions (Raynard et al., 2006 [PubMed 16595695]). |
| NA | ENSG00000135049 | AGTPBP1 | ATP/GTP binding protein 1 | 23287 | NNA1 is a zinc carboxypeptidase that contains nuclear localization signals and an ATP/GTP-binding motif that was initially cloned from regenerating spinal cord neurons of the mouse. |
| NA | ENSG00000135040 | NAA35 | N(alpha)-acetyltransferase 35, NatC auxiliary subunit | 60560 | NA |
| NA | ENSG00000135052 | GOLM1 | golgi membrane protein 1 | 51280 | The Golgi complex plays a key role in the sorting and modification of proteins exported from the endoplasmic reticulum. The protein encoded by this gene is a type II Golgi transmembrane protein. It processes proteins synthesized in the rough endoplasmic reticulum and assists in the transport of protein cargo through the Golgi apparatus. The expression of this gene has been observed to be upregulated in response to viral infection. Alternatively spliced transcript variants encoding the same protein have been described for this gene. |
| NA | ENSG00000083223 | ZCCHC6 | zinc finger CCHC-type containing 6 | 79670 | NA |
| NA | ENSG00000180447 | GAS1 | growth arrest specific 1 | 2619 | Growth arrest-specific 1 plays a role in growth suppression. GAS1 blocks entry to S phase and prevents cycling of normal and transformed cells. Gas1 is a putative tumor suppressor gene. |
| NA | ENSG00000196730 | DAPK1 | death associated protein kinase 1 | 1612 | Death-associated protein kinase 1 is a positive mediator of gamma-interferon induced programmed cell death. DAPK1 encodes a structurally unique 160-kD calmodulin dependent serine-threonine kinase that carries 8 ankyrin repeats and 2 putative P-loop consensus sites. It is a tumor suppressor candidate. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000135047 | CTSL | cathepsin L | 1514 | The protein encoded by this gene is a lysosomal cysteine proteinase that plays a major role in intracellular protein catabolism. Its substrates include collagen and elastin, as well as alpha-1 protease inhibitor, a major controlling element of neutrophil elastase activity. The encoded protein has been implicated in several pathologic processes, including myofibril necrosis in myopathies and in myocardial ischemia, and in the renal tubular response to proteinuria. This protein, which is a member of the peptidase C1 family, is a dimer composed of disulfide-linked heavy and light chains, both produced from a single protein precursor. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000156345 | CDK20 | cyclin-dependent kinase 20 | 23552 | The protein encoded by this gene contains a kinase domain most closely related to the cyclin-dependent protein kinases. The encoded kinase may activate cyclin-dependent kinase 2 and is involved in cell growth. Alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000106723 | SPIN1 | spindlin 1 | 10927 | NA |
| NA | ENSG00000213694 | S1PR3 | sphingosine-1-phosphate receptor 3 | 1903 | This gene encodes a member of the EDG family of receptors, which are G protein-coupled receptors. This protein has been identified as a functional receptor for sphingosine 1-phosphate and likely contributes to the regulation of angiogenesis and vascular endothelial cell function. |
| NA | ENSG00000148082 | SHC3 | SHC (Src homology 2 domain containing) transforming protein 3 | 53358 | NA |
| NA | ENSG00000123975 | CKS2 | CDC28 protein kinase regulatory subunit 2 | 1164 | CKS2 protein binds to the catalytic subunit of the cyclin dependent kinases and is essential for their biological function. The CKS2 mRNA is found to be expressed in different patterns through the cell cycle in HeLa cells, which reflects specialized role for the encoded protein. |
| NA | ENSG00000187764 | SEMA4D | semaphorin 4D | 10507 | NA |
| NA | ENSG00000165025 | SYK | spleen tyrosine kinase | 6850 | This gene encodes a member of the family of non-receptor type Tyr protein kinases. This protein is widely expressed in hematopoietic cells and is involved in coupling activated immunoreceptors to downstream signaling events that mediate diverse cellular responses, including proliferation, differentiation, and phagocytosis. It is thought to be a modulator of epithelial cell growth and a potential tumour suppressor in human breast carcinomas. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000148090 | AUH | AU RNA binding protein/enoyl-CoA hydratase | 549 | This gene encodes bifunctional mitochondrial protein that has both RNA-binding and hydratase activities. The encoded protein is a methylglutaconyl-CoA hydratase that catalyzes the hydration of 3-methylglutaconyl-CoA to 3-hydroxy-3-methyl-glutaryl-CoA, a critical step in the leucine degradation pathway. This protein also binds AU-rich elements (AREs) found in the 3’ UTRs of rapidly decaying mRNAs including c-fos, c-myc and granulocyte/ macrophage colony stimulating factor. ARE elements are involved in directing RNA to rapid degradation and deadenylation. This protein is localizes to the mitochondrial matrix and the inner mitochondrial membrane and may be involved in mitochondrial protein synthesis. Mutations in this gene are the cause of 3-methylglutaconic aciduria, type I. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000165030 | NFIL3 | nuclear factor, interleukin 3 regulated | 4783 | The protein encoded by this gene is a transcriptional regulator that binds as a homodimer to activating transcription factor (ATF) sites in many cellular and viral promoters. The encoded protein represses PER1 and PER2 expression and therefore plays a role in the regulation of circadian rhythm. Three transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000169071 | ROR2 | receptor tyrosine kinase-like orphan receptor 2 | 4920 | The protein encoded by this gene is a receptor protein tyrosine kinase and type I transmembrane protein that belongs to the ROR subfamily of cell surface receptors. The protein may be involved in the early formation of the chondrocytes and may be required for cartilage and growth plate development. Mutations in this gene can cause brachydactyly type B, a skeletal disorder characterized by hypoplasia/aplasia of distal phalanges and nails. In addition, mutations in this gene can cause the autosomal recessive form of Robinow syndrome, which is characterized by skeletal dysplasia with generalized limb bone shortening, segmental defects of the spine, brachydactyly, and a dysmorphic facial appearance. |
| NA | ENSG00000090054 | SPTLC1 | serine palmitoyltransferase long chain base subunit 1 | 10558 | This gene encodes a member of the class-II pyridoxal-phosphate-dependent aminotransferase family. The encoded protein is the long chain base subunit 1 of serine palmitoyltransferase. Serine palmitoyltransferase converts L-serine and palmitoyl-CoA to 3-oxosphinganine with pyridoxal 5’-phosphate and is the key enzyme in sphingolipid biosynthesis. Mutations in this gene were identified in patients with hereditary sensory neuropathy type 1. Alternatively spliced variants encoding different isoforms have been identified. Pseudogenes of this gene have been defined on chromosomes 1, 6, 10, and 13. |
| NA | ENSG00000196305 | IARS | isoleucyl-tRNA synthetase | 3376 | Aminoacyl-tRNA synthetases catalyze the aminoacylation of tRNA by their cognate amino acid. Because of their central role in linking amino acids with nucleotide triplets contained in tRNAS, aminoacyl-tRNA synthetases are thought to be among the first proteins that appeared in evolution. Isoleucine-tRNA synthetase belongs to the class-I aminoacyl-tRNA synthetase family and has been identified as a target of autoantibodies in the autoimmune disease polymyositis/dermatomyositis. Alternatively spliced transcript variants have been found. |
| NA | ENSG00000198000 | NOL8 | nucleolar protein 8 | 55035 | NOL8 binds Ras-related GTP-binding proteins (see MIM 608267) and plays a role in cell growth (Sekiguchi et al., 2004 [PubMed 14660641]). |
| NA | ENSG00000188312 | CENPP | centromere protein P | 401541 | CENPP is a subunit of a CENPH (MIM 605607)-CENPI (MIM 300065)-associated centromeric complex that targets CENPA (MIM 117139) to centromeres and is required for proper kinetochore function and mitotic progression (Okada et al., 2006 [PubMed 16622420]). |
| NA | ENSG00000127080 | IPPK | inositol-pentakisphosphate 2-kinase | 64768 | The protein encoded by this gene is a kinase that phosphorylates position 2 of inositol-1,3,4,5,6-pentakisphosphate to form inositol-1,2,3,4,5,6-hexakisphosphate (InsP6). InsP6 has a variety of functions, including stimulation of DNA repair, endocytosis, and mRNA export. |
| NA | ENSG00000185963 | BICD2 | bicaudal D homolog 2 (Drosophila) | 23299 | This gene is one of two human homologs of Drosophila bicaudal-D and a member of the Bicoid family. It has been implicated in dynein-mediated, minus end-directed motility along microtubules. It has also been reported to be a phosphorylation target of NIMA related kinase 8. Two alternative splice variants have been described. |
| NA | ENSG00000127081 | ZNF484 | zinc finger protein 484 | 83744 | NA |
| NA | ENSG00000157303 | SUSD3 | sushi domain containing 3 | 203328 | NA |
| NA | ENSG00000165233 | CARD19 | caspase recruitment domain family member 19 | 84270 | NA |
| NA | ENSG00000131669 | NINJ1 | ninjurin 1 | 4814 | The ninjurin protein is upregulated after nerve injury both in dorsal root ganglion neurons and in Schwann cells (Araki and Milbrandt, 1996 [PubMed 8780658]). It demonstrates properties of a homophilic adhesion molecule and promotes neurite outgrowth from primary cultured dorsal root ganglion neurons. |
| NA | ENSG00000165238 | WNK2 | WNK lysine deficient protein kinase 2 | 65268 | The protein encoded by this gene is a cytoplasmic serine-threonine kinase that belongs to the protein kinase superfamily. The protein plays an important role in the regulation of electrolyte homeostasis, cell signaling survival, and proliferation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000188938 | FAM120AOS | family with sequence similarity 120A opposite strand | 158293 | NA |
| NA | ENSG00000048828 | FAM120A | family with sequence similarity 120A | 23196 | NA |
| NA | ENSG00000197724 | PHF2 | PHD finger protein 2 | 5253 | This gene encodes a protein which contains a zinc finger-like PHD (plant homeodomain) finger, distinct from other classes of zinc finger motifs, and a hydrophobic and highly conserved domain. The PHD finger shows the typical Cys4-His-Cys3 arrangement. PHD finger genes are thought to belong to a diverse group of transcriptional regulators possibly affecting eukaryotic gene expression by influencing chromatin structure. |
| NA | ENSG00000158079 | PTPDC1 | protein tyrosine phosphatase domain containing 1 | 138639 | The protein encoded by this gene contains a characteristic motif of protein tyrosine phosphatases (PTPs). PTPs regulate activities of phosphoproteins through dephosphorylation. They are signaling molecules involved in the regulation of a wide variety of biological processes. The specific function of this protein has not yet been determined. Alternatively spliced transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000175787 | ZNF169 | zinc finger protein 169 | 169841 | NA |
| NA | ENSG00000148110 | MFSD14B | major facilitator superfamily domain containing 14B | 84641 | NA |
| NA | ENSG00000165140 | FBP1 | fructose-bisphosphatase 1 | 2203 | Fructose-1,6-bisphosphatase 1, a gluconeogenesis regulatory enzyme, catalyzes the hydrolysis of fructose 1,6-bisphosphate to fructose 6-phosphate and inorganic phosphate. Fructose-1,6-diphosphatase deficiency is associated with hypoglycemia and metabolic acidosis. |
| NA | ENSG00000148120 | C9orf3 | chromosome 9 open reading frame 3 | 84909 | This gene encodes a member of the M1 zinc aminopeptidase family. The encoded protein is a zinc-dependent metallopeptidase that catalyzes the removal of an amino acid from the amino terminus of a protein or peptide. This protein may play a role in the generation of angiotensin IV. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000185920 | PTCH1 | patched 1 | 5727 | This gene encodes a member of the patched gene family. The encoded protein is the receptor for sonic hedgehog, a secreted molecule implicated in the formation of embryonic structures and in tumorigenesis, as well as the desert hedgehog and indian hedgehog proteins. This gene functions as a tumor suppressor. Mutations of this gene have been associated with basal cell nevus syndrome, esophageal squamous cell carcinoma, trichoepitheliomas, transitional cell carcinomas of the bladder, as well as holoprosencephaly. Alternative splicing results in multiple transcript variants encoding different isoforms. Additional splice variants have been described, but their full length sequences and biological validity cannot be determined currently. |
| NA | ENSG00000130958 | SLC35D2 | solute carrier family 35 member D2 | 11046 | Nucleotide sugars, which are synthesized in the cytosol or the nucleus, are high-energy donor substrates for glycosyltransferases located in the lumen of the endoplasmic reticulum and Golgi apparatus. Translocation of nucleotide sugars from the cytosol into the lumen compartment is mediated by specific nucleotide sugar transporters, such as SLC35D2 (Suda et al., 2004 [PubMed 15082721]). |
| NA | ENSG00000165244 | ZNF367 | zinc finger protein 367 | 195828 | NA |
| NA | ENSG00000130956 | HABP4 | hyaluronan binding protein 4 | 22927 | NA |
| NA | ENSG00000081377 | CDC14B | cell division cycle 14B | 8555 | The protein encoded by this gene is a member of the dual specificity protein tyrosine phosphatase family. This protein is highly similar to Saccharomyces cerevisiae Cdc14, a protein tyrosine phosphatase involved in the exit of cell mitosis and initiation of DNA replication, which suggests the role in cell cycle control. This protein has been shown to interact with and dephosphorylates tumor suppressor protein p53, and is thought to regulate the function of p53. Alternative splice of this gene results in 3 transcript variants encoding distinct isoforms. |
| NA | ENSG00000158122 | AAED1 | AhpC/TSA antioxidant enzyme domain containing 1 | 195827 | NA |
| NA | ENSG00000081386 | ZNF510 | zinc finger protein 510 | 22869 | This gene encodes a krueppel C2H2-type zinc-finger protein family member. The encoded protein is expressed in several cancer cell types and may be a biomarker for early diagnosis of these cancers. |
| NA | ENSG00000196597 | ZNF782 | zinc finger protein 782 | 158431 | NA |
| NA | ENSG00000196312 | MFSD14C | major facilitator superfamily domain containing 14C | ENSG00000196312 | NA |
| NA | ENSG00000136943 | CTSV | cathepsin V | 1515 | The protein encoded by this gene, a member of the peptidase C1 family, is a lysosomal cysteine proteinase that may play an important role in corneal physiology. This gene is expressed in colorectal and breast carcinomas but not in normal colon, mammary gland, or peritumoral tissues, suggesting a possible role for this gene in tumor processes. Alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000197816 | CCDC180 | coiled-coil domain containing 180 | 100499483 | NA |
| NA | ENSG00000136925 | TSTD2 | thiosulfate sulfurtransferase (rhodanese)-like domain containing 2 | 158427 | NA |
| NA | ENSG00000136937 | NCBP1 | nuclear cap binding protein subunit 1 | 4686 | The product of this gene is a component of the nuclear cap-binding protein complex (CBC), which binds to the monomethylated 5’ cap of nascent pre-mRNA in the nucleoplasm. The encoded protein promotes high-affinity mRNA-cap binding and associates with the CTD of RNA polymerase II. The CBC promotes pre-mRNA splicing, 3’-end processing, RNA nuclear export, and nonsense-mediated mRNA decay. |
| NA | ENSG00000136936 | XPA | xeroderma pigmentosum, complementation group A | 7507 | This gene encodes a zinc finger protein involved in DNA excision repair. The encoded protein is part of the NER (nucleotide excision repair) complext which is responsible for repair of UV radiation-induced photoproducts and DNA adducts induced by chemical carcinogens. Mutations in this gene are associated with xeroderma pigmentosum complementation group A. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000136932 | TRMO | tRNA methyltransferase O | 51531 | NA |
| NA | ENSG00000136938 | ANP32B | acidic nuclear phosphoprotein 32 family member B | 10541 | NA |
| NA | ENSG00000095380 | NANS | N-acetylneuraminate synthase | 54187 | This gene encodes an enzyme that functions in the biosynthetic pathways of sialic acids. In vitro, the encoded protein uses N-acetylmannosamine 6-phosphate and mannose 6-phosphate as substrates to generate phosphorylated forms of N-acetylneuraminic acid (Neu5Ac) and 2-keto-3-deoxy-D-glycero-D-galacto-nononic acid (KDN), respectively; however, it exhibits much higher activity toward the Neu5Ac phosphate product. In insect cells, expression of this gene results in Neu5Ac and KDN production. This gene is related to the E. coli sialic acid synthase gene neuB, and it can partially restore sialic acid synthase activity in an E. coli neuB-negative mutant. |
| NA | ENSG00000106785 | TRIM14 | tripartite motif containing 14 | 9830 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The protein localizes to cytoplasmic bodies and its function has not been determined. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000106789 | CORO2A | coronin 2A | 7464 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This protein contains 5 WD repeats, and has a structural similarity with actin-binding proteins: the D. discoideum coronin and the human p57 protein, suggesting that this protein may also be an actin-binding protein that regulates cell motility. Alternative splicing of this gene generates 2 transcript variants. |
| NA | ENSG00000095383 | TBC1D2 | TBC1 domain family member 2 | 55357 | NA |
| NA | ENSG00000165138 | ANKS6 | ankyrin repeat and sterile alpha motif domain containing 6 | 203286 | This gene encodes a protein containing multiple ankyrin repeats and a SAM domain. It is thought that this protein may localize to the proximal region of the primary cilium, and may play a role in renal and cardiovascular development. Mutations in this gene have been shown to cause a form of nephronophthisis (NPHP16), a chronic tubulo-interstitial nephritis. |
| NA | ENSG00000119514 | GALNT12 | polypeptide N-acetylgalactosaminyltransferase 12 | 79695 | This gene encodes a member of a family of UDP-GalNAc:polypeptide N-acetylgalactosaminyltransferases, which catalyze the transfer of N-acetylgalactosamine (GalNAc) from UDP-GalNAc to a serine or threonine residue on a polypeptide acceptor in the initial step of O-linked protein glycosylation. Mutations in this gene are associated with an increased susceptibility to colorectal cancer. |
| NA | ENSG00000106799 | TGFBR1 | transforming growth factor beta receptor I | 7046 | The protein encoded by this gene forms a heteromeric complex with type II TGF-beta receptors when bound to TGF-beta, transducing the TGF-beta signal from the cell surface to the cytoplasm. The encoded protein is a serine/threonine protein kinase. Mutations in this gene have been associated with Loeys-Dietz aortic aneurysm syndrome (LDAS). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000119523 | ALG2 | ALG2, alpha-1,3/1,6-mannosyltransferase | 85365 | This gene encodes a member of the glycosyltransferase 1 family. The encoded protein acts as an alpha 1,3 mannosyltransferase, mannosylating Man(2)GlcNAc(2)-dolichol diphosphate and Man(1)GlcNAc(2)-dolichol diphosphate to form Man(3)GlcNAc(2)-dolichol diphosphate. Defects in this gene have been associated with congenital disorder of glycosylation type Ih (CDG-Ii). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136874 | STX17 | syntaxin 17 | 55014 | NA |
| NA | ENSG00000023318 | ERP44 | endoplasmic reticulum protein 44 | 23071 | NA |
| NA | ENSG00000119509 | INVS | inversin | 27130 | This gene encodes a protein containing multiple ankyrin domains and two IQ calmodulin-binding domains. The encoded protein may function in renal tubular development and function, and in left-right axis determination. This protein interacts with nephrocystin and infers a connection between primary cilia function and left-right axis determination. A similar protein in mice interacts with calmodulin. Mutations in this gene have been associated with nephronophthisis type 2. Multiple transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000136891 | TEX10 | testis expressed 10 | 54881 | NA |
| NA | ENSG00000066697 | MSANTD3 | Myb/SANT DNA binding domain containing 3 | 91283 | NA |
| NA | ENSG00000170681 | MURC | muscle related coiled-coil protein | 347273 | This gene encodes a protein containing two coiled-coil regions. The encoded protein promotes Rho/ROCK (Rho-kinase) signaling in cardiac muscles cells, and may facilitate myofibrillar organization. |
| NA | ENSG00000136870 | ZNF189 | zinc finger protein 189 | 7743 | Kruppel-like zinc finger proteins such as ZNF189 contain a conserved stretch of 7 amino acids that connects a variable number of DNA-binding zinc finger repeats of the cys(2)his(2) (C2H2) type (summarized by Odeberg et al., 1998 [PubMed 9653648]). Approximately 30% of human Kruppel-like zinc finger proteins contain an N-terminal Kruppel-associated box (KRAB) domain. The KRAB domain consists of approximately 75 amino acids that may be subdivided into an A box, which is present in every KRAB domain and is essential for transcriptional repression, and a B box, which is not always present. |
| NA | ENSG00000165152 | TMEM246 | transmembrane protein 246 | 84302 | NA |
| NA | ENSG00000136824 | SMC2 | structural maintenance of chromosomes 2 | 10592 | Members of the structural maintenance of chromosomes, or SMC, family (e.g., SMC1A; MIM 300040) are critical for mitotic chromosome condensation in frogs and for DNA repair in mammals. |
| NA | ENSG00000136783 | NIPSNAP3A | nipsnap homolog 3A (C. elegans) | 25934 | NIPSNAP3A belongs to a family of proteins with putative roles in vesicular transport (Buechler et al., 2004 [PubMed 15177564]). |
| NA | ENSG00000165029 | ABCA1 | ATP binding cassette subfamily A member 1 | 19 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intracellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the ABC1 subfamily. Members of the ABC1 subfamily comprise the only major ABC subfamily found exclusively in multicellular eukaryotes. With cholesterol as its substrate, this protein functions as a cholesteral efflux pump in the cellular lipid removal pathway. Mutations in this gene have been associated with Tangier’s disease and familial high-density lipoprotein deficiency. |
| NA | ENSG00000106701 | FSD1L | fibronectin type III and SPRY domain containing 1 like | 83856 | NA |
| NA | ENSG00000106692 | FKTN | fukutin | 2218 | The protein encoded by this gene is a putative transmembrane protein that is localized to the cis-Golgi compartment, where it may be involved in the glycosylation of alpha-dystroglycan in skeletal muscle. The encoded protein is thought to be a glycosyltransferase and could play a role in brain development. Defects in this gene are a cause of Fukuyama-type congenital muscular dystrophy (FCMD), Walker-Warburg syndrome (WWS), limb-girdle muscular dystrophy type 2M (LGMD2M), and dilated cardiomyopathy type 1X (CMD1X). Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000095209 | TMEM38B | transmembrane protein 38B | 55151 | This gene encodes an intracellular monovalent cation channel that functions in maintenance of intracellular calcium release. Mutations in this gene may be associated with autosomal recessive osteogenesis. |
| NA | ENSG00000148143 | ZNF462 | zinc finger protein 462 | 58499 | NA |
| NA | ENSG00000119318 | RAD23B | RAD23 homolog B, nucleotide excision repair protein | 5887 | The protein encoded by this gene is one of two human homologs of Saccharomyces cerevisiae Rad23, a protein involved in the nucleotide excision repair (NER). This protein was found to be a component of the protein complex that specifically complements the NER defect of xeroderma pigmentosum group C (XP-c) cell extracts in vitro. This protein was also shown to interact with, and elevate the nucleotide excision activity of 3-methyladenine-DNA glycosylase (MPG), which suggested a role in DNA damage recognition in base excision repair. This protein contains an N-terminal ubiquitin-like domain, which was reported to interact with 26S proteasome, and thus this protein may be involved in the ubiquitin mediated proteolytic pathway in cells. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000070061 | IKBKAP | inhibitor of kappa light polypeptide gene enhancer in B-cells, kinase complex-associated protein | 8518 | The protein encoded by this gene is a scaffold protein and a regulator for three different kinases involved in proinflammatory signaling. The encoded protein can bind NF-kappa-B-inducing kinase and I-kappa-B kinases through separate domains and assemble them into an active kinase complex. Mutations in this gene have been associated with familial dysautonomia. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000119328 | FAM206A | family with sequence similarity 206 member A | 54942 | NA |
| NA | ENSG00000119326 | CTNNAL1 | catenin alpha like 1 | 8727 | NA |
| NA | ENSG00000106771 | TMEM245 | transmembrane protein 245 | 23731 | NA |
| NA | ENSG00000260230 | FRRS1L | ferric chelate reductase 1 like | 23732 | NA |
| NA | ENSG00000095203 | EPB41L4B | erythrocyte membrane protein band 4.1 like 4B | 54566 | NA |
| NA | ENSG00000070159 | PTPN3 | protein tyrosine phosphatase, non-receptor type 3 | 5774 | The protein encoded by this gene is a member of the protein tyrosine phosphatase (PTP) family. PTPs are known to be signaling molecules that regulate a variety of cellular processes including cell growth, differentiation, mitotic cycle, and oncogenic transformation. This protein contains a C-terminal PTP domain and an N-terminal domain homologous to the band 4.1 superfamily of cytoskeletal-associated proteins. P97, a cell cycle regulator involved in a variety of membrane related functions, has been shown to be a substrate of this PTP. This PTP was also found to interact with, and be regulated by adaptor protein 14-3-3 beta. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000243444 | PALM2 | paralemmin 2 | 114299 | NA |
| NA | ENSG00000136810 | TXN | thioredoxin | 7295 | The protein encoded by this gene acts as a homodimer and is involved in many redox reactions. The encoded protein is active in the reversible S-nitrosylation of cysteines in certain proteins, which is part of the response to intracellular nitric oxide. This protein is found in the cytoplasm. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198121 | LPAR1 | lysophosphatidic acid receptor 1 | 1902 | The integral membrane protein encoded by this gene is a lysophosphatidic acid (LPA) receptor from a group known as EDG receptors. These receptors are members of the G protein-coupled receptor superfamily. Utilized by LPA for cell signaling, EDG receptors mediate diverse biologic functions, including proliferation, platelet aggregation, smooth muscle contraction, inhibition of neuroblastoma cell differentiation, chemotaxis, and tumor cell invasion. Two transcript variants encoding the same protein have been identified for this gene |
| NA | ENSG00000136813 | KIAA0368 | KIAA0368 | 23392 | NA |
| NA | ENSG00000106853 | PTGR1 | prostaglandin reductase 1 | 22949 | This gene encodes an enzyme that is involved in the inactivation of the chemotactic factor, leukotriene B4. The encoded protein specifically catalyzes the NADP+ dependent conversion of leukotriene B4 to 12-oxo-leukotriene B4. A pseudogene of this gene is found on chromosome 1. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000059769 | DNAJC25 | DnaJ heat shock protein family (Hsp40) member C25 | 548645 | NA |
| NA | ENSG00000148154 | UGCG | UDP-glucose ceramide glucosyltransferase | 7357 | This gene encodes an enzyme that catalyzes the first glycosylation step in the biosynthesis of glycosphingolipids, which are membrane components containing lipid and sugar moieties. The product of this reaction is glucosylceramide, which is the core structure of many glycosphingolipids. |
| NA | ENSG00000106868 | SUSD1 | sushi domain containing 1 | 64420 | NA |
| NA | ENSG00000119314 | PTBP3 | polypyrimidine tract binding protein 3 | 9991 | The protein encoded by this gene binds RNA and is a regulator of cell differentiation. The encoded protein preferentially binds to poly(G) and poly(U) sequences in vitro. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000119471 | HSDL2 | hydroxysteroid dehydrogenase like 2 | 84263 | NA |
| NA | ENSG00000165185 | KIAA1958 | KIAA1958 | 158405 | NA |
| NA | ENSG00000148153 | INIP | INTS3 and NABP interacting protein | 58493 | SOSSC is a subunit of single-stranded DNA (ssDNA)-binding complexes involved in the maintenance of genome stability (Huang et al., 2009) [PubMed 19683501]. |
| NA | ENSG00000136866 | ZFP37 | ZFP37 zinc finger protein | 7539 | This gene encodes a transcription factor that belongs to a large family of zinc finger proteins. A similar protein in mouse is thought to play a role in regulating the structures of the nucleolus and centromere in neurons. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000136867 | SLC31A2 | solute carrier family 31 member 2 | 1318 | NA |
| NA | ENSG00000119321 | FKBP15 | FK506 binding protein 15 | 23307 | NA |
| NA | ENSG00000136868 | SLC31A1 | solute carrier family 31 member 1 | 1317 | The protein encoded by this gene is a high-affinity copper transporter found in the cell membrane. The encoded protein functions as a homotrimer to effect the uptake of dietary copper. |
| NA | ENSG00000136875 | PRPF4 | pre-mRNA processing factor 4 | 9128 | The protein encoded by this gene is part of a heteromeric complex that binds U4, U5, and U6 small nuclear RNAs and is involved in pre-mRNA splicing. The encoded protein also is a mitotic checkpoint protein and a regulator of chemoresistance in human ovarian cancer. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000119411 | BSPRY | B-box and SPRY domain containing | 54836 | NA |
| NA | ENSG00000119431 | HDHD3 | haloacid dehalogenase like hydrolase domain containing 3 | 81932 | NA |
| NA | ENSG00000148218 | ALAD | aminolevulinate dehydratase | 210 | The ALAD enzyme is composed of 8 identical subunits and catalyzes the condensation of 2 molecules of delta-aminolevulinate to form porphobilinogen (a precursor of heme, cytochromes and other hemoproteins). ALAD catalyzes the second step in the porphyrin and heme biosynthetic pathway; zinc is essential for enzymatic activity. ALAD enzymatic activity is inhibited by lead and a defect in the ALAD structural gene can cause increased sensitivity to lead poisoning and acute hepatic porphyria. Alternative splicing of this gene results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000148229 | POLE3 | polymerase (DNA) epsilon 3, accessory subunit | 54107 | POLE3 is a histone-fold protein that interacts with other histone-fold proteins to bind DNA in a sequence-independent manner. These histone-fold protein dimers combine within larger enzymatic complexes for DNA transcription, replication, and packaging. |
| NA | ENSG00000138835 | RGS3 | regulator of G-protein signaling 3 | 5998 | This gene encodes a member of the regulator of G-protein signaling (RGS) family. This protein is a GTPase-activating protein that inhibits G-protein-mediated signal transduction. Alternative splicing and the use of alternative promoters results in multiple transcript variants encoding different isoforms. Long isoforms are largely cytosolic and plasma membrane-associated with a function in Wnt signaling and in the epithelial mesenchymal transition, while shorter N-terminally-truncated isoforms can be nuclear. |
| NA | ENSG00000157657 | ZNF618 | zinc finger protein 618 | 114991 | NA |
| NA | ENSG00000106927 | AMBP | alpha-1-microglobulin/bikunin precursor | 259 | This gene encodes a complex glycoprotein secreted in plasma. The precursor is proteolytically processed into distinct functioning proteins: alpha-1-microglobulin, which belongs to the superfamily of lipocalin transport proteins and may play a role in the regulation of inflammatory processes, and bikunin, which is a urinary trypsin inhibitor belonging to the superfamily of Kunitz-type protease inhibitors and plays an important role in many physiological and pathological processes. This gene is located on chromosome 9 in a cluster of lipocalin genes. |
| NA | ENSG00000196739 | COL27A1 | collagen type XXVII alpha 1 | 85301 | This gene encodes a member of the fibrillar collagen family, and plays a role during the calcification of cartilage and the transition of cartilage to bone. The encoded protein product is a preproprotein. It includes an N-terminal signal peptide, which is followed by an N-terminal propetide, mature peptide and a C-terminal propeptide. The N-terminal propeptide contains thrombospondin N-terminal-like and laminin G-like domains. The mature peptide is a major triple-helical region. The C-terminal propeptide, also known as COLFI domain, plays crucial roles in tissue growth and repair. Mutations in this gene cause Steel syndrome. Alternatively spliced transcript variants have been found, but the full-length nature of some variants has not been determined. |
| NA | ENSG00000106948 | AKNA | AT-hook transcription factor | 80709 | NA |
| NA | ENSG00000136888 | ATP6V1G1 | ATPase H+ transporting V1 subunit G1 | 9550 | This gene encodes a component of vacuolar ATPase (V-ATPase), a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, receptor-mediated endocytosis, and synaptic vesicle proton gradient generation. V-ATPase is composed of a cytosolic V1 domain and a transmembrane V0 domain. The V1 domain consists of three A, three B, and two G subunits, as well as a C, D, E, F, and H subunit. The V1 domain contains the ATP catalytic site. The protein encoded by this gene is one of three V1 domain G subunit proteins. Pseudogenes of this gene have been characterized. |
| NA | ENSG00000157693 | C9orf91 | chromosome 9 open reading frame 91 | 203197 | NA |
| NA | ENSG00000041982 | TNC | tenascin C | 3371 | This gene encodes an extracellular matrix protein with a spatially and temporally restricted tissue distribution. This protein is homohexameric with disulfide-linked subunits, and contains multiple EGF-like and fibronectin type-III domains. It is implicated in guidance of migrating neurons as well as axons during development, synaptic plasticity, and neuronal regeneration. |
| NA | ENSG00000182752 | PAPPA | pregnancy-associated plasma protein A, pappalysin 1 | 5069 | This gene encodes a secreted metalloproteinase which cleaves insulin-like growth factor binding proteins (IGFBPs). It is thought to be involved in local proliferative processes such as wound healing and bone remodeling. Low plasma level of this protein has been suggested as a biochemical marker for pregnancies with aneuploid fetuses. |
| NA | ENSG00000148219 | ASTN2 | astrotactin 2 | 23245 | This gene encodes a protein that is expressed in the brain and may function in neuronal migration, based on functional studies of the related astrotactin 1 gene in human and mouse. A deletion at this locus has been associated with schizophrenia. Multiple transcript variants encoding different proteins have been found for this locus. |
| NA | ENSG00000119401 | TRIM32 | tripartite motif containing 32 | 22954 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. The protein localizes to cytoplasmic bodies. The protein has also been localized to the nucleus, where it interacts with the activation domain of the HIV-1 Tat protein. The Tat protein activates transcription of HIV-1 genes. |
| NA | ENSG00000078725 | BRINP1 | BMP/retinoic acid inducible neural specific 1 | 1620 | This gene is located within a chromosomal region that shows loss of heterozygosity in some bladder cancers. It contains a 5’ CpG island that may be a frequent target of hypermethylation, and it may undergo hypermethylation-based silencing in some bladder cancers. |
| NA | ENSG00000136861 | CDK5RAP2 | CDK5 regulatory subunit associated protein 2 | 55755 | This gene encodes a regulator of CDK5 (cyclin-dependent kinase 5) activity. The protein encoded by this gene is localized to the centrosome and Golgi complex, interacts with CDK5R1 and pericentrin (PCNT), plays a role in centriole engagement and microtubule nucleation, and has been linked to primary microcephaly and Alzheimer’s disease. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000106780 | MEGF9 | multiple EGF like domains 9 | 1955 | NA |
| NA | ENSG00000119402 | FBXW2 | F-box and WD repeat domain containing 2 | 26190 | F-box proteins are an expanding family of eukaryotic proteins characterized by an approximately 40 amino acid motif, the F box. Some F-box proteins have been shown to be critical for the ubiquitin-mediated degradation of cellular regulatory proteins. In fact, F-box proteins are one of the four subunits of ubiquitin protein ligases, called SCFs. SCF ligases bring ubiquitin conjugating enzymes to substrates that are specifically recruited by the different F-box proteins. Mammalian F-box proteins are classified into three groups based on the presence of either WD-40 repeats, leucine-rich repeats, or the presence or absence of other protein-protein interacting domains. This gene encodes the second identified member of the F-box gene family and contains multiple WD-40 repeats. |
| NA | ENSG00000095261 | PSMD5 | proteasome 26S subunit, non-ATPase 5 | 5711 | The 26S proteasome is a multicatalytic proteinase complex with a highly ordered structure composed of 2 complexes, a 20S core and a 19S regulator. The 20S core is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. The 19S regulator is composed of a base, which contains 6 ATPase subunits and 2 non-ATPase subunits, and a lid, which contains up to 10 non-ATPase subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. This gene encodes a non-ATPase subunit of the 19S regulator base that functions as a chaperone protein during 26S proteasome assembly. |
| NA | ENSG00000119403 | PHF19 | PHD finger protein 19 | 26147 | NA |
| NA | ENSG00000119397 | CNTRL | centriolin | 11064 | This gene encodes a centrosomal protein required for the centrosome to function as a microtubule organizing center. The gene product is also associated with centrosome maturation. One version of stem cell myeloproliferative disorder is the result of a reciprocal translocation between chromosomes 8 and 9, with the breakpoint associated with fibroblast growth factor receptor 1 and centrosomal protein 1. |
| NA | ENSG00000119396 | RAB14 | RAB14, member RAS oncogene family | 51552 | RAB14 belongs to the large RAB family of low molecular mass GTPases that are involved in intracellular membrane trafficking. These proteins act as molecular switches that flip between an inactive GDP-bound state and an active GTP-bound state in which they recruit downstream effector proteins onto membranes (Junutula et al., 2004 [PubMed 15004230]). |
| NA | ENSG00000148180 | GSN | gelsolin | 2934 | The protein encoded by this gene binds to the ‘plus’ ends of actin monomers and filaments to prevent monomer exchange. The encoded calcium-regulated protein functions in both assembly and disassembly of actin filaments. Defects in this gene are a cause of familial amyloidosis Finnish type (FAF). Multiple transcript variants encoding several different isoforms have been found for this gene. |
| NA | ENSG00000148175 | STOM | stomatin | 2040 | This gene encodes a member of a highly conserved family of integral membrane proteins. The encoded protein localizes to the cell membrane of red blood cells and other cell types, where it may regulate ion channels and transporters. Loss of localization of the encoded protein is associated with hereditary stomatocytosis, a form of hemolytic anemia. There is a pseudogene for this gene on chromosome 6. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000136848 | DAB2IP | DAB2 interacting protein | 153090 | DAB2IP is a Ras (MIM 190020) GTPase-activating protein (GAP) that acts as a tumor suppressor. The DAB2IP gene is inactivated by methylation in prostate and breast cancers (Yano et al., 2005 [PubMed 15386433]). |
| NA | ENSG00000119446 | RBM18 | RNA binding motif protein 18 | 92400 | NA |
| NA | ENSG00000148187 | MRRF | mitochondrial ribosome recycling factor | 92399 | NA |
| NA | ENSG00000136940 | PDCL | phosducin like | 5082 | Phosducin-like protein is a putative modulator of heterotrimeric G proteins. The protein shares extensive amino acid sequence homology with phosducin, a phosphoprotein expressed in retina and pineal gland. Both phosducin-like protein and phosphoducin have been shown to regulate G-protein signaling by binding to the beta-gamma subunits of G proteins. |
| NA | ENSG00000056586 | RC3H2 | ring finger and CCCH-type domains 2 | 54542 | NA |
| NA | ENSG00000186130 | ZBTB6 | zinc finger and BTB domain containing 6 | 10773 | NA |
| NA | ENSG00000171448 | ZBTB26 | zinc finger and BTB domain containing 26 | 57684 | NA |
| NA | ENSG00000011454 | GPR21 | G protein-coupled receptor 21 | 2844 | This gene encodes a member of the G-protein-coupled receptor 1 family. G-protein coupled receptors are membrane proteins which activate signaling cascades as a response to extracellular stress. The encoded protein activates a Gq signal transduction pathway which mobilizes calcium. |
| NA | ENSG00000011454 | RABGAP1 | RAB GTPase activating protein 1 | 23637 | NA |
| NA | ENSG00000148204 | CRB2 | crumbs 2, cell polarity complex component | 286204 | NA |
| NA | ENSG00000119522 | DENND1A | DENN domain containing 1A | 57706 | Clathrin (see MIM 118955)-mediated endocytosis is a major mechanism for internalization of proteins and lipids. Members of the connecdenn family, such as DENND1A, function as guanine nucleotide exchange factors (GEFs) for the early endosomal small GTPase RAB35 (MIM 604199) and bind to clathrin and clathrin adaptor protein-2 (AP2; see MIM 601024). Thus, connecdenns link RAB35 activation with the clathrin machinery (Marat and McPherson, 2010 [PubMed 20154091]). |
| NA | ENSG00000119408 | NEK6 | NIMA related kinase 6 | 10783 | The protein encoded by this gene is a kinase required for progression through the metaphase portion of mitosis. Inhibition of the encoded protein can lead to apoptosis. This protein also can enhance tumorigenesis by suppressing tumor cell senescence. Several transcript variants encoding a few different isoforms have been found for this gene. |
| NA | ENSG00000136930 | PSMB7 | proteasome subunit beta 7 | 5695 | The proteasome is a multicatalytic proteinase complex with a highly ordered ring-shaped 20S core structure. The core structure is composed of 4 rings of 28 non-identical subunits; 2 rings are composed of 7 alpha subunits and 2 rings are composed of 7 beta subunits. Proteasomes are distributed throughout eukaryotic cells at a high concentration and cleave peptides in an ATP/ubiquitin-dependent process in a non-lysosomal pathway. The encoded protein is a member of the proteasome B-type family, also known as the T1B family, and is a 20S core beta subunit in the proteasome. Expression of this catalytic subunit is downregulated by gamma interferon, and proteolytic processing is required to generate a mature subunit. A pseudogene of this gene is located on the long arm of chromosome 14. |
| NA | ENSG00000148200 | NR6A1 | nuclear receptor subfamily 6 group A member 1 | 2649 | This gene encodes an orphan nuclear receptor which is a member of the nuclear hormone receptor family. Its expression pattern suggests that it may be involved in neurogenesis and germ cell development. The protein can homodimerize and bind DNA, but in vivo targets have not been identified. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000185585 | OLFML2A | olfactomedin like 2A | 169611 | NA |
| NA | ENSG00000136942 | RPL35 | ribosomal protein L35 | 11224 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L29P family of ribosomal proteins. It is located in the cytoplasm. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000136950 | ARPC5L | actin related protein 2/3 complex subunit 5-like | 81873 | NA |
| NA | ENSG00000136935 | GOLGA1 | golgin A1 | 2800 | The Golgi apparatus, which participates in glycosylation and transport of proteins and lipids in the secretory pathway, consists of a series of stacked cisternae (flattened membrane sacs). Interactions between the Golgi and microtubules are thought to be important for the reorganization of the Golgi after it fragments during mitosis. This gene encodes one of the golgins, a family of proteins localized to the Golgi. This encoded protein is associated with Sjogren’s syndrome. |
| NA | ENSG00000173611 | SCAI | suppressor of cancer cell invasion | 286205 | This gene encodes a regulator of cell migration. The encoded protein appears to function in the RhoA (ras homolog gene family, member A)-Dia1 (diaphanous homolog 1) signal transduction pathway. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000119414 | PPP6C | protein phosphatase 6 catalytic subunit | 5537 | This gene encodes the catalytic subunit of protein phosphatase, a component of a signaling pathway regulating cell cycle progression. Splice variants encoding different protein isoforms exist. The pseudogene of this gene is located on chromosome X. |
| NA | ENSG00000136933 | RABEPK | Rab9 effector protein with kelch motifs | 10244 | NA |
| NA | ENSG00000044574 | HSPA5 | heat shock protein family A (Hsp70) member 5 | 3309 | The protein encoded by this gene is a member of the heat shock protein 70 (HSP70) family. It is localized in the lumen of the endoplasmic reticulum (ER), and is involved in the folding and assembly of proteins in the ER. As this protein interacts with many ER proteins, it may play a key role in monitoring protein transport through the cell. |
| NA | ENSG00000165219 | GAPVD1 | GTPase activating protein and VPS9 domains 1 | 26130 | NA |
| NA | ENSG00000119487 | MAPKAP1 | mitogen-activated protein kinase associated protein 1 | 79109 | This gene encodes a protein that is highly similar to the yeast SIN1 protein, a stress-activated protein kinase. Alternatively spliced transcript variants encoding distinct isoforms have been described. Alternate polyadenylation sites as well as alternate 3’ UTRs have been identified for transcripts of this gene. |
| NA | ENSG00000196814 | MVB12B | multivesicular body subunit 12B | 89853 | The protein encoded by this gene is a component of the ESCRT-I complex, a heterotetramer, which mediates the sorting of ubiquitinated cargo protein from the plasma membrane to the endosomal vesicle. ESCRT-I complex plays an essential role in HIV budding and endosomal protein sorting. Depletion and overexpression of this and related protein (MVB12A) inhibit HIV-1 infectivity and induce unusual viral assembly defects, indicating a role for MVB12 subunits in regulating ESCRT-mediated virus budding. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000177125 | ZBTB34 | zinc finger and BTB domain containing 34 | 403341 | NA |
| NA | ENSG00000136828 | RALGPS1 | Ral GEF with PH domain and SH3 binding motif 1 | 9649 | NA |
| NA | ENSG00000136859 | ANGPTL2 | angiopoietin like 2 | 23452 | Angiopoietins are members of the vascular endothelial growth factor family and the only known growth factors largely specific for vascular endothelium. Angiopoietin-1, angiopoietin-2, and angiopoietin-4 participate in the formation of blood vessels. ANGPTL2 protein is a secreted glycoprotein with homology to the angiopoietins and may exert a function on endothelial cells through autocrine or paracrine action. |
| NA | ENSG00000136895 | GARNL3 | GTPase activating Rap/RanGAP domain like 3 | 84253 | NA |
| NA | ENSG00000136856 | SLC2A8 | solute carrier family 2 member 8 | 29988 | This gene belongs to the solute carrier 2A family, which includes intracellular glucose transporters. Based on sequence comparison, the glucose transporters are grouped into three classes and this gene is a member of class II. The encoded protein, like other members of the family, contains several conserved residues and motifs and 12 transmembrane domains with both amino and carboxyl ends being on the cytosolic side of the membrane. Alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000196152 | ZNF79 | zinc finger protein 79 | 7633 | NA |
| NA | ENSG00000197958 | RPL12 | ribosomal protein L12 | 6136 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L11P family of ribosomal proteins. It is located in the cytoplasm. The protein binds directly to the 26S rRNA. This gene is co-transcribed with the U65 snoRNA, which is located in its fourth intron. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000148356 | LRSAM1 | leucine rich repeat and sterile alpha motif containing 1 | 90678 | This gene encodes a ring finger protein involved in a variety of functions, including regulation of signaling pathways and cell adhesion, mediation of self-ubiquitylation, and involvement in cargo sorting during receptor endocytosis. Mutations in this gene have been associated with Charcot-Marie-Tooth disease. Multiple transcript variants encoding different isoforms have been identified for this gene. |
| NA | ENSG00000136830 | FAM129B | family with sequence similarity 129 member B | 64855 | NA |
| NA | ENSG00000136854 | STXBP1 | syntaxin binding protein 1 | 6812 | This gene encodes a syntaxin-binding protein. The encoded protein appears to play a role in release of neurotransmitters via regulation of syntaxin, a transmembrane attachment protein receptor. Mutations in this gene have been associated with infantile epileptic encephalopathy-4. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000187024 | PTRH1 | peptidyl-tRNA hydrolase 1 homolog | 138428 | NA |
| NA | ENSG00000160404 | TOR2A | torsin family 2 member A | 27433 | This gene encodes a member of the AAA family of adenosine triphosphatases with similarity to Clp proteases and heat shock proteins. Alternative splicing at this locus results in the translation of multiple isoforms of the encoded protein, some of which contain salusin peptides in the C-terminal region. These peptides may play roles in hypotension, myocardial growth and the induction of mitogenesis, and may also be involved in the pathogenesis of atherosclerosis. The antimicrobial peptide salusin-beta has antibacterial activity. |
| NA | ENSG00000095370 | SH2D3C | SH2 domain containing 3C | 10044 | This gene encodes an adaptor protein and member of a cytoplasmic protein family involved in cell migration. The encoded protein contains a putative Src homology 2 (SH2) domain and guanine nucleotide exchange factor-like domain which allows this signaling protein to form a complex with scaffolding protein Crk-associated substrate. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000136807 | CDK9 | cyclin-dependent kinase 9 | 1025 | The protein encoded by this gene is a member of the cyclin-dependent protein kinase (CDK) family. CDK family members are highly similar to the gene products of S. cerevisiae cdc28, and S. pombe cdc2, and known as important cell cycle regulators. This kinase was found to be a component of the multiprotein complex TAK/P-TEFb, which is an elongation factor for RNA polymerase II-directed transcription and functions by phosphorylating the C-terminal domain of the largest subunit of RNA polymerase II. This protein forms a complex with and is regulated by its regulatory subunit cyclin T or cyclin K. HIV-1 Tat protein was found to interact with this protein and cyclin T, which suggested a possible involvement of this protein in AIDS. |
| NA | ENSG00000136877 | FPGS | folylpolyglutamate synthase | 2356 | This gene encodes the folylpolyglutamate synthetase enzyme. This enzyme has a central role in establishing and maintaining both cytosolic and mitochondrial folylpolyglutamate concentrations and, therefore, is essential for folate homeostasis and the survival of proliferating cells. This enzyme catalyzes the ATP-dependent addition of glutamate moieties to folate and folate derivatives. Alternative splicing results in transcript variants encoding different isoforms. |
| NA | ENSG00000106991 | ENG | endoglin | 2022 | This gene encodes a homodimeric transmembrane protein which is a major glycoprotein of the vascular endothelium. This protein is a component of the transforming growth factor beta receptor complex and it binds to the beta1 and beta3 peptides with high affinity. Mutations in this gene cause hereditary hemorrhagic telangiectasia, also known as Osler-Rendu-Weber syndrome 1, an autosomal dominant multisystemic vascular dysplasia. This gene may also be involved in preeclampsia and several types of cancer. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000106992 | AK1 | adenylate kinase 1 | 203 | This gene encodes an adenylate kinase enzyme involved in energy metabolism and homeostasis of cellular adenine nucleotide ratios in different intracellular compartments. This gene is highly expressed in skeletal muscle, brain and erythrocytes. Certain mutations in this gene resulting in a functionally inadequate enzyme are associated with a rare genetic disorder causing nonspherocytic hemolytic anemia. Alternative splicing of this gene results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000160408 | ST6GALNAC6 | ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 6 | 30815 | ST6GALNAC6 belongs to a family of sialyltransferases that modify proteins and ceramides on the cell surface to alter cell-cell or cell-extracellular matrix interactions (Tsuchida et al., 2003 [PubMed 12668675]). |
| NA | ENSG00000136840 | ST6GALNAC4 | ST6 (alpha-N-acetyl-neuraminyl-2,3-beta-galactosyl-1,3)-N-acetylgalactosaminide alpha-2,6-sialyltransferase 4 | 27090 | The protein encoded by this gene is a type II membrane protein that catalyzes the transfer of sialic acid from CMP-sialic acid to galactose-containing substrates. The encoded protein prefers glycoproteins rather than glycolipids as substrates and shows restricted substrate specificity, utilizing only the trisaccharide sequence Neu5Ac-alpha-2,3-Gal-beta-1,3-GalNAc. In addition, it is involved in the synthesis of ganglioside GD1A from GM1B. The encoded protein is normally found in the Golgi apparatus but can be proteolytically processed to a soluble form. This protein is a member of glycosyltransferase family 29. Transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000167103 | PIP5KL1 | phosphatidylinositol-4-phosphate 5-kinase like 1 | 138429 | PIP5KL1 is a phosphoinositide kinase-like protein that lacks intrinsic lipid kinase activity but associates with type I PIPKs (see PIP5K1A; MIM 603275) and may play a role in localization of PIPK activity (Chang et al., 2004 [PubMed 14701839]). |
| NA | ENSG00000136908 | DPM2 | dolichyl-phosphate mannosyltransferase polypeptide 2, regulatory subunit | 8818 | Dolichol-phosphate mannose (Dol-P-Man) serves as a donor of mannosyl residues on the lumenal side of the endoplasmic reticulum (ER). Lack of Dol-P-Man results in defective surface expression of GPI-anchored proteins. Dol-P-Man is synthesized from GDP-mannose and dolichol-phosphate on the cytosolic side of the ER by the enzyme dolichyl-phosphate mannosyltransferase. The protein encoded by this gene is a hydrophobic protein that contains 2 predicted transmembrane domains and a putative ER localization signal near the C terminus. This protein associates with DPM1 in vivo and is required for the ER localization and stable expression of DPM1 and also enhances the binding of dolichol-phosphate to DPM1. |
| NA | ENSG00000167106 | FAM102A | family with sequence similarity 102 member A | 399665 | NA |
| NA | ENSG00000171169 | NAIF1 | nuclear apoptosis inducing factor 1 | 203245 | NA |
| NA | ENSG00000148339 | SLC25A25 | solute carrier family 25 member 25 | 114789 | The protein encoded by this gene belongs to the family of calcium-binding mitochondrial carriers, with a characteristic mitochondrial carrier domain at the C-terminus. These proteins are found in the inner membranes of mitochondria, and function as transport proteins. They shuttle metabolites, nucleotides and cofactors through the mitochondrial membrane and thereby connect and/or regulate cytoplasm and matrix functions. This protein may function as an ATP-Mg/Pi carrier that mediates the transport of Mg-ATP in exchange for phosphate, and likely responsible for the net uptake or efflux of adenine nucleotides into or from the mitochondria. Alternatively spliced transcript variants encoding different isoforms with a common C-terminus but variable N-termini have been described for this gene. |
| NA | ENSG00000148334 | PTGES2 | prostaglandin E synthase 2 | 80142 | The protein encoded by this gene is a membrane-associated prostaglandin E synthase, which catalyzes the conversion of prostaglandin H2 to prostaglandin E2. This protein also has been shown to activate the transcription regulated by a gamma-interferon-activated transcription element (GATE). Multiple transcript variants have been found for this gene. |
| NA | ENSG00000171159 | C9orf16 | chromosome 9 open reading frame 16 | 79095 | NA |
| NA | ENSG00000148337 | CIZ1 | CDKN1A interacting zinc finger protein 1 | 25792 | The protein encoded by this gene is a zinc finger DNA binding protein that interacts with CIP1, part of a complex with cyclin E. The encoded protein may regulate the cellular localization of CIP1. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000106976 | DNM1 | dynamin 1 | 1759 | This gene encodes a member of the dynamin subfamily of GTP-binding proteins. The encoded protein possesses unique mechanochemical properties used to tubulate and sever membranes, and is involved in clathrin-mediated endocytosis and other vesicular trafficking processes. Actin and other cytoskeletal proteins act as binding partners for the encoded protein, which can also self-assemble leading to stimulation of GTPase activity. More than sixty highly conserved copies of the 3’ region of this gene are found elsewhere in the genome, particularly on chromosomes Y and 15. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000167110 | GOLGA2 | golgin A2 | 2801 | The Golgi apparatus, which participates in glycosylation and transport of proteins and lipids in the secretory pathway, consists of a series of stacked cisternae (flattened membrane sacs). Interactions between the Golgi and microtubules are thought to be important for the reorganization of the Golgi after it fragments during mitosis. This gene encodes one of the golgins, a family of proteins localized to the Golgi. This encoded protein has been postulated to play roles in the stacking of Golgi cisternae and in vesicular transport. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of these variants has not been determined. |
| NA | ENSG00000167112 | TRUB2 | TruB pseudouridine (psi) synthase family member 2 | 26995 | Pseudouridine is an abundant component of rRNAs and tRNAs and is enzymatically generated by isomerization of uridine by pseudouridine synthase (Zucchini et al., 2003 [PubMed 12736709]). |
| NA | ENSG00000167113 | COQ4 | coenzyme Q4 | 51117 | This gene encodes a component of the coenzyme Q biosynthesis pathway. Coenzyme Q, an essential component of the electron transport chain, shuttles electrons between complexes I or II to complex III of the mitochondrial transport chain. This protein appears to play a structural role in stabilizing a complex that contains most of the coenzyme Q biosynthesis enzymes. Mutations in this gene are associated with mitochondrial disorders linked to coenzyme Q deficiency. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000167114 | SLC27A4 | solute carrier family 27 member 4 | 10999 | This gene encodes a member of a family of fatty acid transport proteins, which are involved in translocation of long-chain fatty acids cross the plasma membrane. This protein is expressed at high levels on the apical side of mature enterocytes in the small intestine, and appears to be the principal fatty acid transporter in enterocytes. Clinical studies suggest this gene as a candidate gene for the insulin resistance syndrome. Mutations in this gene have been associated with ichthyosis prematurity syndrome. |
| NA | ENSG00000167118 | URM1 | ubiquitin related modifier 1 | 81605 | NA |
| NA | ENSG00000136811 | ODF2 | outer dense fiber of sperm tails 2 | 4957 | The outer dense fibers are cytoskeletal structures that surround the axoneme in the middle piece and principal piece of the sperm tail. The fibers function in maintaining the elastic structure and recoil of the sperm tail as well as in protecting the tail from shear forces during epididymal transport and ejaculation. Defects in the outer dense fibers lead to abnormal sperm morphology and infertility. This gene encodes one of the major outer dense fiber proteins. Alternative splicing results in multiple transcript variants. The longer transcripts, also known as ‘Cenexins’, encode proteins with a C-terminal extension that are differentially targeted to somatic centrioles and thought to be crucial for the formation of microtubule organizing centers. |
| NA | ENSG00000119392 | GLE1 | GLE1, RNA export mediator | 2733 | This gene encodes a predicted 75-kDa polypeptide with high sequence and structure homology to yeast Gle1p, which is nuclear protein with a leucine-rich nuclear export sequence essential for poly(A)+RNA export. Inhibition of human GLE1L by microinjection of antibodies against GLE1L in HeLa cells resulted in inhibition of poly(A)+RNA export. Immunoflourescence studies show that GLE1L is localized at the nuclear pore complexes. This localization suggests that GLE1L may act at a terminal step in the export of mature RNA messages to the cytoplasm. Two alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197694 | SPTAN1 | spectrin alpha, non-erythrocytic 1 | 6709 | Spectrins are a family of filamentous cytoskeletal proteins that function as essential scaffold proteins that stabilize the plasma membrane and organize intracellular organelles. Spectrins are composed of alpha and beta dimers that associate to form tetramers linked in a head-to-head arrangement. This gene encodes an alpha spectrin that is specifically expressed in nonerythrocytic cells. The encoded protein has been implicated in other cellular functions including DNA repair and cell cycle regulation. Mutations in this gene are the cause of early infantile epileptic encephalopathy-5. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000119333 | WDR34 | WD repeat domain 34 | 89891 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. Defects in this gene are a cause of short-rib thoracic dysplasia 11 with or without polydactyly. |
| NA | ENSG00000119335 | SET | SET nuclear proto-oncogene | 6418 | The protein encoded by this gene inhibits acetylation of nucleosomes, especially histone H4, by histone acetylases (HAT). This inhibition is most likely accomplished by masking histone lysines from being acetylated, and the consequence is to silence HAT-dependent transcription. The encoded protein is part of a complex localized to the endoplasmic reticulum but is found in the nucleus and inhibits apoptosis following attack by cytotoxic T lymphocytes. This protein can also enhance DNA replication of the adenovirus genome. Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000160447 | PKN3 | protein kinase N3 | 29941 | NA |
| NA | ENSG00000160446 | ZDHHC12 | zinc finger DHHC-type containing 12 | 84885 | NA |
| NA | ENSG00000160445 | ZER1 | zyg-11 related, cell cycle regulator | 10444 | This gene encodes a subunit of an E3 ubiquitin ligase complex that may be involved in meiosis. The encoded protein contains three leucine-rich repeat motifs. |
| NA | ENSG00000107021 | TBC1D13 | TBC1 domain family member 13 | 54662 | NA |
| NA | ENSG00000167136 | ENDOG | endonuclease G | 2021 | The protein encoded by this gene is a nuclear encoded endonuclease that is localized in the mitochondrion. The encoded protein is widely distributed among animals and cleaves DNA at GC tracts. This protein is capable of generating the RNA primers required by DNA polymerase gamma to initiate replication of mitochondrial DNA. |
| NA | ENSG00000198917 | C9orf114 | chromosome 9 open reading frame 114 | 51490 | NA |
| NA | ENSG00000171097 | CCBL1 | cysteine conjugate-beta lyase, cytoplasmic | 883 | This gene encodes a cytosolic enzyme that is responsible for the metabolism of cysteine conjugates of certain halogenated alkenes and alkanes. This metabolism can form reactive metabolites leading to nephrotoxicity and neurotoxicity. Increased levels of this enzyme have been linked to schizophrenia. Multiple transcript variants that encode different isoforms have been identified for this gene. |
| NA | ENSG00000136802 | LRRC8A | leucine-rich repeat containing 8 family member A | 56262 | This gene encodes a protein belonging to the leucine-rich repeat family of proteins, which are involved in diverse biological processes, including cell adhesion, cellular trafficking, and hormone-receptor interactions. This family member is a putative four-pass transmembrane protein that plays a role in B cell development. Defects in this gene cause autosomal dominant non-Bruton type agammaglobulinemia, an immunodeficiency disease resulting from defects in B cell maturation. Multiple alternatively spliced transcript variants, which encode the same protein, have been identified for this gene. |
| NA | ENSG00000175287 | PHYHD1 | phytanoyl-CoA dioxygenase domain containing 1 | 254295 | NA |
| NA | ENSG00000175283 | DOLK | dolichol kinase | 22845 | The protein encoded by this gene catalyzes the CTP-mediated phosphorylation of dolichol, and is involved in the synthesis of Dol-P-Man, which is an essential glycosyl carrier lipid for C- and O-mannosylation, N- and O-linked glycosylation of proteins, and for the biosynthesis of glycosyl phosphatidylinositol anchors in endoplasmic reticulum. Mutations in this gene are associated with dolichol kinase deficiency. |
| NA | ENSG00000095319 | NUP188 | nucleoporin 188kDa | 23511 | The nuclear pore complex (NPC) is found on the nuclear envelope and forms a gateway that regulates the flow of proteins and RNAs between the cytoplasm and nucleoplasm. The NPC is comprised of approximately 30 distinct proteins collectively known as nucleoporins. Nucleoporins are pore-complex-specific glycoproteins which often have cytoplasmically oriented O-linked N-acetylglucosamine residues and numerous repeats of the pentapeptide sequence XFXFG. However, the nucleoporin protein encoded by this gene does not contain the typical FG repeat sequences found in most vertebrate nucleoporins. This nucleoporin is thought to form part of the scaffold for the central channel of the nuclear pore. |
| NA | ENSG00000148341 | SH3GLB2 | SH3-domain GRB2-like endophilin B2 | 56904 | NA |
| NA | ENSG00000148343 | FAM73B | family with sequence similarity 73 member B | 84895 | NA |
| NA | ENSG00000095321 | CRAT | carnitine O-acetyltransferase | 1384 | This gene encodes carnitine acetyltransferase (CRAT), which is a key enzyme in the metabolic pathway in mitochondria, peroxisomes and endoplasmic reticulum. CRAT catalyzes the reversible transfer of acyl groups from an acyl-CoA thioester to carnitine and regulates the ratio of acylCoA/CoA in the subcellular compartments. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000119383 | PPP2R4 | protein phosphatase 2A regulatory subunit 4 | 5524 | Protein phosphatase 2A is one of the four major Ser/Thr phosphatases and is implicated in the negative control of cell growth and division. Protein phosphatase 2A holoenzymes are heterotrimeric proteins composed of a structural subunit A, a catalytic subunit C, and a regulatory subunit B. The regulatory subunit is encoded by a diverse set of genes that have been grouped into the B/PR55, B’/PR61, and B’‘/PR72 families. These different regulatory subunits confer distinct enzymatic specificities and intracellular localizations to the holozenzyme. The product of this gene belongs to the B’ family. This gene encodes a specific phosphotyrosyl phosphatase activator of the dimeric form of protein phosphatase 2A. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000148335 | NTMT1 | N-terminal Xaa-Pro-Lys N-methyltransferase 1 | 28989 | The METTL11A gene encodes an N-terminal methyltransferase for the RAN (MIM 601179) guanine nucleotide exchange factor regulator of chromosome condensation 1 (RCC1; MIM 179710). METTL11A enzyme alpha-N-methylates other protein targets such as SET (MIM 600960) and RB (MIM 180200). |
| NA | ENSG00000148331 | ASB6 | ankyrin repeat and SOCS box containing 6 | 140459 | The protein encoded by this gene belongs to a family of ankyrin repeat proteins that, along with four other protein families, contain a C-terminal SOCS box motif. Growing evidence suggests that the SOCS box, similar to the F-box, acts as a bridge between specific substrate-binding domains and the more generic proteins that comprise a large family of E3 ubiquitin protein ligases. Alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000167157 | PRRX2 | paired related homeobox 2 | 51450 | The DNA-associated protein encoded by this gene is a member of the paired family of homeobox proteins. Expression is localized to proliferating fetal fibroblasts and the developing dermal layer, with downregulated expression in adult skin. Increases in expression of this gene during fetal but not adult wound healing suggest a possible role in mechanisms that control mammalian dermal regeneration and prevent formation of scar response to wounding. The expression patterns provide evidence consistent with a role in fetal skin development and a possible role in cellular proliferation. |
| NA | ENSG00000148344 | PTGES | prostaglandin E synthase | 9536 | The protein encoded by this gene is a glutathione-dependent prostaglandin E synthase. The expression of this gene has been shown to be induced by proinflammatory cytokine interleukin 1 beta (IL1B). Its expression can also be induced by tumor suppressor protein TP53, and may be involved in TP53 induced apoptosis. Knockout studies in mice suggest that this gene may contribute to the pathogenesis of collagen-induced arthritis and mediate acute pain during inflammatory responses. |
| NA | ENSG00000136816 | TOR1B | torsin family 1 member B | 27348 | The protein encoded by this gene is an ATPase found primarily in the endoplasmic reticulum and nuclear envelope. This gene has a highly-similar neighboring gene, TOR1A, that encodes a protein that is likely to interact in a complex with this protein. Finally, this protein may act as a chaperone and play a role in maintaining the integrity of the nuclear envelope and endoplasmic reticulum. Several transcript variants, some protein-coding and others non-protein coding, have been found for this gene. |
| NA | ENSG00000136827 | TOR1A | torsin family 1 member A | 1861 | The protein encoded by this gene is a member of the AAA family of adenosine triphosphatases (ATPases), is related to the Clp protease/heat shock family and is expressed prominently in the substantia nigra pars compacta. Mutations in this gene result in the autosomal dominant disorder, torsion dystonia 1. |
| NA | ENSG00000136819 | C9orf78 | chromosome 9 open reading frame 78 | 51759 | NA |
| NA | ENSG00000136878 | USP20 | ubiquitin specific peptidase 20 | 10868 | This gene encodes a ubiquitin specific processing protease that was first identified as a substrate of the VHL (von Hippel-Lindau disease) protein E3 ubiquitin ligase complex. In addition to being ubiquitinated by the VHL-E3 ligase complex, this enzyme deubiquitinates hypoxia-inducible factor (HIF)-1 alpha and thereby causes increased expression of HIF-1alpha targeted genes which play a role in angiogenesis, glucose metabolism, cell proliferation and metastasis. The enzyme encoded by this gene also regulates G-protein coupled receptor signaling by mediating the deubiquitination of beta-2 adrenergic receptor (ADRB2). This enzyme is a ubiquitously expressed thiolester hydrolase. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000187239 | FNBP1 | formin binding protein 1 | 23048 | The protein encoded by this gene is a member of the formin-binding-protein family. The protein contains an N-terminal Fer/Cdc42-interacting protein 4 (CIP4) homology (FCH) domain followed by a coiled-coil domain, a proline-rich motif, a second coiled-coil domain, a Rho family protein-binding domain (RBD), and a C-terminal SH3 domain. This protein binds sorting nexin 2 (SNX2), tankyrase (TNKS), and dynamin; an interaction between this protein and formin has not been demonstrated yet in human. |
| NA | ENSG00000148358 | GPR107 | G protein-coupled receptor 107 | 57720 | NA |
| NA | ENSG00000107130 | NCS1 | neuronal calcium sensor 1 | 23413 | This gene is a member of the neuronal calcium sensor gene family, which encode calcium-binding proteins expressed predominantly in neurons. The protein encoded by this gene regulates G protein-coupled receptor phosphorylation in a calcium-dependent manner and can substitute for calmodulin. The protein is associated with secretory granules and modulates synaptic transmission and synaptic plasticity. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000107164 | FUBP3 | far upstream element binding protein 3 | 8939 | NA |
| NA | ENSG00000097007 | ABL1 | ABL proto-oncogene 1, non-receptor tyrosine kinase | 25 | This gene is a protooncogene that encodes a protein tyrosine kinase involved in a variety of cellular processes, including cell division, adhesion, differentiation, and response to stress. The activity of the protein is negatively regulated by its SH3 domain, whereby deletion of the region encoding this domain results in an oncogene. The ubiquitously expressed protein has DNA-binding activity that is regulated by CDC2-mediated phosphorylation, suggesting a cell cycle function. This gene has been found fused to a variety of translocation partner genes in various leukemias, most notably the t(9;22) translocation that results in a fusion with the 5’ end of the breakpoint cluster region gene (BCR; MIM:151410). Alternative splicing of this gene results in two transcript variants, which contain alternative first exons that are spliced to the remaining common exons. |
| NA | ENSG00000130720 | FIBCD1 | fibrinogen C domain containing 1 | 84929 | FIBCD1 is a conserved type II transmembrane endocytic receptor that binds chitin and is located primarily in the intestinal brush border (Schlosser et al., 2009 [PubMed 19710473]). |
| NA | ENSG00000050555 | LAMC3 | laminin subunit gamma 3 | 10319 | Laminins, a family of extracellular matrix glycoproteins, are the major noncollagenous constituent of basement membranes. They have been implicated in a wide variety of biological processes including cell adhesion, differentiation, migration, signaling, neurite outgrowth and metastasis. Laminins are composed of 3 non identical chains: laminin alpha, beta and gamma (formerly A, B1, and B2, respectively) and they form a cruciform structure consisting of 3 short arms, each formed by a different chain, and a long arm composed of all 3 chains. Each laminin chain is a multidomain protein encoded by a distinct gene. Several isoforms of each chain have been described. Different alpha, beta and gamma chain isomers combine to give rise to different heterotrimeric laminin isoforms which are designated by Arabic numerals in the order of their discovery, i.e. alpha1beta1gamma1 heterotrimer is laminin 1. The biological functions of the different chains and trimer molecules are largely unknown, but some of the chains have been shown to differ with respect to their tissue distribution, presumably reflecting diverse functions in vivo. This gene encodes the gamma chain isoform laminin, gamma 3. The gamma 3 chain is most similar to the gamma 1 chain, and contains all the 6 domains expected of the gamma chain. It is a component of laminin 12. The gamma 3 chain is broadly expressed in skin, heart, lung, and the reproductive tracts. In skin, it is seen within the basement membrane of the dermal-epidermal junction at points of nerve penetration. Gamma 3 is also a prominent element of the apical surface of ciliated epithelial cells of lung, oviduct, epididymis, ductus deferens, and seminiferous tubules. The distribution of gamma 3-containing laminins along ciliated epithelial surfaces suggests that the apical laminins are important in the morphogenesis and structural stability of the ciliated processes of these cells. |
| NA | ENSG00000126878 | AIF1L | allograft inflammatory factor 1 like | 83543 | NA |
| NA | ENSG00000126883 | NUP214 | nucleoporin 214kDa | 8021 | The nuclear pore complex is a massive structure that extends across the nuclear envelope, forming a gateway that regulates the flow of macromolecules between the nucleus and the cytoplasm. Nucleoporins are the main components of the nuclear pore complex in eukaryotic cells. This gene is a member of the FG-repeat-containing nucleoporins. The protein encoded by this gene is localized to the cytoplasmic face of the nuclear pore complex where it is required for proper cell cycle progression and nucleocytoplasmic transport. The 3’ portion of this gene forms a fusion gene with the DEK gene on chromosome 6 in a t(6,9) translocation associated with acute myeloid leukemia and myelodysplastic syndrome. Alternative splicing of this gene results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000130723 | PRRC2B | proline rich coiled-coil 2B | 84726 | NA |
| NA | ENSG00000130714 | POMT1 | protein O-mannosyltransferase 1 | 10585 | The protein encoded by this gene is an O-mannosyltransferase that requires interaction with the product of the POMT2 gene for enzymatic function. The encoded protein is found in the membrane of the endoplasmic reticulum. Defects in this gene are a cause of Walker-Warburg syndrome (WWS) and limb-girdle muscular dystrophy type 2K (LGMD2K). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000130717 | UCK1 | uridine-cytidine kinase 1 | 83549 | This gene encodes a uridine-cytidine kinase that catalyzes the phosphorylation of uridine and cytidine to uridine monophosphate (UMP) and cytidine monophosphate (CMP) but not the phosphorylation of deoxyribonucleosides or purine ribonucleosides. This enzyme can also phosphorylate uridine and cytidine analogs and uses both ATP and GTP as a phosphate donor. Alternative splicing results in multiple splice variants encoding distinct isoforms. |
| NA | ENSG00000107263 | RAPGEF1 | Rap guanine nucleotide exchange factor 1 | 2889 | This gene encodes a human guanine nucleotide exchange factor. It transduces signals from CRK by binding the SH3 domain of CRK, and activating several members of the Ras family of GTPases. This signaling cascade that may be involved in apoptosis, integrin-mediated signal transduction, and cell transformation. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some variants has not been determined. |
| NA | ENSG00000160563 | MED27 | mediator complex subunit 27 | 9442 | The activation of gene transcription is a multistep process that is triggered by factors that recognize transcriptional enhancer sites in DNA. These factors work with co-activators to direct transcriptional initiation by the RNA polymerase II apparatus. The protein encoded by this gene is a subunit of the CRSP (cofactor required for SP1 activation) complex, which, along with TFIID, is required for efficient activation by SP1. This protein is also a component of other multisubunit complexes e.g. thyroid hormone receptor-(TR-) associated proteins which interact with TR and facilitate TR function on DNA templates in conjunction with initiation factors and cofactors. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene, and a pseudogene of this gene is located on the long arm of chromosome 5. |
| NA | ENSG00000107290 | SETX | senataxin | 23064 | This gene encodes a protein named for its homology to the Sen1p protein of fungi which has RNA helicase activity encoded by a domain at the C-terminal end of the protein. The protein encoded by this gene contains a DNA/RNA helicase domain at its C-terminal end which suggests that it may be involved in both DNA and RNA processing. Mutations in this gene have been associated with ataxia-ocular apraxia-2 (AOA2) and an autosomal dominant form of juvenile amyotrophic lateral sclerosis (ALS4). |
| NA | ENSG00000125485 | DDX31 | DEAD-box helicase 31 | 64794 | DEAD box proteins, characterized by the conserved motif Asp-Glu-Ala-Asp (DEAD), are putative RNA helicases. They are implicated in a number of cellular processes involving alteration of RNA secondary structure such as translation initiation, nuclear and mitochondrial splicing, and ribosome and spliceosome assembly. Based on their distribution patterns, some members of this DEAD box protein family are believed to be involved in embryogenesis, spermatogenesis, and cellular growth and division. This gene encodes a member of this family. The function of this member has not been determined. Alternative splicing of this gene generates 2 transcript variants. |
| NA | ENSG00000125484 | GTF3C4 | general transcription factor IIIC subunit 4 | 9329 | NA |
| NA | ENSG00000165699 | TSC1 | tuberous sclerosis 1 | 7248 | This gene encodes a growth inhibitory protein thought to play a role in the stabilization of tuberin. Mutations in this gene have been associated with tuberous sclerosis. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000148308 | GTF3C5 | general transcription factor IIIC subunit 5 | 9328 | NA |
| NA | ENSG00000160271 | RALGDS | ral guanine nucleotide dissociation stimulator | 5900 | Guanine nucleotide dissociation stimulators (GDSs, or exchange factors), such as RALGDS, are effectors of Ras-related GTPases (see MIM 190020) that participate in signaling for a variety of cellular processes. |
| NA | ENSG00000148288 | GBGT1 | globoside alpha-1,3-N-acetylgalactosaminyltransferase 1 | 26301 | This gene encodes a glycosyltransferase that plays a role in the synthesis of Forssman glycolipid (FG), a member of the globoseries glycolipid family. Glycolipids such as FG form attachment sites for the binding of pathogens to cells; expression of this protein may determine host tropism to microorganisms. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000148296 | SURF6 | surfeit 6 | 6838 | This gene encodes a conserved protein that is localized to the nucleolus. The encoded protein may function as a nucleolar-matrix protein with nucleic acid-binding properties. There is a pseudogene for this gene on chromosome Y. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000148297 | MED22 | mediator complex subunit 22 | 6837 | This gene encodes a protein component of the mediator complex, which functions in the regulation of transcription by bridging interactions between gene-specific regulatory factors, RNA polymerase II, and general transcription factors. Alternatively spliced transcript variants encoding different isoforms have been observed. |
| NA | ENSG00000148303 | RPL7A | ribosomal protein L7a | 6130 | Cytoplasmic ribosomes, organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the L7AE family of ribosomal proteins. It can interact with a subclass of nuclear hormone receptors, including thyroid hormone receptor, and inhibit their ability to transactivate by preventing their binding to their DNA response elements. This gene is included in the surfeit gene cluster, a group of very tightly linked genes that do not share sequence similarity. It is co-transcribed with the U24, U36a, U36b, and U36c small nucleolar RNA genes, which are located in its second, fifth, fourth, and sixth introns, respectively. This gene rearranges with the trk proto-oncogene to form the chimeric oncogene trk-2h, which encodes an oncoprotein consisting of the N terminus of ribosomal protein L7a fused to the receptor tyrosine kinase domain of trk. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000148290 | SURF1 | surfeit 1 | 6834 | This gene encodes a protein localized to the inner mitochondrial membrane and thought to be involved in the biogenesis of the cytochrome c oxidase complex. The protein is a member of the SURF1 family, which includes the related yeast protein SHY1 and rickettsial protein RP733. The gene is located in the surfeit gene cluster, a group of very tightly linked genes that do not share sequence similarity, where it shares a bidirectional promoter with SURF2 on the opposite strand. Defects in this gene are a cause of Leigh syndrome, a severe neurological disorder that is commonly associated with systemic cytochrome c oxidase deficiency. |
| NA | ENSG00000148291 | SURF2 | surfeit 2 | 6835 | This gene shares a bidirectional promoter with surfeit 1 (SURF1; GeneID: 6834), which is located on the opposite strand. It encodes a conserved protein that is expressed in a variety of tissues. |
| NA | ENSG00000148248 | SURF4 | surfeit 4 | 6836 | This gene is located in the surfeit gene cluster, which is comprised of very tightly linked housekeeping genes that do not share sequence similarity. The encoded protein is a conserved integral membrane protein that interacts with endoplasmic reticulum-Golgi intermediate compartment proteins. Disruption of this gene results in reduced numbers of endoplasmic reticulum-Golgi intermediate compartment clusters and redistribution of coat protein I to the cytosol. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000148300 | REXO4 | REX4 homolog, 3’-5’ exonuclease | 57109 | NA |
| NA | ENSG00000160325 | CACFD1 | calcium channel flower domain containing 1 | 11094 | NA |
| NA | ENSG00000160326 | SLC2A6 | solute carrier family 2 member 6 | 11182 | Hexose transport into mammalian cells is catalyzed by a family of membrane proteins, including SLC2A6, that contain 12 transmembrane domains and a number of critical conserved residues. |
| NA | ENSG00000123453 | SARDH | sarcosine dehydrogenase | 1757 | This gene encodes an enzyme localized to the mitochondrial matrix which catalyzes the oxidative demethylation of sarcosine. This enzyme is distinct from another mitochondrial matrix enzyme, dimethylglycine dehydrogenase, which catalyzes a reaction resulting in the formation of sarcosine. Mutations in this gene are associated with sarcosinemia. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000160293 | VAV2 | vav guanine nucleotide exchange factor 2 | 7410 | VAV2 is the second member of the VAV guanine nucleotide exchange factor family of oncogenes. Unlike VAV1, which is expressed exclusively in hematopoietic cells, VAV2 transcripts were found in most tissues. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169925 | BRD3 | bromodomain containing 3 | 8019 | This gene was identified based on its homology to the gene encoding the RING3 protein, a serine/threonine kinase. The gene localizes to 9q34, a region which contains several major histocompatibility complex (MHC) genes. The function of the encoded protein is not known. |
| NA | ENSG00000196363 | WDR5 | WD repeat domain 5 | 11091 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This protein contains 7 WD repeats. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000186350 | RXRA | retinoid X receptor alpha | 6256 | Retinoid X receptors (RXRs) and retinoic acid receptors (RARs) are nuclear receptors that mediate the biological effects of retinoids by their involvement in retinoic acid-mediated gene activation. These receptors function as transcription factors by binding as homodimers or heterodimers to specific sequences in the promoters of target genes. The protein encoded by this gene is a member of the steroid and thyroid hormone receptor superfamily of transcriptional regulators. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000130635 | COL5A1 | collagen type V alpha 1 | 1289 | This gene encodes an alpha chain for one of the low abundance fibrillar collagens. Fibrillar collagen molecules are trimers that can be composed of one or more types of alpha chains. Type V collagen is found in tissues containing type I collagen and appears to regulate the assembly of heterotypic fibers composed of both type I and type V collagen. This gene product is closely related to type XI collagen and it is possible that the collagen chains of types V and XI constitute a single collagen type with tissue-specific chain combinations. The encoded procollagen protein occurs commonly as the heterotrimer pro-alpha1(V)-pro-alpha1(V)-pro-alpha2(V). Mutations in this gene are associated with Ehlers-Danlos syndrome, types I and II. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000196422 | PPP1R26 | protein phosphatase 1 regulatory subunit 26 | 9858 | NA |
| NA | ENSG00000160345 | C9orf116 | chromosome 9 open reading frame 116 | 138162 | NA |
| NA | ENSG00000122140 | MRPS2 | mitochondrial ribosomal protein S2 | 51116 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 28S subunit protein that belongs to the ribosomal protein S2 family. Alternatively spliced transcript variants have been observed for this gene. |
| NA | ENSG00000130559 | CAMSAP1 | calmodulin regulated spectrin associated protein 1 | 157922 | NA |
| NA | ENSG00000130560 | UBAC1 | UBA domain containing 1 | 10422 | NA |
| NA | ENSG00000148411 | NACC2 | NACC family member 2 | 138151 | NA |
| NA | ENSG00000238227 | C9orf69 | chromosome 9 open reading frame 69 | 90120 | NA |
| NA | ENSG00000165661 | QSOX2 | quiescin sulfhydryl oxidase 2 | 169714 | QSOX2 is a member of the sulfhydryl oxidase/quiescin-6 (Q6) family (QSOX1; MIM 603120) that regulates the sensitization of neuroblastoma cells for IFN-gamma (IFNG; MIM 147570)-induced cell death (Wittke et al., 2003 [PubMed 14633699]). |
| NA | ENSG00000160360 | GPSM1 | G-protein signaling modulator 1 | 26086 | G-protein signaling modulators (GPSMs) play diverse functional roles through their interaction with G-protein subunits. This gene encodes a receptor-independent activator of G protein signaling, which is one of several factors that influence the basal activity of G-protein signaling systems. The protein contains seven tetratricopeptide repeats in its N-terminal half and four G-protein regulatory (GPR) motifs in its C-terminal half. Multiple alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165684 | SNAPC4 | small nuclear RNA activating complex polypeptide 4 | 6621 | NA |
| NA | ENSG00000165689 | SDCCAG3 | serologically defined colon cancer antigen 3 | 10807 | NA |
| NA | ENSG00000165688 | PMPCA | peptidase, mitochondrial processing alpha subunit | 23203 | The protein encoded by this gene is found in the mitochondrion, where it represents the alpha subunit of a proteolytic heterodimer. This heterodimer is responsible for cleaving the transit peptide from nuclear-encoded mitochondrial proteins. Defects in this gene are a cause of spinocerebellar ataxia, autosomal recessive 2. |
| NA | ENSG00000148384 | INPP5E | inositol polyphosphate-5-phosphatase E | 56623 | The protein encoded by this gene is an inositol 1,4,5-trisphosphate (InsP3) 5-phosphatase. InsP3 5-phosphatases hydrolyze Ins(1,4,5)P3, which mobilizes intracellular calcium and acts as a second messenger mediating cell responses to various stimulation. Studies of the mouse counterpart suggest that this protein may hydrolyze phosphatidylinositol 3,4,5-trisphosphate and phosphatidylinositol 3,5-bisphosphate on the cytoplasmic Golgi membrane and thereby regulate Golgi-vesicular trafficking. Mutations in this gene cause Joubert syndrome; a clinically and genetically heterogenous group of disorders characterized by midbrain-hindbrain malformation and various associated ciliopathies that include retinal dystrophy, nephronophthisis, liver fibrosis and polydactyly. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000148396 | SEC16A | SEC16 homolog A, endoplasmic reticulum export factor | 9919 | This gene encodes a protein that forms part of the Sec16 complex. This protein has a role in protein transport from the endoplasmic reticulum (ER) to the Golgi and mediates COPII vesicle formation at the transitional ER. Alternative splicing results in multiple transcript variants that encode different protein isoforms. |
| NA | ENSG00000148400 | NOTCH1 | notch 1 | 4851 | This gene encodes a member of the NOTCH family of proteins. Members of this Type I transmembrane protein family share structural characteristics including an extracellular domain consisting of multiple epidermal growth factor-like (EGF) repeats, and an intracellular domain consisting of multiple different domain types. Notch signaling is an evolutionarily conserved intercellular signaling pathway that regulates interactions between physically adjacent cells through binding of Notch family receptors to their cognate ligands. The encoded preproprotein is proteolytically processed in the trans-Golgi network to generate two polypeptide chains that heterodimerize to form the mature cell-surface receptor. This receptor plays a role in the development of numerous cell and tissue types. Mutations in this gene are associated with aortic valve disease, Adams-Oliver syndrome, T-cell acute lymphoblastic leukemia, chronic lymphocytic leukemia, and head and neck squamous cell carcinoma. |
| NA | ENSG00000172889 | EGFL7 | EGF like domain multiple 7 | 51162 | This gene encodes a secreted endothelial cell protein that contains two epidermal growth factor-like domains. The encoded protein may play a role in regulating vasculogenesis. This protein may be involved in the growth and proliferation of tumor cells. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000169692 | AGPAT2 | 1-acylglycerol-3-phosphate O-acyltransferase 2 | 10555 | This gene encodes a member of the 1-acylglycerol-3-phosphate O-acyltransferase family. The protein is located within the endoplasmic reticulum membrane and converts lysophosphatidic acid to phosphatidic acid, the second step in de novo phospholipid biosynthesis. Mutations in this gene have been associated with congenital generalized lipodystrophy (CGL), or Berardinelli-Seip syndrome, a disease characterized by a near absence of adipose tissue and severe insulin resistance. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000165716 | FAM69B | family with sequence similarity 69 member B | 138311 | This gene encodes a member of the FAM69 family of cysteine-rich type II transmembrane proteins. These proteins localize to the endoplasmic reticulum but their specific functions are unknown. |
| NA | ENSG00000244187 | TMEM141 | transmembrane protein 141 | 85014 | NA |
| NA | ENSG00000196642 | RABL6 | RAB, member RAS oncogene family-like 6 | 55684 | This gene encodes a member of the Ras superfamily of small GTPases. The encoded protein binds to both GTP and GDP and may play a role in cell growth and survival. Overexpression of this gene may play a role in breast cancer tumorigenesis, and pseudogenes of this gene are located on the long arm of chromosome 2 and the short arm of chromosome 18. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000054148 | PHPT1 | phosphohistidine phosphatase 1 | 29085 | This gene encodes an enzyme that catalyzes the reversible dephosphorylation of histidine residues in proteins. It may be involved in the dephosphorylation of G-beta and ATP citrate lyase and in negatively regulating CD4 T lymphocytes by dephosphorylation and inhibition of KCa3.1 channels. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000177943 | MAMDC4 | MAM domain containing 4 | 158056 | NA |
| NA | ENSG00000127191 | TRAF2 | TNF receptor associated factor 2 | 7186 | The protein encoded by this gene is a member of the TNF receptor associated factor (TRAF) protein family. TRAF proteins associate with, and mediate the signal transduction from members of the TNF receptor superfamily. This protein directly interacts with TNF receptors, and forms a heterodimeric complex with TRAF1. This protein is required for TNF-alpha-mediated activation of MAPK8/JNK and NF-kappaB. The protein complex formed by this protein and TRAF1 interacts with the inhibitor-of-apoptosis proteins (IAPs), and functions as a mediator of the anti-apoptotic signals from TNF receptors. The interaction of this protein with TRADD, a TNF receptor associated apoptotic signal transducer, ensures the recruitment of IAPs for the direct inhibition of caspase activation. BIRC2/c-IAP1, an apoptosis inhibitor possessing ubiquitin ligase activity, can unbiquitinate and induce the degradation of this protein, and thus potentiate TNF-induced apoptosis. Multiple alternatively spliced transcript variants have been found for this gene, but the biological validity of only one transcript has been determined. |
| NA | ENSG00000159069 | FBXW5 | F-box and WD repeat domain containing 5 | 54461 | This gene encodes a member of the F-box protein family, members of which are characterized by an approximately 40 amino acid motif, the F-box. The F-box proteins constitute one of the four subunits of ubiquitin protein ligase complex called SCFs (SKP1-cullin-F-box), which function in phosphorylation-dependent ubiquitination. The F-box proteins are divided into three classes: Fbws containing WD-40 domains, Fbls containing leucine-rich repeats, and Fbxs containing either different protein-protein interaction modules or no recognizable motifs. The protein encoded by this gene contains WD-40 domains, in addition to an F-box motif, so it belongs to the Fbw class. Alternatively spliced transcript variants encoding distinct isoforms have been identified for this gene, however, they were found to be nonsense-mediated mRNA decay (NMD) candidates, hence not represented. |
| NA | ENSG00000148362 | C9orf142 | chromosome 9 open reading frame 142 | 286257 | NA |
| NA | ENSG00000107331 | ABCA2 | ATP binding cassette subfamily A member 2 | 20 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intracellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the ABC1 subfamily. Members of the ABC1 subfamily comprise the only major ABC subfamily found exclusively in multicellular eukaryotes. This protein is highly expressed in brain tissue and may play a role in macrophage lipid metabolism and neural development. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000107281 | NPDC1 | neural proliferation, differentiation and control, 1 | 56654 | NA |
| NA | ENSG00000186193 | SAPCD2 | suppressor APC domain containing 2 | 89958 | NA |
| NA | ENSG00000197355 | UAP1L1 | UDP-N-acetylglucosamine pyrophosphorylase 1 like 1 | 91373 | NA |
| NA | ENSG00000177239 | MAN1B1 | mannosidase alpha class 1B member 1 | 11253 | This gene encodes an enzyme belonging to the glycosyl hydrolase 47 family. This enzyme functions in N-glycan biosynthesis, and is a class I alpha-1,2-mannosidase that specifically converts Man9GlcNAc to Man8GlcNAc isomer B. It is required for N-glycan trimming to Man5-6GlcNAc2 in the endoplasmic-reticulum-associated degradation pathway. Mutations in this gene cause autosomal-recessive intellectual disability. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 11. |
| NA | ENSG00000176978 | DPP7 | dipeptidyl peptidase 7 | 29952 | The protein encoded by this gene is a post-proline cleaving aminopeptidase expressed in quiescent lymphocytes. The resting lymphocytes are maintained through suppression of apoptosis, a state which is disrupted by inhibition of this novel serine protease. The enzyme has strong sequence homology with prolylcarboxypeptidase and is active at both acidic and neutral pH. |
| NA | ENSG00000176101 | SSNA1 | Sjogren syndrome nuclear autoantigen 1 | 8636 | NA |
| NA | ENSG00000176058 | TPRN | taperin | 286262 | This locus encodes a sensory epithelial protein. It was defined by linkage analysis in three Pakistani families to lie between D9S1818 (centromeric) and D9SH6 (telomeric). Mutations at this locus have been associated with autosomal recessive deafness. |
| NA | ENSG00000188566 | NDOR1 | NADPH dependent diflavin oxidoreductase 1 | 27158 | This gene encodes an NADPH-dependent diflavin reductase that contains both flavin mononucleotide (FMN) and flavin adenine dinucleotide (FAD) binding domains. The encoded protein catalyzes the transfer of electrons from NADPH through FAD and FMN cofactors to potential redox partners. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000188229 | TUBB4B | tubulin beta 4B class IVb | 10383 | NA |
| NA | ENSG00000188986 | NELFB | negative elongation factor complex member B | 25920 | NELFB is a subunit of negative elongation factor (NELF), which also includes NELFA (WHSC2; MIM 606026), either NELFC or NELFD (TH1L; MIM 605297), and NELFE (RDBP; MIM 154040). NELF acts with DRB sensitivity-inducing factor (DSIF), a heterodimer of SPT4 (SUPT4H1; MIM 603555) and SPT5 (SUPT5H; MIM 602102), to cause transcriptional pausing of RNA polymerase II (see MIM 180660) (Narita et al., 2003 [PubMed 12612062]). |
| NA | ENSG00000198113 | TOR4A | torsin family 4 member A | 54863 | NA |
| NA | ENSG00000187609 | EXD3 | exonuclease 3’-5’ domain containing 3 | 54932 | NA |
| NA | ENSG00000165802 | NSMF | NMDA receptor synaptonuclear signaling and neuronal migration factor | 26012 | The protein encoded by this gene is involved in guidance of olfactory axon projections and migration of luteinizing hormone-releasing hormone neurons. Defects in this gene are a cause of idiopathic hypogonadotropic hypogonadism (IHH). Several transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000182154 | MRPL41 | mitochondrial ribosomal protein L41 | 64975 | Mammalian mitochondrial ribosomal proteins are encoded by nuclear genes and help in protein synthesis within the mitochondrion. Mitochondrial ribosomes (mitoribosomes) consist of a small 28S subunit and a large 39S subunit. They have an estimated 75% protein to rRNA composition compared to prokaryotic ribosomes, where this ratio is reversed. Another difference between mammalian mitoribosomes and prokaryotic ribosomes is that the latter contain a 5S rRNA. Among different species, the proteins comprising the mitoribosome differ greatly in sequence, and sometimes in biochemical properties, which prevents easy recognition by sequence homology. This gene encodes a 39S subunit protein that belongs to the YmL27 ribosomal protein family. |
| NA | ENSG00000148399 | DPH7 | diphthamide biosynthesis 7 | 92715 | WDR85 is a WD repeat-containing protein that plays a role in the first step of diphthamide biosynthesis (Carette et al., 2009 [PubMed 19965467]). |
| NA | ENSG00000165724 | ZMYND19 | zinc finger MYND-type containing 19 | 116225 | ZMYND19 is a MYND zinc finger domain-containing protein that binds to the C terminus of melanin-concentrating hormone receptor-1 (MCHR1; MIM 601751) (Bachner et al., 2002 [PubMed 12208518]), and to the N termini of alpha-tubulin (TUBA1; MIM 191110), and beta-tubulin (TUBB; MIM 191130) (Francke et al., 2005 [PubMed 16039987]). |
| NA | ENSG00000197070 | ARRDC1 | arrestin domain containing 1 | 92714 | NA |
| NA | ENSG00000203993 | ARRDC1-AS1 | ARRDC1 antisense RNA 1 | 85026 | This transcribed locus is thought to be non-coding. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000181090 | EHMT1 | euchromatic histone-lysine N-methyltransferase 1 | 79813 | The protein encoded by this gene is a histone methyltransferase that is part of the E2F6 complex, which represses transcription. The encoded protein methylates the Lys-9 position of histone H3, which tags it for transcriptional repression. This protein may be involved in the silencing of MYC- and E2F-responsive genes and therefore could play a role in the G0/G1 cell cycle transition. Defects in this gene are a cause of chromosome 9q subtelomeric deletion syndrome (9q-syndrome, also known as Kleefstra syndrome). Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000148408 | CACNA1B | calcium voltage-gated channel subunit alpha1 B | 774 | The protein encoded by this gene is the pore-forming subunit of an N-type voltage-dependent calcium channel, which controls neurotransmitter release from neurons. The encoded protein forms a complex with alpha-2, beta, and delta subunits to form the high-voltage activated channel. This channel is sensitive to omega-conotoxin-GVIA and omega-agatoxin-IIIA but insensitive to dihydropyridines. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000228253 | ATP8 | ATP synthase F0 subunit 8 | 4509 | NA |
| NA | ENSG00000198840 | ND3 | NADH dehydrogenase, subunit 3 (complex I) | 4537 | NA |
| NA | ENSG00000198786 | ND5 | NADH dehydrogenase, subunit 5 (complex I) | 4540 | NA |
| NA | ENSG00000198727 | CYTB | cytochrome b | 4519 | NA |
| NA | ENSG00000182378 | PLCXD1 | phosphatidylinositol specific phospholipase C X domain containing 1 | 55344 | This gene is the most terminal protein-coding gene in the pseudoautosomal (PAR) region on chromosomes X and Y. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000178605 | GTPBP6 | GTP binding protein 6 (putative) | 8225 | This gene encodes a GTP binding protein and is located in the pseudoautosomal region (PAR) at the end of the short arms of the X and Y chromosomes. |
| NA | ENSG00000169100 | SLC25A6 | solute carrier family 25 member 6 | 293 | This gene is a member of the mitochondrial carrier subfamily of solute carrier protein genes. The product of this gene functions as a gated pore that translocates ADP from the cytoplasm into the mitochondrial matrix and ATP from the mitochondrial matrix into the cytoplasm. The protein is implicated in the function of the permability transition pore complex (PTPC), which regulates the release of mitochondrial products that induce apoptosis. The human genome contains several non-transcribed pseudogenes of this gene. |
| NA | ENSG00000169093 | ASMTL | acetylserotonin O-methyltransferase-like | 8623 | The protein encoded by this gene has an N-terminus that is similar to the multicopy associated filamentation (maf) protein of Bacillus subtilis and to orfE of Escherichia coli, while the C-terminus is similar to N-acetylserotonin O-methyltransferase. This gene is located in the pseudoautosomal region 1 (PAR1) of X and Y chromosomes. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000197976 | AKAP17A | A-kinase anchoring protein 17A | 8227 | This locus encodes a protein kinase A anchoring protein. The encoded protein is part of the spliceosome complex and is involved in the regulation of alternate splicing in some mRNA precursors. Alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000169084 | DHRSX | dehydrogenase/reductase (SDR family) X-linked | 207063 | NA |
| NA | ENSG00000214717 | ZBED1 | zinc finger BED-type containing 1 | 9189 | This gene is located in the pseudoautosomal region 1 (PAR1) of X and Y chromosomes. It was earlier identified as a gene with similarity to Ac transposable elements, however, was found not to have transposase activity. Later studies show that this gene product is localized in the nucleus and functions as a transcription factor. It binds to DNA elements found in the promoter regions of several genes related to cell proliferation, such as histone H1, hence may have a role in regulating genes related to cell proliferation. Alternatively spliced transcript variants with different 5’ untranslated region have been found for this gene. |
| NA | ENSG00000002586 | CD99 | CD99 molecule | 4267 | The protein encoded by this gene is a cell surface glycoprotein involved in leukocyte migration, T-cell adhesion, ganglioside GM1 and transmembrane protein transport, and T-cell death by a caspase-independent pathway. In addition, the encoded protein may have the ability to rearrange the actin cytoskeleton and may also act as an oncosuppressor in osteosarcoma. Cyclophilin A binds to CD99 and may act as a signaling regulator of CD99. This gene is found in the pseudoautosomal region of chromosomes X and Y and escapes X-chromosome inactivation. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000056998 | GYG2 | glycogenin 2 | 8908 | This gene encodes a member of the the glycogenin family. Glycogenin is a self-glucosylating protein involved in the initiation reactions of glycogen biosynthesis. A gene on chromosome 3 encodes the muscle glycogenin and this X-linked gene encodes the glycogenin mainly present in liver; both are involved in blood glucose homeostasis. This gene has a short version on chromosome Y, which is 3’ truncated and can not make a functional protein. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000006756 | ARSD | arylsulfatase D | 414 | The protein encoded by this gene is a member of the sulfatase family. Sulfatases are essential for the correct composition of bone and cartilage matrix. The encoded protein is postranslationally glycosylated and localized to the lysosome. This gene is located within a cluster of similar arylsulfatase genes on chromosome X. A related pseudogene has been identified in the pseudoautosomal region of chromosome Y. |
| NA | ENSG00000183943 | PRKX | protein kinase, X-linked | 5613 | This gene encodes a serine threonine protein kinase that has similarity to the catalytic subunit of cyclic AMP dependent protein kinases. The encoded protein is developmentally regulated and may be involved in renal epithelial morphogenesis. This protein may also be involved in macrophage and granulocyte maturation. Abnormal recombination between this gene and a related pseudogene on chromosome Y is a frequent cause of sex reversal disorder in XX males and XY females. Pseudogenes of this gene are found on chromosomes X, 15 and Y. |
| NA | ENSG00000205664 | RP11-706O15.1 | NA | ENSG00000205664 | NA |
| NA | ENSG00000146938 | NLGN4X | neuroligin 4, X-linked | 57502 | This gene encodes a member of the type-B carboxylesterase/lipase protein family. The encoded protein belongs to a family of neuronal cell surface proteins. Members of this family may act as splice site-specific ligands for beta-neurexins and may be involved in the formation and remodeling of central nervous system synapses. The encoded protein interacts with discs large homolog 4 (DLG4). Mutations in this gene have been associated with autism and Asperger syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000130021 | PUDP | pseudouridine 5’-phosphatase | 8226 | This gene encodes a member of the haloacid dehalogenase-like (HAD) hydrolase superfamily. The encoded protein has no known biological function. This gene has a pseudogene on chromosome 1. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000101846 | STS | steroid sulfatase (microsomal), isozyme S | 412 | This gene encodes a multi-pass membrane protein that is localized to the endoplasmic reticulum. It belongs to the sulfatase family and hydrolyzes several 3-beta-hydroxysteroid sulfates, which serve as metabolic precursors for estrogens, androgens, and cholesterol. Mutations in this gene are associated with X-linked ichthyosis (XLI). Alternatively spliced transcript variants resulting from the use of different promoters have been described for this gene (PMID:17601726). |
| NA | ENSG00000011201 | ANOS1 | anosmin 1 | 3730 | Mutations in this gene cause the X-linked Kallmann syndrome. The encoded protein is similar in sequence to proteins known to function in neural cell adhesion and axonal migration. In addition, this cell surface protein is N-glycosylated and may have anti-protease activity. |
| NA | ENSG00000146950 | SHROOM2 | shroom family member 2 | 357 | This gene represents the human homolog of Xenopus laevis apical protein (APX) gene, which is implicated in amiloride-sensitive sodium channel activity. It is expressed in endothelial cells and facilitates the formation of a contractile network within endothelial cells. Depletion of this gene results in an increase in endothelial sprouting, migration, and angiogenesis. This gene is highly expressed in the retina, and is a strong candidate for ocular albinism type 1 syndrome. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000047644 | WWC3 | WWC family member 3 | 55841 | This gene encodes a member of the WWC family of proteins, which also includes the WWC1 (KIBRA) gene product and the WWC2 gene product. The protein encoded by this gene includes a C2 domain, which is known to mediate homodimerization in the related WWC1 gene product. |
| NA | ENSG00000073464 | CLCN4 | chloride voltage-gated channel 4 | 1183 | The CLCN family of voltage-dependent chloride channel genes comprises nine members (CLCN1-7, Ka and Kb) which demonstrate quite diverse functional characteristics while sharing significant sequence homology. Chloride channel 4 has an evolutionary conserved CpG island and is conserved in both mouse and hamster. This gene is mapped in close proximity to APXL (Apical protein Xenopus laevis-like) and OA1 (Ocular albinism type I), which are both located on the human X chromosome at band p22.3. The physiological role of chloride channel 4 remains unknown but may contribute to the pathogenesis of neuronal disorders. Alternate splicing results in two transcript variants that encode different proteins. |
| NA | ENSG00000101871 | MID1 | midline 1 | 4281 | The protein encoded by this gene is a member of the tripartite motif (TRIM) family, also known as the ‘RING-B box-coiled coil’ (RBCC) subgroup of RING finger proteins. The TRIM motif includes three zinc-binding domains, a RING, a B-box type 1 and a B-box type 2, and a coiled-coil region. This protein forms homodimers which associate with microtubules in the cytoplasm. The protein is likely involved in the formation of multiprotein structures acting as anchor points to microtubules. Mutations in this gene have been associated with the X-linked form of Opitz syndrome, which is characterized by midline abnormalities such as cleft lip, laryngeal cleft, heart defects, hypospadias, and agenesis of the corpus callosum. This gene was also the first example of a gene subject to X inactivation in human while escaping it in mouse. Multiple different transcript variants are generated by alternate splicing; however, the full-length nature of some of the variants has not been determined. |
| NA | ENSG00000004961 | HCCS | holocytochrome c synthase | 3052 | The protein encoded by this gene is an enzyme that covalently links a heme group to the apoprotein of cytochrome c. Defects in this gene are a cause of microphthalmia syndromic type 7 (MCOPS7). Three transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000005302 | MSL3 | male-specific lethal 3 homolog (Drosophila) | 10943 | This gene encodes a nuclear protein that is similar to the product of the Drosophila male-specific lethal-3 gene. The Drosophila protein plays a critical role in a dosage-compensation pathway, which equalizes X-linked gene expression in males and females. Thus, the human protein is thought to play a similar function in chromatin remodeling and transcriptional regulation, and it has been found as part of a complex that is responsible for histone H4 lysine-16 acetylation. This gene can undergo X inactivation. Alternative splicing results in multiple transcript variants. Related pseudogenes have been identified on chromosomes 2, 7 and 8. |
| NA | ENSG00000101911 | PRPS2 | phosphoribosyl pyrophosphate synthetase 2 | 5634 | This gene encodes a phosphoribosyl pyrophosphate synthetase that plays a central role in the synthesis of purines and pyrimidines. The encoded protein catalyzes the synthesis of 5-phosphoribosyl 1-pyrophosphate from ATP and D-ribose 5-phosphate. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000205542 | TMSB4X | thymosin beta 4, X-linked | 7114 | This gene encodes an actin sequestering protein which plays a role in regulation of actin polymerization. The protein is also involved in cell proliferation, migration, and differentiation. This gene escapes X inactivation and has a homolog on chromosome Y. |
| NA | ENSG00000176896 | TCEANC | transcription elongation factor A N-terminal and central domain containing | 170082 | NA |
| NA | ENSG00000123595 | RAB9A | RAB9A, member RAS oncogene family | 9367 | NA |
| NA | ENSG00000196459 | TRAPPC2 | trafficking protein particle complex 2 | 6399 | The protein encoded by this gene is thought to be part of a large multi-subunit complex involved in the targeting and fusion of endoplasmic reticulum-to-Golgi transport vesicles with their acceptor compartment. In addition, the encoded protein can bind c-myc promoter-binding protein 1 and block its transcriptional repression capability. Mutations in this gene are a cause of spondyloepiphyseal dysplasia tarda (SEDT). A processed pseudogene of this gene is located on chromosome 19, and other pseudogenes are found on chromosomes 8 and Y. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000046651 | OFD1 | oral-facial-digital syndrome 1 | 8481 | This gene is located on the X chromosome and encodes a centrosomal protein. A knockout mouse model has been used to study the effect of mutations in this gene. The mouse gene is also located on the X chromosome, however, unlike the human gene it is not subject to X inactivation. Mutations in this gene are associated with oral-facial-digital syndrome type I and Simpson-Golabi-Behmel syndrome type 2. Many pseudogenes have been identified; a single pseudogene is found on chromosome 5 while as many as fifteen have been found on the Y chromosome. Alternatively spliced transcripts have been described for this gene but the biological validity of these transcripts has not been determined. |
| NA | ENSG00000046653 | GPM6B | glycoprotein M6B | 2824 | This gene encodes a membrane glycoprotein that belongs to the proteolipid protein family. Proteolipid protein family members are expressed in most brain regions and are thought to be involved in cellular housekeeping functions such as membrane trafficking and cell-to-cell communication. This protein may also be involved in osteoblast differentiation. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are located on chromosomes Y and 22. |
| NA | ENSG00000181544 | FANCB | Fanconi anemia complementation group B | 2187 | The Fanconi anemia complementation group (FANC) currently includes FANCA, FANCB, FANCC, FANCD1 (also called BRCA2), FANCD2, FANCE, FANCF, FANCG, FANCI, FANCJ (also called BRIP1), FANCL, FANCM and FANCN (also called PALB2). The previously defined group FANCH is the same as FANCA. Fanconi anemia is a genetically heterogeneous recessive disorder characterized by cytogenetic instability, hypersensitivity to DNA crosslinking agents, increased chromosomal breakage, and defective DNA repair. The members of the Fanconi anemia complementation group do not share sequence similarity; they are related by their assembly into a common nuclear protein complex. This gene encodes the protein for complementation group B. Alternative splicing results in two transcript variants encoding the same protein. |
| NA | ENSG00000130150 | MOSPD2 | motile sperm domain containing 2 | 158747 | NA |
| NA | ENSG00000165195 | PIGA | phosphatidylinositol glycan anchor biosynthesis class A | 5277 | This gene encodes a protein required for synthesis of N-acetylglucosaminyl phosphatidylinositol (GlcNAc-PI), the first intermediate in the biosynthetic pathway of GPI anchor. The GPI anchor is a glycolipid found on many blood cells and which serves to anchor proteins to the cell surface. Paroxysmal nocturnal hemoglobinuria, an acquired hematologic disorder, has been shown to result from mutations in this gene. Alternate splice variants have been characterized. A related pseudogene is located on chromosome 12. |
| NA | ENSG00000087842 | PIR | pirin | 8544 | This gene encodes a member of the cupin superfamily. The encoded protein is an Fe(II)-containing nuclear protein expressed in all tissues of the body and concentrated within dot-like subnuclear structures. Interactions with nuclear factor I/CCAAT box transcription factor as well as B cell lymphoma 3-encoded oncoprotein suggest the encoded protein may act as a transcriptional cofactor and be involved in the regulation of DNA transcription and replication. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000169239 | CA5B | carbonic anhydrase 5B | 11238 | Carbonic anhydrases (CAs) are a large family of zinc metalloenzymes that catalyze the reversible hydration of carbon dioxide. They participate in a variety of biological processes, including respiration, calcification, acid-base balance, bone resorption, and the formation of aqueous humor, cerebrospinal fluid, saliva, and gastric acid. They show extensive diversity in tissue distribution and in their subcellular localization. CA VB is localized in the mitochondria and shows the highest sequence similarity to the other mitochondrial CA, CA VA. It has a wider tissue distribution than CA VA, which is restricted to the liver. The differences in tissue distribution suggest that the two mitochondrial carbonic anhydrases evolved to assume different physiologic roles. |
| NA | ENSG00000169249 | ZRSR2 | zinc finger CCCH-type, RNA binding motif and serine/arginine rich 2 | 8233 | This gene encodes an essential splicing factor. The encoded protein associates with the U2 auxiliary factor heterodimer, which is required for the recognition of a functional 3’ splice site in pre-mRNA splicing, and may play a role in network interactions during spliceosome assembly. |
| NA | ENSG00000182287 | AP1S2 | adaptor related protein complex 1 sigma 2 subunit | 8905 | Adaptor protein complex 1 is found at the cytoplasmic face of coated vesicles located at the Golgi complex, where it mediates both the recruitment of clathrin to the membrane and the recognition of sorting signals within the cytosolic tails of transmembrane receptors. This complex is a heterotetramer composed of two large, one medium, and one small adaptin subunit. The protein encoded by this gene serves as the small subunit of this complex and is a member of the adaptin protein family. Transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000047230 | CTPS2 | CTP synthase 2 | 56474 | The protein encoded by this gene catalyzes the formation of CTP from UTP with the concomitant deamination of glutamine to glutamate. This protein is the rate-limiting enzyme in the synthesis of cytosine nucleotides, which play an important role in various metabolic processes and provide the precursors necessary for the synthesis of RNA and DNA. Cancer cells that exhibit increased cell proliferation also exhibit an increased activity of this encoded protein. Thus, this protein is an attractive target for selective chemotherapy. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169895 | SYAP1 | synapse associated protein 1 | 94056 | NA |
| NA | ENSG00000086712 | TXLNG | taxilin gamma | 55787 | This gene encodes a member of the taxilin family. The encoded protein binds to the C-terminal coiled-coil region of syntaxin family members 1A, 3A and 4A, and may play a role in intracellular vesicle trafficking. This gene is up-regulated by lipopolysaccharide and the gene product may be involved in cell cycle regulation. The related mouse protein was also shown to inhibit activating transcription factor 4-mediated transcription and thus regulate bone mass accrual. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000102054 | RBBP7 | retinoblastoma binding protein 7 | 5931 | This protein is a ubiquitously expressed nuclear protein and belongs to a highly conserved subfamily of WD-repeat proteins. It is found among several proteins that binds directly to retinoblastoma protein, which regulates cell proliferation. The encoded protein is found in many histone deacetylase complexes, including mSin3 co-repressor complex. It is also present in protein complexes involved in chromatin assembly. This protein can interact with BRCA1 tumor-suppressor gene and may have a role in the regulation of cell proliferation and differentiation. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169891 | REPS2 | RALBP1 associated Eps domain containing 2 | 9185 | The product of this gene is part of a protein complex that regulates the endocytosis of growth factor receptors. The encoded protein directly interacts with a GTPase activating protein that functions downstream of the small G protein Ral. Its expression can negatively affect receptor internalization and inhibit growth factor signaling. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000188158 | NHS | NHS actin remodeling regulator | 4810 | This gene encodes a protein containing four conserved nuclear localization signals. The encoded protein functions in eye, tooth, craniofacial and brain development, and it can regulate actin remodeling and cell morphology. Mutations in this gene have been shown to cause Nance-Horan syndrome, and also X-linked cataract-40. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000047634 | SCML1 | sex comb on midleg-like 1 (Drosophila) | 6322 | NA |
| NA | ENSG00000102098 | SCML2 | sex comb on midleg-like 2 (Drosophila) | 10389 | This gene encodes a member of the Polycomb group proteins. These proteins form the Polycomb repressive complexes which are involved in transcriptional repression. The encoded protein binds histone peptides that are monomethylated at lysine residues and may be involved in regulating homeotic gene expression during development. |
| NA | ENSG00000008086 | CDKL5 | cyclin dependent kinase like 5 | 6792 | This gene is a member of Ser/Thr protein kinase family and encodes a phosphorylated protein with protein kinase activity. Mutations in this gene have been associated with X-linked infantile spasm syndrome (ISSX), also known as X-linked West syndrome, and Rett syndrome (RTT). Alternate transcriptional splice variants have been characterized. |
| NA | ENSG00000044446 | PHKA2 | phosphorylase kinase, alpha 2 (liver) | 5256 | Phosphorylase kinase is a polymer of 16 subunits, four each of alpha, beta, gamma and delta. The alpha subunit includes the skeletal muscle and hepatic isoforms, and the hepatic isoform is encoded by this gene. The beta subunit is the same in both the muscle and hepatic isoforms, and encoded by one gene. The gamma subunit also includes the skeletal muscle and hepatic isoforms, which are encoded by two different genes. The delta subunit is a calmodulin and can be encoded by three different genes. The gamma subunits contain the active site of the enzyme, whereas the alpha and beta subunits have regulatory functions controlled by phosphorylation. The delta subunit mediates the dependence of the enzyme on calcium concentration. Mutations in this gene cause glycogen storage disease type 9A, also known as X-linked liver glycogenosis. Alternatively spliced transcript variants have been reported, but the full-length nature of these variants has not been determined. |
| NA | ENSG00000173698 | ADGRG2 | adhesion G protein-coupled receptor G2 | 10149 | This gene encodes a member of the G protein-coupled receptor family described as an epididymis-specific transmembrane protein. The encoded protein may be proteolytically processed as it contains a motif shown to be a protein scission motif in some members of this family (PMID: 11973329). Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000147010 | SH3KBP1 | SH3-domain kinase binding protein 1 | 30011 | This gene encodes an adapter protein that contains three N-terminal Src homology domains, a proline rich region and a C-terminal coiled-coil domain. The encoded protein facilitates protein-protein interactions and has been implicated in numerous cellular processes including apoptosis, cytoskeletal rearrangement, cell adhesion and in the regulation of clathrin-dependent endocytosis. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000173681 | CXorf23 | chromosome X open reading frame 23 | 256643 | NA |
| NA | ENSG00000184368 | MAP7D2 | MAP7 domain containing 2 | 256714 | NA |
| NA | ENSG00000173674 | EIF1AX | eukaryotic translation initiation factor 1A, X-linked | 1964 | This gene encodes an essential eukaryotic translation initiation factor. The protein is required for the binding of the 43S complex (a 40S subunit, eIF2/GTP/Met-tRNAi and eIF3) to the 5’ end of capped RNA. |
| NA | ENSG00000177189 | RPS6KA3 | ribosomal protein S6 kinase A3 | 6197 | This gene encodes a member of the RSK (ribosomal S6 kinase) family of serine/threonine kinases. This kinase contains 2 non-identical kinase catalytic domains and phosphorylates various substrates, including members of the mitogen-activated kinase (MAPK) signalling pathway. The activity of this protein has been implicated in controlling cell growth and differentiation. Mutations in this gene have been associated with Coffin-Lowry syndrome (CLS). |
| NA | ENSG00000149970 | CNKSR2 | connector enhancer of kinase suppressor of Ras 2 | 22866 | This gene encodes a multidomain protein that functions as a scaffold protein to mediate the mitogen-activated protein kinase pathways downstream from Ras. This gene product is induced by vitamin D and inhibits apoptosis in certain cancer cells. It may also play a role in ternary complex assembly of synaptic proteins at the postsynaptic membrane and coupling of signal transduction to membrane/cytoskeletal remodeling. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000012174 | MBTPS2 | membrane bound transcription factor peptidase, site 2 | 51360 | This gene encodes a intramembrane zinc metalloprotease, which is essential in development. This protease functions in the signal protein activation involved in sterol control of transcription and the ER stress response. Mutations in this gene have been associated with ichthyosis follicularis with atrichia and photophobia (IFAP syndrome); IFAP syndrome has been quantitatively linked to a reduction in cholesterol homeostasis and ER stress response. |
| NA | ENSG00000102172 | SMS | spermine synthase | 6611 | This gene encodes a protein belonging to the spermidine/spermin synthase family. Pseudogenes of this gene are located on chromosomes 1, 5, 6 and X. Mutations in this gene are associated with X-linked Snyder-Robinson mental retardation syndrome. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000165186 | PTCHD1 | patched domain containing 1 | 139411 | This gene encodes a membrane protein with a patched domain. The encoded protein is similar to Drosophila proteins which act as receptors for the morphogen sonic hedgehog. Deletions in this gene, which is located on the X chromosome, are associated with intellectual disability and autism (PMID: 21091464, PMID: 20844286). |
| NA | ENSG00000123131 | PRDX4 | peroxiredoxin 4 | 10549 | The protein encoded by this gene is an antioxidant enzyme and belongs to the peroxiredoxin family. The protein is localized to the cytoplasm. Peroxidases of the peroxiredoxin family reduce hydrogen peroxide and alkyl hydroperoxides to water and alcohol with the use of reducing equivalents derived from thiol-containing donor molecules. This protein has been found to play a regulatory role in the activation of the transcription factor NF-kappaB. |
| NA | ENSG00000123130 | ACOT9 | acyl-CoA thioesterase 9 | 23597 | The protein encoded by this gene is a mitochondrial acyl-CoA thioesterase of unknown function. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000184831 | APOO | apolipoprotein O | 79135 | This gene is a member of the apolipoprotein family. Members of this protein family are involved in the transport and metabolism of lipids. The encoded protein associates with HDL, LDL and VLDL lipoproteins and is characterized by chondroitin-sulfate glycosylation. This protein may be involved in preventing lipid accumulation in the myocardium in obese and diabetic patients. Alternative splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 3, 4, 5, 12 and 16. |
| NA | ENSG00000174010 | KLHL15 | kelch like family member 15 | 80311 | This gene encodes a member of the kelch-like family of proteins that share a common domain structure consisting of an N-terminal broad-complex, tramtrack, bric-a-brac/poxvirus and zinc finger domain and C-terminal kelch repeat motifs. The encoded protein may be involved in protein ubiquitination and cytoskeletal organization. |
| NA | ENSG00000005889 | ZFX | zinc finger protein, X-linked | 7543 | This gene on the X chromosome is structurally similar to a related gene on the Y chromosome. It encodes a member of the krueppel C2H2-type zinc-finger protein family. The full-length protein contains an acidic transcriptional activation domain (AD), a nuclear localization sequence (NLS) and a DNA binding domain (DBD) consisting of 13 C2H2-type zinc fingers. Studies in mouse embryonic and adult hematopoietic stem cells showed that this gene was required as a transcriptional regulator for self-renewal of both stem cell types, but it was dispensable for growth and differentiation of their progeny. Multiple alternatively spliced transcript variants encoding different isoforms have been identified, but the full-length nature of some variants has not been determined. |
| NA | ENSG00000067992 | PDK3 | pyruvate dehydrogenase kinase 3 | 5165 | The pyruvate dehydrogenase (PDH) complex is a nuclear-encoded mitochondrial multienzyme complex that catalyzes the overall conversion of pyruvate to acetyl-CoA and CO(2). It provides the primary link between glycolysis and the tricarboxylic acid (TCA) cycle, and thus is one of the major enzymes responsible for the regulation of glucose metabolism. The enzymatic activity of PDH is regulated by a phosphorylation/dephosphorylation cycle, and phosphorylation results in inactivation of PDH. The protein encoded by this gene is one of the three pyruvate dehydrogenase kinases that inhibits the PDH complex by phosphorylation of the E1 alpha subunit. This gene is predominantly expressed in the heart and skeletal muscles. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000102230 | PCYT1B | phosphate cytidylyltransferase 1, choline, beta | 9468 | The protein encoded by this gene belongs to the cytidylyltransferase family. It is involved in the regulation of phosphatidylcholine biosynthesis. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101868 | POLA1 | polymerase (DNA) alpha 1, catalytic subunit | 5422 | This gene encodes the catalytic subunit of DNA polymerase, which together with a regulatory and two primase subunits, forms the DNA polymerase alpha complex. The catalytic subunit plays an essential role in the initiation of DNA replication. |
| NA | ENSG00000198814 | GK | glycerol kinase | 2710 | The protein encoded by this gene belongs to the FGGY kinase family. This protein is a key enzyme in the regulation of glycerol uptake and metabolism. It catalyzes the phosphorylation of glycerol by ATP, yielding ADP and glycerol-3-phosphate. Mutations in this gene are associated with glycerol kinase deficiency (GKD). Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000157625 | TAB3 | TGF-beta activated kinase 1/MAP3K7 binding protein 3 | 257397 | The product of this gene functions in the NF-kappaB signal transduction pathway. The encoded protein, and the similar and functionally redundant protein MAP3K7IP2/TAB2, forms a ternary complex with the protein kinase MAP3K7/TAK1 and either TRAF2 or TRAF6 in response to stimulation with the pro-inflammatory cytokines TNF or IL-1. Subsequent MAP3K7/TAK1 kinase activity triggers a signaling cascade leading to activation of the NF-kappaB transcription factor. The human genome contains a related pseudogene. Alternatively spliced transcript variants have been described, but their biological validity has not been determined. |
| NA | ENSG00000198947 | DMD | dystrophin | 1756 | The dystrophin gene is the largest gene found in nature, measuring 2.4 Mb. The gene was identified through a positional cloning approach, targeted at the isolation of the gene responsible for Duchenne (DMD) and Becker (BMD) Muscular Dystrophies. DMD is a recessive, fatal, X-linked disorder occurring at a frequency of about 1 in 3,500 new-born males. BMD is a milder allelic form. In general, DMD patients carry mutations which cause premature translation termination (nonsense or frame shift mutations), while in BMD patients dystrophin is reduced either in molecular weight (derived from in-frame deletions) or in expression level. The dystrophin gene is highly complex, containing at least eight independent, tissue-specific promoters and two polyA-addition sites. Furthermore, dystrophin RNA is differentially spliced, producing a range of different transcripts, encoding a large set of protein isoforms. Dystrophin (as encoded by the Dp427 transcripts) is a large, rod-like cytoskeletal protein which is found at the inner surface of muscle fibers. Dystrophin is part of the dystrophin-glycoprotein complex (DGC), which bridges the inner cytoskeleton (F-actin) and the extra-cellular matrix. |
| NA | ENSG00000147027 | TMEM47 | transmembrane protein 47 | 83604 | This gene encodes a member of the PMP22/EMP/claudin protein family. The encoded protein is localized to the ER and the plasma membrane. In dogs, transcripts of this gene exist at high levels in the brain. |
| NA | ENSG00000130962 | PRRG1 | proline rich Gla (G-carboxyglutamic acid) 1 | 5638 | This gene encodes a vitamin K-dependent, gamma-carboxyglutamic acid (Gla)-containing, single-pass transmembrane protein. This protein contains a Gla domain at the N-terminus, preceded by a propeptide sequence required for post-translational gamma-carboxylation of specific glutamic acid residues by a vitamin K-dependent gamma-carboxylase. The C-terminus is proline-rich containing PPXY and PXXP motifs found in a variety of signaling and cytoskeletal proteins. This gene is highly expressed in the spinal cord. Several alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000047597 | XK | X-linked Kx blood group | 7504 | This locus controls the synthesis of the Kell blood group ‘precursor substance’ (Kx). Mutations in this gene have been associated with McLeod syndrome, an X-linked, recessive disorder characterized by abnormalities in the neuromuscular and hematopoietic systems. The encoded protein has structural characteristics of prokaryotic and eukaryotic membrane transport proteins. |
| NA | ENSG00000165169 | DYNLT3 | dynein light chain Tctex-type 3 | 6990 | This gene encodes a member of a subclass of dynein light chains. The encoded protein homodimerizes and forms the light chain component of the cytoplasmic dynein motor protein complex. This protein may be important for binding dynein to specific cargos including the spindle checkpoint protein BUB3. This protein may also function independently of dynein as a transcriptional modulator. Pseudogenes of this gene are found on chromosomes 2 and 20. |
| NA | ENSG00000101955 | SRPX | sushi repeat containing protein, X-linked | 8406 | NA |
| NA | ENSG00000156313 | RPGR | retinitis pigmentosa GTPase regulator | 6103 | This gene encodes a protein with a series of six RCC1-like domains (RLDs), characteristic of the highly conserved guanine nucleotide exchange factors. The encoded protein is found in the Golgi body and interacts with RPGRIP1. This protein localizes to the outer segment of rod photoreceptors and is essential for their viability. Mutations in this gene have been associated with X-linked retinitis pigmentosa (XLRP). Multiple alternatively spliced transcript variants that encode different isoforms of this gene have been reported, but the full-length natures of only some have been determined. |
| NA | ENSG00000156298 | TSPAN7 | tetraspanin 7 | 7102 | The protein encoded by this gene is a member of the transmembrane 4 superfamily, also known as the tetraspanin family. Most of these members are cell-surface proteins that are characterized by the presence of four hydrophobic domains. The proteins mediate signal transduction events that play a role in the regulation of cell development, activation, growth and motility. This encoded protein is a cell surface glycoprotein and may have a role in the control of neurite outgrowth. It is known to complex with integrins. This gene is associated with X-linked mental retardation and neuropsychiatric diseases such as Huntington’s chorea, fragile X syndrome and myotonic dystrophy. |
| NA | ENSG00000165175 | MID1IP1 | MID1 interacting protein 1 | 58526 | NA |
| NA | ENSG00000182220 | ATP6AP2 | ATPase H+ transporting accessory protein 2 | 10159 | This gene encodes a protein that is associated with adenosine triphosphatases (ATPases). Proton-translocating ATPases have fundamental roles in energy conservation, secondary active transport, acidification of intracellular compartments, and cellular pH homeostasis. There are three classes of ATPases- F, P, and V. The vacuolar (V-type) ATPases have a transmembrane proton-conducting sector and an extramembrane catalytic sector. The encoded protein has been found associated with the transmembrane sector of the V-type ATPases. |
| NA | ENSG00000185753 | CXorf38 | chromosome X open reading frame 38 | 159013 | NA |
| NA | ENSG00000180182 | MED14 | mediator complex subunit 14 | 9282 | The activation of gene transcription is a multistep process that is triggered by factors that recognize transcriptional enhancer sites in DNA. These factors work with co-activators to direct transcriptional initiation by the RNA polymerase II apparatus. The protein encoded by this gene is a subunit of the CRSP (cofactor required for SP1 activation) complex, which, along with TFIID, is required for efficient activation by SP1. This protein is also a component of other multisubunit complexes e.g. thyroid hormone receptor-(TR-) associated proteins which interact with TR and facilitate TR function on DNA templates in conjunction with initiation factors and cofactors. This protein contains a bipartite nuclear localization signal. This gene is known to escape chromosome X-inactivation. |
| NA | ENSG00000124486 | USP9X | ubiquitin specific peptidase 9, X-linked | 8239 | This gene is a member of the peptidase C19 family and encodes a protein that is similar to ubiquitin-specific proteases. Though this gene is located on the X chromosome, it escapes X-inactivation. Mutations in this gene have been associated with Turner syndrome. Alternate transcriptional splice variants, encoding different isoforms, have been characterized. |
| NA | ENSG00000215301 | DDX3X | DEAD-box helicase 3, X-linked | 1654 | The protein encoded by this gene is a member of the large DEAD-box protein family, that is defined by the presence of the conserved Asp-Glu-Ala-Asp (DEAD) motif, and has ATP-dependent RNA helicase activity. This protein has been reported to display a high level of RNA-independent ATPase activity, and unlike most DEAD-box helicases, the ATPase activity is thought to be stimulated by both RNA and DNA. This protein has multiple conserved domains and is thought to play roles in both the nucleus and cytoplasm. Nuclear roles include transcriptional regulation, mRNP assembly, pre-mRNA splicing, and mRNA export. In the cytoplasm, this protein is thought to be involved in translation, cellular signaling, and viral replication. Misregulation of this gene has been implicated in tumorigenesis. This gene has a paralog located in the nonrecombining region of the Y chromosome. Pseudogenes sharing similarity to both this gene and the DDX3Y paralog are found on chromosome 4 and the X chromosome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000189221 | MAOA | monoamine oxidase A | 4128 | This gene is one of two neighboring gene family members that encode mitochondrial enzymes which catalyze the oxidative deamination of amines, such as dopamine, norepinephrine, and serotonin. Mutation of this gene results in Brunner syndrome. This gene has also been associated with a variety of other psychiatric disorders, including antisocial behavior. Alternatively spliced transcript variants encoding multiple isoforms have been observed. |
| NA | ENSG00000183690 | EFHC2 | EF-hand domain (C-terminal) containing 2 | 80258 | This gene encodes a protein which contains three DM10 domains and three calcium-binding EF-hand motifs. A related protein is encoded by a gene on chromosome 6. It has been suggested that both proteins are involved in the development of epilepsy (PMID: 15258581, 16112844) and that this gene may be associated with fear recognition in individuals with Turner syndrome. |
| NA | ENSG00000069509 | FUNDC1 | FUN14 domain containing 1 | 139341 | This gene encodes a protein with a FUN14 superfamily domain. The function of the encoded protein is not known. |
| NA | ENSG00000147050 | KDM6A | lysine demethylase 6A | 7403 | This gene is located on the X chromosome and is the corresponding locus to a Y-linked gene which encodes a tetratricopeptide repeat (TPR) protein. The encoded protein of this gene contains a JmjC-domain and catalyzes the demethylation of tri/dimethylated histone H3. Multiple alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000147121 | KRBOX4 | KRAB box domain containing 4 | 55634 | This encodes a zinc finger protein with an N-terminal KRAB (Kruppel-associated) domain found in transcriptional repressors. This gene is located in a region of the X chromosome thought to be involved in nonsyndromic X-linked mental retardation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000251192 | ZNF674 | zinc finger protein 674 | 641339 | This gene encodes a zinc finger protein with an N-terminal Kruppel-associated box-containing (KRAB) domain and 11 Kruppel-type C2H2 zinc finger domains. Like other zinc finger proteins, this gene may function as a transcription factor. This gene resides on an area of chromosome X that has been implicated in nonsyndromic X-linked mental retardation. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000147119 | CHST7 | carbohydrate (N-acetylglucosamine 6-O) sulfotransferase 7 | 56548 | This gene is a member of the Gal/GalNAc/GlcNAc (galactose/N-acetylgalactosamine/N-acetylglucosamine) 6-O-sulfotransferase (GST) family. Members of this family encode enzymes that catalyze the specific addition of sulfate groups to distinct hydroxyl and amino groups of carbohydrates. The encoded protein catalyzes the sulfation of 6-hydroxyl group of GalNAc in chondroitin. |
| NA | ENSG00000065923 | SLC9A7 | solute carrier family 9 member A7 | 84679 | This gene encodes a sodium and potassium/ proton antiporter that is a member of the solute carrier family 9 protein family. The encoded protein is primarily localized to the trans-Golgi network and is involved in maintaining pH homeostasis in organelles along the secretory and endocytic pathways. This protein may enhance cell growth of certain breast tumors. This gene is part of a gene cluster on chromosome Xp11.23. A pseudogene of this gene is found on chromosome 12. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000102218 | RP2 | retinitis pigmentosa 2 (X-linked recessive) | 6102 | The RP2 locus has been implicated as one cause of X-linked retinitis pigmentosa. The predicted gene product shows homology with human cofactor C, a protein involved in the ultimate step of beta-tubulin folding. Progressive retinal degeneration may therefore be due to the accumulation of incorrectly-folded photoreceptor or neuron-specific tubulin isoforms followed by progressive cell death |
| NA | ENSG00000102221 | JADE3 | jade family PHD finger 3 | 9767 | This gene encodes a member of a family of large proteins containing PHD (plant homeo domain)-type zinc fingers. The encoded protein may be associated in a nuclear complex that functions in histone H4 acetylation. Alternative splicing results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000147123 | NDUFB11 | NADH:ubiquinone oxidoreductase subunit B11 | 54539 | NDUFB11 is a component of mitochondrial complex I. Complex I catalyzes the first step in the electron transport chain, the transfer of 2 electrons from NADH to ubiquinone, coupled to the translocation of 4 protons across the membrane (Carroll et al., 2002 [PubMed 12381726]). |
| NA | ENSG00000182872 | RBM10 | RNA binding motif protein 10 | 8241 | This gene encodes a nuclear protein that belongs to a family proteins that contain an RNA-binding motif. The encoded protein associates with hnRNP proteins and may be involved in regulating alternative splicing. Defects in this gene are the cause of the X-linked recessive disorder, TARP syndrome. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000130985 | UBA1 | ubiquitin like modifier activating enzyme 1 | 7317 | The protein encoded by this gene catalyzes the first step in ubiquitin conjugation to mark cellular proteins for degradation. This gene complements an X-linked mouse temperature-sensitive defect in DNA synthesis, and thus may function in DNA repair. It is part of a gene cluster on chromosome Xp11.23. Alternatively spliced transcript variants that encode the same protein have been described. |
| NA | ENSG00000102225 | CDK16 | cyclin-dependent kinase 16 | 5127 | The protein encoded by this gene belongs to the cdc2/cdkx subfamily of the ser/thr family of protein kinases. It may play a role in signal transduction cascades in terminally differentiated cells; in exocytosis; and in transport of secretory cargo from the endoplasmic reticulum. This gene is thought to escape X inactivation. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000102226 | USP11 | ubiquitin specific peptidase 11 | 8237 | Protein ubiquitination controls many intracellular processes, including cell cycle progression, transcriptional activation, and signal transduction. This dynamic process, involving ubiquitin conjugating enzymes and deubiquitinating enzymes, adds and removes ubiquitin. Deubiquitinating enzymes are cysteine proteases that specifically cleave ubiquitin from ubiquitin-conjugated protein substrates. This gene encodes a deubiquitinating enzyme which lies in a gene cluster on chromosome Xp11.23 |
| NA | ENSG00000147124 | ZNF41 | zinc finger protein 41 | 7592 | This gene product is a likely zinc finger family transcription factor. It contains KRAB-A and KRAB-B domains that act as transcriptional repressors in related proteins, and multiple zinc finger DNA binding motifs and finger linking regions characteristic of the Kruppel family. This gene is part of a gene cluster on chromosome Xp11.23. Several alternatively spliced transcript variants have been described, however, the full-length nature of only some of them is known. |
| NA | ENSG00000196741 | LINC01560 | long intergenic non-protein coding RNA 1560 | ENSG00000196741 | NA |
| NA | ENSG00000078061 | ARAF | A-Raf proto-oncogene, serine/threonine kinase | 369 | This proto-oncogene belongs to the RAF subfamily of the Ser/Thr protein kinase family, and maybe involved in cell growth and development. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000008056 | SYN1 | synapsin I | 6853 | This gene is a member of the synapsin gene family. Synapsins encode neuronal phosphoproteins which associate with the cytoplasmic surface of synaptic vesicles. Family members are characterized by common protein domains, and they are implicated in synaptogenesis and the modulation of neurotransmitter release, suggesting a potential role in several neuropsychiatric diseases. This member of the synapsin family plays a role in regulation of axonogenesis and synaptogenesis. The protein encoded serves as a substrate for several different protein kinases and phosphorylation may function in the regulation of this protein in the nerve terminal. Mutations in this gene may be associated with X-linked disorders with primary neuronal degeneration such as Rett syndrome. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000102265 | TIMP1 | TIMP metallopeptidase inhibitor 1 | 7076 | This gene belongs to the TIMP gene family. The proteins encoded by this gene family are natural inhibitors of the matrix metalloproteinases (MMPs), a group of peptidases involved in degradation of the extracellular matrix. In addition to its inhibitory role against most of the known MMPs, the encoded protein is able to promote cell proliferation in a wide range of cell types, and may also have an anti-apoptotic function. Transcription of this gene is highly inducible in response to many cytokines and hormones. In addition, the expression from some but not all inactive X chromosomes suggests that this gene inactivation is polymorphic in human females. This gene is located within intron 6 of the synapsin I gene and is transcribed in the opposite direction. |
| NA | ENSG00000126767 | ELK1 | ELK1, ETS transcription factor | 2002 | This gene is a member of the Ets family of transcription factors and of the ternary complex factor (TCF) subfamily. Proteins of the TCF subfamily form a ternary complex by binding to the the serum response factor and the serum response element in the promoter of the c-fos proto-oncogene. The protein encoded by this gene is a nuclear target for the ras-raf-MAPK signaling cascade. This gene produces multiple isoforms by using alternative translational start codons and by alternative splicing. Related pseudogenes have been identified on chromosomes 7 and 14. |
| NA | ENSG00000147118 | ZNF182 | zinc finger protein 182 | 7569 | Zinc-finger proteins bind nucleic acids and play important roles in various cellular functions, including cell proliferation, differentiation, and apoptosis. This gene encodes a zinc finger protein, and belongs to the krueppel C2H2-type zinc-finger protein family. It may be involved in transcriptional regulation. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000221994 | ZNF630 | zinc finger protein 630 | 57232 | This gene encodes a protein containing an N-terminal Kruppel-associated box-containing (KRAB) domain and 13 Kruppel-type C2H2 zinc finger domains. This gene resides on an area of chromosome X that has been implicated in nonsyndromic X-linked mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000017483 | SLC38A5 | solute carrier family 38 member 5 | 92745 | The protein encoded by this gene is a system N sodium-coupled amino acid transporter. The encoded protein transports glutamine, asparagine, histidine, serine, alanine, and glycine across the cell membrane, but does not transport charged amino acids, imino acids, or N-alkylated amino acids. Alternative splicing results in multiple transcript variants, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000068438 | FTSJ1 | FtsJ RNA methyltransferase homolog 1 (E. coli) | 24140 | This gene encodes a member of the methyltransferase superfamily. The encoded protein localizes to the nucleolus, binds to S-adenosylmethionine, and may be involved in the processing and modification of ribosomal RNA. Mutations in this gene are associated with mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000102312 | PORCN | porcupine homolog (Drosophila) | 64840 | This gene belongs to the evolutionarily conserved porcupine (Porc) gene family. Genes of the porcupine family encode endoplasmic reticulum proteins with multiple transmembrane domains. Porcupine proteins are involved in the processing of Wnt (wingless and int homologue) proteins. Disruption of this gene is associated with focal dermal hypoplasia, and the encoded protein has been implicated in cancer. Multiple alternatively spliced transcript variants encoding distinct isoforms have been observed. |
| NA | ENSG00000147155 | EBP | emopamil binding protein (sterol isomerase) | 10682 | The protein encoded by this gene is an integral membrane protein of the endoplasmic reticulum. It is a high affinity binding protein for the antiischemic phenylalkylamine Ca2+ antagonist [3H]emopamil and the photoaffinity label [3H]azidopamil. It is similar to sigma receptors and may be a member of a superfamily of high affinity drug-binding proteins in the endoplasmic reticulum of different tissues. This protein shares structural features with bacterial and eukaryontic drug transporting proteins. It has four putative transmembrane segments and contains two conserved glutamate residues which may be involved in the transport of cationic amphiphilics. Another prominent feature of this protein is its high content of aromatic amino acid residues (>23%) in its transmembrane segments. These aromatic amino acid residues have been suggested to be involved in the drug transport by the P-glycoprotein. Mutations in this gene cause Chondrodysplasia punctata 2 (CDPX2; also known as Conradi-Hunermann syndrome). |
| NA | ENSG00000068354 | TBC1D25 | TBC1 domain family member 25 | 4943 | This gene encodes a protein with a TBC domain and may function as a Rab GTPase activating protein. This gene was previously known as ornithine aminotransferase-like 1, but has no similarity to ornithine aminotransferase. |
| NA | ENSG00000102317 | RBM3 | RNA binding motif (RNP1, RRM) protein 3 | 5935 | This gene is a member of the glycine-rich RNA-binding protein family and encodes a protein with one RNA recognition motif (RRM) domain. Expression of this gene is induced by cold shock and low oxygen tension. A pseudogene exists on chromosome 1. Multiple alternatively spliced transcript variants that are predicted to encode different isoforms have been characterized although some of these variants fit nonsense-mediated decay (NMD) criteria. |
| NA | ENSG00000101940 | WDR13 | WD repeat domain 13 | 64743 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by Gly-His and Trp-Asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This gene is widely expressed in various tissues. Multiple alternatively spliced transcript variants have been described for this gene. |
| NA | ENSG00000101945 | SUV39H1 | suppressor of variegation 3-9 homolog 1 | 6839 | This gene encodes an evolutionarily-conserved protein containing an N-terminal chromodomain and a C-terminal SET domain. The encoded protein is a histone methyltransferase that trimethylates lysine 9 of histone H3, which results in transcriptional gene silencing. Loss of function of this gene disrupts heterochromatin formation and may cause chromosome instability. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000094631 | HDAC6 | histone deacetylase 6 | 10013 | Histones play a critical role in transcriptional regulation, cell cycle progression, and developmental events. Histone acetylation/deacetylation alters chromosome structure and affects transcription factor access to DNA. The protein encoded by this gene belongs to class II of the histone deacetylase/acuc/apha family. It contains an internal duplication of two catalytic domains which appear to function independently of each other. This protein possesses histone deacetylase activity and represses transcription. |
| NA | ENSG00000126768 | TIMM17B | translocase of inner mitochondrial membrane 17 homolog B (yeast) | 10245 | This gene encodes a multipass transmembrane protein that forms an integral component of the mitochondrial translocase TIM23 complex. This complex facilitates the transport of mitochondrial proteins from the cytosol across the mitochondrial inner membrane and into the mitochondrion. There is a pseudogene for this gene on chromosome 12. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000102103 | PQBP1 | polyglutamine binding protein 1 | 10084 | This gene encodes a nuclear polyglutamine-binding protein that is involved with transcription activation. The encoded protein contains a WW domain. Mutations in this gene have been found in patients with Renpenning syndrome 1 and other syndromes with X-linked mental retardation. Multiple alternatively spliced transcript variants that encode different protein isoforms have been described for this gene. |
| NA | ENSG00000102100 | SLC35A2 | solute carrier family 35 member A2 | 7355 | This gene encodes a member of the nucleotide-sugar transporter family. The encoded protein is a multi-pass membrane protein. It transports UDP-galactose from the cytosol into Golgi vesicles, where it serves as a glycosyl donor for the generation of glycans. Mutations in this gene cause congenital disorder of glycosylation type IIm (CDG2M). Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000102096 | PIM2 | Pim-2 proto-oncogene, serine/threonine kinase | 11040 | This gene encodes a protooncogene that acts as a serine/threonine protein kinase. Studies determined the encoded protein functions to prevent apoptosis and to promote cell survival. |
| NA | ENSG00000068308 | OTUD5 | OTU deubiquitinase 5 | 55593 | This gene encodes a member of the OTU (ovarian tumor) domain-containing cysteine protease superfamily. The OTU domain confers deubiquitinase activity and the encoded protein has been shown to suppress the type I interferon-dependent innate immune response by cleaving the polyubiquitin chain from an essential type I interferon adaptor protein. Cleavage results in disassociation of the adaptor protein from a downstream signaling complex and disruption of the type I interferon signaling cascade. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000102057 | KCND1 | potassium voltage-gated channel subfamily D member 1 | 3750 | This gene encodes a multipass membrane protein that comprises the pore subunit of the voltage-gated A-type potassium channel, which functions in the repolarization of membrane action potentials. Activity of voltage-gated potassium channels is important in a number of physiological processes, among them the regulation of neurotransmitter release, heart rate, insulin secretion, and smooth muscle contraction. |
| NA | ENSG00000068400 | GRIPAP1 | GRIP1 associated protein 1 | 56850 | This gene encodes a guanine nucleotide exchange factor for the Ras family of small G proteins (RasGEF). The encoded protein interacts in a complex with glutamate receptor interacting protein 1 (GRIP1) and plays a role in the regulation of AMPA receptor function. |
| NA | ENSG00000068323 | TFE3 | transcription factor binding to IGHM enhancer 3 | 7030 | This gene encodes a basic helix-loop-helix domain-containing transcription factor that binds MUE3-type E-box sequences in the promoter of genes. The encoded protein promotes the expression of genes downstream of transforming growth factor beta (TGF-beta) signaling. This gene may be involved in chromosomal translocations in renal cell carcinomas and other cancers, resulting in the production of fusion proteins. Translocation partners include PRCC (papillary renal cell carcinoma), NONO (non-POU domain containing, octamer-binding), and ASPSCR1 (alveolar soft part sarcoma chromosome region, candidate 1), among other genes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000147144 | CCDC120 | coiled-coil domain containing 120 | 90060 | This gene encodes a protein that contains a coiled-coil domain. Several alternatively spliced transcript variants encoding multiple isoforms have been found for this gene. |
| NA | ENSG00000243279 | PRAF2 | PRA1 domain family member 2 | 11230 | NA |
| NA | ENSG00000196998 | WDR45 | WD repeat domain 45 | 11152 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. This gene has a pseudogene at chromosome 4q31.3. Multiple alternatively spliced transcript variants encoding distinct isoforms have been found for this gene, but the biological validity and full-length nature of some variants have not been determined. |
| NA | ENSG00000068394 | GPKOW | G-patch domain and KOW motifs | 27238 | This gene encodes a putative RNA-binding protein containing G-patch and KOW (Kyprides, Ouzounis, Woese) domains. The encoded protein interacts directly with protein kinase A and protein kinase X and is also found associated with the spliceosome. |
| NA | ENSG00000102007 | PLP2 | proteolipid protein 2 (colonic epithelium-enriched) | 5355 | This gene encodes an integral membrane protein that localizes to the endoplasmic reticulum in colonic epithelial cells. The encoded protein can multimerize and may function as an ion channel. A polymorphism in the promoter of this gene may be linked to an increased risk of X-linked mental retardation. A pseudogene of this gene is found on chromosome 5. |
| NA | ENSG00000012211 | PRICKLE3 | prickle planar cell polarity protein 3 | 4007 | LIM domain only 6 is a three LIM domain-containing protein. The LIM domain is a cysteine-rich sequence motif that binds zinc atoms to form a specific protein-binding interface for protein-protein interactions. |
| NA | ENSG00000102003 | SYP | synaptophysin | 6855 | This gene encodes an integral membrane protein of small synaptic vesicles in brain and endocrine cells. The protein also binds cholesterol and is thought to direct targeting of vesicle-associated membrane protein 2 (synaptobrevin) to intracellular compartments. Mutations in this gene are associated with X-linked mental retardation (XLMR). |
| NA | ENSG00000101997 | CCDC22 | coiled-coil domain containing 22 | 28952 | This gene encodes a protein containing a coiled-coil domain. The encoded protein functions in the regulation of NF-kB (nuclear factor kappa-light-chain-enhancer of activated B cells) by interacting with COMMD (copper metabolism Murr1 domain-containing) proteins. The mouse orthologous protein has been shown to bind copines, which are calcium-dependent, membrane-binding proteins that may function in calcium signaling. This human gene has been identified as a novel candidate gene for syndromic X-linked intellectual disability. |
| NA | ENSG00000049769 | PPP1R3F | protein phosphatase 1 regulatory subunit 3F | 89801 | This gene encodes a protein that has been identified as one of several type-1 protein phosphatase (PP1) regulatory subunits. One or two of these subunits, together with the well-conserved catalytic subunit, can form the PP1 holoenzyme, where the regulatory subunit functions to regulate substrate specificity and/or targeting to a particular cellular compartment. Alternative splicing results in multiple transcript variants. |
| TRUE | ENSG00000242013 | NA | NA | NA | NA |
| NA | ENSG00000171365 | CLCN5 | chloride voltage-gated channel 5 | 1184 | This gene encodes a member of the ClC family of chloride ion channels and ion transporters. The encoded protein is primarily localized to endosomal membranes and may function to facilitate albumin uptake by the renal proximal tubule. Mutations in this gene have been found in Dent disease and renal tubular disorders complicated by nephrolithiasis. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000158352 | SHROOM4 | shroom family member 4 | 57477 | This gene encodes a member of the APX/Shroom family, which contain an N-terminal PDZ domain and a C-terminal ASD2 motif. The encoded protein may play a role in cytoskeletal architecture. Mutations in this gene have been linked to Stocco dos Santos X-linked mental retardation syndrome. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000122824 | NUDT10 | nudix hydrolase 10 | 170685 | This gene is a member of the nudix (nucleoside diphosphate linked moiety X)-type motif containing family. The encoded protein is a phosphohydrolase and may regulate the turnover of diphosphoinositol polyphosphates. The turnover of these high-energy diphosphoinositol polyphosphates represents a molecular switching activity with important regulatory consequences. Molecular switching by diphosphoinositol polyphosphates may contribute to the regulation of intracellular trafficking. In some populations putative prostate cancer susceptibility alleles have been identified for this gene. Alternatively spliced transcript variants, which differ only in the 5’ UTR, have been found for this gene. |
| NA | ENSG00000196368 | NUDT11 | nudix hydrolase 11 | 55190 | NUDT11 belongs to a subgroup of phosphohydrolases that preferentially attack diphosphoinositol polyphosphates (Hidaka et al., 2002 [PubMed 12105228]). |
| NA | ENSG00000179222 | MAGED1 | MAGE family member D1 | 9500 | This gene is a member of the melanoma antigen gene (MAGE) family. Most of the genes of this family encode tumor specific antigens that are not expressed in normal adult tissues except testis. Although the protein encoded by this gene shares strong homology with members of the MAGE family, it is expressed in almost all normal adult tissues. This gene has been demonstrated to be involved in the p75 neurotrophin receptor mediated programmed cell death pathway. Three transcript variants encoding two different isoforms have been found for this gene. |
| NA | ENSG00000187243 | MAGED4B | melanoma antigen family D4B | 81557 | This gene is a member of the MAGED gene family. It is expressed only in brain and ovary, and some transcript variants of this gene are specifically expressed in glioma cells. This gene is clustered with other MAGED genes on chromosome Xp11. Alternatively spliced transcript variants encoding different isoforms have been described for this gene. |
| NA | ENSG00000154545 | MAGED4 | melanoma antigen family D4 | 728239 | NA |
| NA | ENSG00000179304 | FAM156B | family with sequence similarity 156 member B | 727866 | NA |
| NA | ENSG00000184194 | GPR173 | G protein-coupled receptor 173 | 54328 | This gene encodes a member of the G-protein coupled receptor 1 family. This protein contains 7 transmembrane domains and conserved cysteine residues. |
| NA | ENSG00000126012 | KDM5C | lysine demethylase 5C | 8242 | This gene is a member of the SMCY homolog family and encodes a protein with one ARID domain, one JmjC domain, one JmjN domain and two PHD-type zinc fingers. The DNA-binding motifs suggest this protein is involved in the regulation of transcription and chromatin remodeling. Mutations in this gene have been associated with X-linked mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000124313 | IQSEC2 | IQ motif and Sec7 domain 2 | 23096 | This gene encodes a guanine nucleotide exchange factor for the ARF family of small GTP-binding proteins. The encoded protein is a component of the postsynaptic density at excitatory synapses, and may play a critical role in cytoskeletal and synaptic organization through the activation of selected ARF substrates including ARF1 and ARF6. Mutations in this gene have been implicated in nonsyndromic X-linked mental retardation. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000072501 | SMC1A | structural maintenance of chromosomes 1A | 8243 | Proper cohesion of sister chromatids is a prerequisite for the correct segregation of chromosomes during cell division. The cohesin multiprotein complex is required for sister chromatid cohesion. This complex is composed partly of two structural maintenance of chromosomes (SMC) proteins, SMC3 and either SMC1B or the protein encoded by this gene. Most of the cohesin complexes dissociate from the chromosomes before mitosis, although those complexes at the kinetochore remain. Therefore, the encoded protein is thought to be an important part of functional kinetochores. In addition, this protein interacts with BRCA1 and is phosphorylated by ATM, indicating a potential role for this protein in DNA repair. This gene, which belongs to the SMC gene family, is located in an area of the X-chromosome that escapes X inactivation. Mutations in this gene result in Cornelia de Lange syndrome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000072506 | HSD17B10 | hydroxysteroid (17-beta) dehydrogenase 10 | 3028 | This gene encodes 3-hydroxyacyl-CoA dehydrogenase type II, a member of the short-chain dehydrogenase/reductase superfamily. The gene product is a mitochondrial protein that catalyzes the oxidation of a wide variety of fatty acids and steroids, and is a subunit of mitochondrial ribonuclease P, which is involved in tRNA maturation. The protein has been implicated in the development of Alzheimer disease, and mutations in the gene are the cause of 17beta-hydroxysteroid dehydrogenase type 10 (HSD10) deficiency. Several alternatively spliced transcript variants have been identified, but the full-length nature of only two transcript variants has been determined. |
| NA | ENSG00000086758 | HUWE1 | HECT, UBA and WWE domain containing 1, E3 ubiquitin protein ligase | 10075 | This gene encodes a protein containing a C-terminal HECT (E6AP type E3 ubiquitin protein ligase) domain that functions as an E3 ubiquitin ligase. The encoded protein is required for the ubiquitination and subsequent degradation of the anti-apoptotic protein Mcl1 (myeloid cell leukemia sequence 1 (BCL2-related)). This protein also ubiquitinates the p53 tumor suppressor, core histones, and DNA polymerase beta. Mutations in this gene are associated with Turner type X-linked syndromic mental retardation. |
| NA | ENSG00000172943 | PHF8 | PHD finger protein 8 | 23133 | The protein encoded by this gene is a histone lysine demethylase that preferentially acts on histones in the monomethyl or dimethyl states. The encoded protein requires Fe(2+) ion, 2-oxoglutarate, and oxygen for its catalytic activity. Defects in this gene are a cause of mental retardation syndromic X-linked Siderius type (MRXSSD). Four transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000184083 | FAM120C | family with sequence similarity 120C | 54954 | This gene encodes a potential transmembrane protein and lies in a region where mutations and deletions have been associated with intellectual disability and autism. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000196632 | WNK3 | WNK lysine deficient protein kinase 3 | 65267 | This gene encodes a protein belonging to the ‘with no lysine’ family of serine-threonine protein kinases. These family members lack the catalytic lysine in subdomain II, and instead have a conserved lysine in subdomain I. This family member functions as a positive regulator of the transcellular Ca2+ transport pathway, and it plays a role in the increase of cell survival in a caspase-3-dependent pathway. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000158526 | TSR2 | TSR2, 20S rRNA accumulation, homolog (S. cerevisiae) | 90121 | NA |
| NA | ENSG00000102302 | FGD1 | FYVE, RhoGEF and PH domain containing 1 | 2245 | This gene encodes a protein that contains Dbl (DH) and pleckstrin (PH) homology domains and is similar to the Rho family of small GTP-binding proteins. The encoded protein specifically binds to the Rho family GTPase Cdc42Hs and can stimulate the GDP-GTP exchange of the isoprenylated form of Cdc42Hs. It also stimulates the mitogen activated protein kinase cascade leading to c-Jun kinase SAPK/JNK1 activation. Defects in this gene are the cause of faciogenital dysplasia and X-linked mental retardation, syndromatic 16. |
| NA | ENSG00000130119 | GNL3L | G protein nucleolar 3 like | 54552 | The protein encoded by this gene appears to be a nucleolar GTPase that is essential for ribosomal pre-rRNA processing and cell proliferation. Two transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000067445 | TRO | trophinin | 7216 | This gene encodes a membrane protein that mediates cell adhesion between trophoblastic cells and the epithelial cells of the endometrium. The encoded protein participates in cell signalling during embryo implantation, and may also be involved in cancer formation. This gene is located near several other closely related genes on chromosome X. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000169188 | APEX2 | apurinic/apyrimidinic endodeoxyribonuclease 2 | 27301 | Apurinic/apyrimidinic (AP) sites occur frequently in DNA molecules by spontaneous hydrolysis, by DNA damaging agents or by DNA glycosylases that remove specific abnormal bases. AP sites are pre-mutagenic lesions that can prevent normal DNA replication so the cell contains systems to identify and repair such sites. Class II AP endonucleases cleave the phosphodiester backbone 5’ to the AP site. This gene encodes a protein shown to have a weak class II AP endonuclease activity. Most of the encoded protein is located in the nucleus but some is also present in mitochondria. This protein may play an important role in both nuclear and mitochondrial base excision repair. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000256045 | MTRNR2L10 | MT-RNR2-like 10 | 100463488 | NA |
| NA | ENSG00000187601 | MAGEH1 | MAGE family member H1 | 28986 | This gene belongs to the non-CT (non cancer/testis) subgroup of the melanoma-associated antigen (MAGE) superfamily. The encoded protein is likely associated with apoptosis, cell cycle arrest, growth inhibition or cell differentiation. The protein may be involved in the atRA (all-trans retinoic acid) signaling through the STAT1-alpha (signal transducer and activator of transcription 1-alpha) pathway. |
| NA | ENSG00000247746 | USP51 | ubiquitin specific peptidase 51 | 158880 | NA |
| NA | ENSG00000083750 | RRAGB | Ras related GTP binding B | 10325 | Ras-homologous GTPases constitute a large family of signal transducers that alternate between an activated, GTP-binding state and an inactivated, GDP-binding state. These proteins represent cellular switches that are operated by GTP-exchange factors and factors that stimulate their intrinsic GTPase activity. All GTPases of the Ras superfamily have in common the presence of six conserved motifs involved in GTP/GDP binding, three of which are phosphate-/magnesium-binding sites (PM1-PM3) and three of which are guanine nucleotide-binding sites (G1-G3). Transcript variants encoding distinct isoforms have been identified. |
| NA | ENSG00000102349 | KLF8 | Kruppel-like factor 8 | 11279 | This gene encodes a protein which is a member of the Sp/KLF family of transcription factors. Members of this family contain a C-terminal DNA-binding domain with three Kruppel-like zinc fingers. The encoded protein is thought to play an important role in the regulation of epithelial to mesenchymal transition, a process which occurs normally during development but also during metastasis. A pseudogene has been identified on chromosome 16. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000188021 | UBQLN2 | ubiquilin 2 | 29978 | This gene encodes an ubiquitin-like protein (ubiquilin) that shares high degree of similarity with related products in yeast, rat and frog. Ubiquilins contain a N-terminal ubiquitin-like domain and a C-terminal ubiquitin-associated domain. They physically associate with both proteasomes and ubiquitin ligases; and thus, are thought to functionally link the ubiquitination machinery to the proteasome to affect in vivo protein degradation. This ubiquilin has also been shown to bind the ATPase domain of the Hsp70-like Stch protein. |
| NA | ENSG00000204271 | SPIN3 | spindlin family member 3 | 169981 | NA |
| NA | ENSG00000186787 | SPIN2B | spindlin family member 2B | 474343 | NA |
| NA | ENSG00000147059 | SPIN2A | spindlin family member 2A | 54466 | This gene encodes one of three members of the DXF34 gene family, located in a 100-kb region of chromosome Xp11.21. |
| NA | ENSG00000165591 | FAAH2 | fatty acid amide hydrolase 2 | 158584 | This gene encodes a fatty acid amide hydrolase that shares a conserved protein motif with the amidase signature family of enzymes. The encoded enzyme is able to catalyze the hydrolysis of a broad range of bioactive lipids, including those from the three main classes of fatty acid amides; N-acylethanolamines, fatty acid primary amides and N-acyl amino acids. This enzyme has a preference for monounsaturated acyl chains as a substrate. |
| NA | ENSG00000198455 | ZXDB | zinc finger, X-linked, duplicated B | 158586 | The ZXDB gene is one of a pair of duplicated zinc finger genes on chromosome Xp11.21 (Greig et al., 1993 [PubMed 8268913]); see also ZXDA (MIM 300235). |
| NA | ENSG00000186767 | SPIN4 | spindlin family member 4 | 139886 | NA |
| NA | ENSG00000184675 | AMER1 | APC membrane recruitment protein 1 | 139285 | The protein encoded by this gene upregulates trancriptional activation by the Wilms tumor protein and interacts with many other proteins, including CTNNB1, APC, AXIN1, and AXIN2. Defects in this gene are a cause of osteopathia striata with cranial sclerosis (OSCS). |
| NA | ENSG00000102043 | MTMR8 | myotubularin related protein 8 | 55613 | This gene encodes a member of the myotubularin-related family and is part of the MTMR6 subgroup. Family members are dual-specificity phosphatases and the encoded protein contains a phosphoinositide-binding domain (PID) and a SET-interacting domain (SID). Defects in other family members have been found in myotubular myopathic diseases. |
| NA | ENSG00000126970 | ZC4H2 | zinc finger C4H2-type containing | 55906 | This gene encodes a member of the zinc finger domain-containing protein family. This family member has a C-terminal zinc finger domain that is characterized by four cysteine residues and two histidine residues, and it also includes a coiled-coil region. This protein has been detected as an autoantigen in hepatocellular carcinoma patients. This gene has been identified as a potential candidate for X-linked mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000001497 | LAS1L | LAS1-like, ribosome biogenesis factor | 81887 | NA |
| NA | ENSG00000147065 | MSN | moesin | 4478 | Moesin (for membrane-organizing extension spike protein) is a member of the ERM family which includes ezrin and radixin. ERM proteins appear to function as cross-linkers between plasma membranes and actin-based cytoskeletons. Moesin is localized to filopodia and other membranous protrusions that are important for cell-cell recognition and signaling and for cell movement. |
| NA | ENSG00000089472 | HEPH | hephaestin | 9843 | This gene encodes a member of the multicopper oxidase protein family. The encoded protein is involved in the transport of dietary iron from epithelial cells of the intestinal lumen into the circulatory system, and may be involved in copper transport and homeostasis. In mouse, defects in this gene can lead to severe microcytic anemia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000131080 | EDA2R | ectodysplasin A2 receptor | 60401 | EDA-A1 and EDA-A2 are two isoforms of ectodysplasin that are encoded by the anhidrotic ectodermal dysplasia (EDA) gene. Mutations in EDA give rise to a clinical syndrome characterized by loss of hair, sweat glands, and teeth. The protein encoded by this gene specifically binds to EDA-A2 isoform. This protein is a type III transmembrane protein of the TNFR (tumor necrosis factor receptor) superfamily, and contains 3 cysteine-rich repeats and a single transmembrane domain but lacks an N-terminal signal peptide. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000169083 | AR | androgen receptor | 367 | The androgen receptor gene is more than 90 kb long and codes for a protein that has 3 major functional domains: the N-terminal domain, DNA-binding domain, and androgen-binding domain. The protein functions as a steroid-hormone activated transcription factor. Upon binding the hormone ligand, the receptor dissociates from accessory proteins, translocates into the nucleus, dimerizes, and then stimulates transcription of androgen responsive genes. This gene contains 2 polymorphic trinucleotide repeat segments that encode polyglutamine and polyglycine tracts in the N-terminal transactivation domain of its protein. Expansion of the polyglutamine tract causes spinal bulbar muscular atrophy (Kennedy disease). Mutations in this gene are also associated with complete androgen insensitivity (CAIS). Two alternatively spliced variants encoding distinct isoforms have been described. |
| NA | ENSG00000079482 | OPHN1 | oligophrenin 1 | 4983 | This gene encodes a Rho-GTPase-activating protein that promotes GTP hydrolysis of Rho subfamily members. Rho proteins are important mediators of intracellular signal transduction, which affects cell migration and cell morphogenesis. Mutations in this gene are responsible for OPHN1-related X-linked mental retardation with cerebellar hypoplasia and distinctive facial dysmorhphism. |
| NA | ENSG00000181704 | YIPF6 | Yip1 domain family member 6 | 286451 | NA |
| NA | ENSG00000090776 | EFNB1 | ephrin-B1 | 1947 | The protein encoded by this gene is a type I membrane protein and a ligand of Eph-related receptor tyrosine kinases. It may play a role in cell adhesion and function in the development or maintenance of the nervous system. |
| NA | ENSG00000181191 | PJA1 | praja ring finger ubiquitin ligase 1 | 64219 | This gene encodes an enzyme that has E2-dependent E3 ubiquitin-protein ligase activity. This enzyme belongs to a class of ubiquitin ligases that include a RING finger motif, and it can interact with the E2 ubiquitin-conjugating enzyme UbcH5B. This gene is located in an area of chromosome X where several X-linked mental retardation disorders have been associated, and it has also been found as part of a contiguous gene deletion associated with craniofrontonasal syndrome, though a direct link to any disorder has yet to be demonstrated. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000130054 | FAM155B | family with sequence similarity 155 member B | 27112 | This gene encodes a product belonging to a family of proteins with unknown function. The presence of two transmembrane domains suggests that this protein is a multi-pass membrane protein. |
| NA | ENSG00000158813 | EDA | ectodysplasin A | 1896 | The protein encoded by this gene is a type II membrane protein that can be cleaved by furin to produce a secreted form. The encoded protein, which belongs to the tumor necrosis factor family, acts as a homotrimer and may be involved in cell-cell signaling during the development of ectodermal organs. Defects in this gene are a cause of ectodermal dysplasia, anhidrotic, which is also known as X-linked hypohidrotic ectodermal dysplasia. Several transcript variants encoding many different isoforms have been found for this gene. |
| NA | ENSG00000130055 | GDPD2 | glycerophosphodiester phosphodiesterase domain containing 2 | 54857 | This gene encodes a member of the glycerophosphodiester phosphodiesterase enzyme family. The encoded protein hydrolyzes glycerophosphoinositol to produce inositol 1-phosphate and glycerol. This protein may have a role in osteoblast differentiation and growth. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000082458 | DLG3 | discs large homolog 3 | 1741 | This gene encodes a member of the membrane-associated guanylate kinase protein family. The encoded protein may play a role in clustering of NMDA receptors at excitatory synapses. It may also negatively regulate cell proliferation through interaction with the C-terminal region of the adenomatosis polyposis coli tumor suppressor protein. Mutations in this gene have been associated with X-linked mental retardation. Alternatively spliced transcript variants have been described. |
| NA | ENSG00000165349 | SLC7A3 | solute carrier family 7 member 3 | 84889 | This gene encodes a member of the solute carrier family 7. The encoded protein is a sodium-independent cationic amino acid transporter. Alternate splicing results in multiple transcripts that encoded the same protein. |
| NA | ENSG00000184481 | FOXO4 | forkhead box O4 | 4303 | This gene encodes a member of the O class of winged helix/forkhead transcription factor family. Proteins encoded by this class are regulated by factors involved in growth and differentiation indicating they play a role in these processes. A translocation involving this gene on chromosome X and the homolog of the Drosophila trithorax gene, encoding a DNA binding protein, located on chromosome 11 is associated with leukemia. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000184634 | MED12 | mediator complex subunit 12 | 9968 | The initiation of transcription is controlled in part by a large protein assembly known as the preinitiation complex. A component of this preinitiation complex is a 1.2 MDa protein aggregate called Mediator. This Mediator component binds with a CDK8 subcomplex which contains the protein encoded by this gene, mediator complex subunit 12 (MED12), along with MED13, CDK8 kinase, and cyclin C. The CDK8 subcomplex modulates Mediator-polymerase II interactions and thereby regulates transcription initiation and reinitation rates. The MED12 protein is essential for activating CDK8 kinase. Defects in this gene cause X-linked Opitz-Kaveggia syndrome, also known as FG syndrome, and Lujan-Fryns syndrome. |
| NA | ENSG00000196338 | NLGN3 | neuroligin 3 | 54413 | This gene encodes a member of a family of neuronal cell surface proteins. Members of this family may act as splice site-specific ligands for beta-neurexins and may be involved in the formation and remodeling of central nervous system synapses. Mutations in this gene may be associated with autism and Asperger syndrome. Multiple transcript variants encoding distinct isoforms have been identified for this gene. |
| NA | ENSG00000147130 | ZMYM3 | zinc finger MYM-type containing 3 | 9203 | This gene is located on the X chromosome and is subject to X inactivation. It is highly conserved in vertebrates and most abundantly expressed in the brain. The encoded protein is a component of histone deacetylase-containing multiprotein complexes that function through modifying chromatin structure to keep genes silent. A chromosomal translocation (X;13) involving this gene is associated with X-linked mental retardation. Several alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000147140 | NONO | non-POU domain containing, octamer-binding | 4841 | This gene encodes an RNA-binding protein which plays various roles in the nucleus, including transcriptional regulation and RNA splicing. A rearrangement between this gene and the transcription factor E3 gene has been observed in papillary renal cell carcinoma. Alternatively spliced transcript variants have been described. Pseudogenes exist on Chromosomes 2 and 16. |
| NA | ENSG00000147166 | ITGB1BP2 | integrin subunit beta 1 binding protein 2 | 26548 | NA |
| NA | ENSG00000147133 | TAF1 | TATA-box binding protein associated factor 1 | 6872 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is the basal transcription factor TFIID, which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes the largest subunit of TFIID. This subunit binds to core promoter sequences encompassing the transcription start site. It also binds to activators and other transcriptional regulators, and these interactions affect the rate of transcription initiation. This subunit contains two independent protein kinase domains at the N- and C-terminals, but also possesses acetyltransferase activity and can act as a ubiquitin-activating/conjugating enzyme. Mutations in this gene result in Dystonia 3, torsion, X-linked, a dystonia-parkinsonism disorder. Alternative splicing of this gene results in multiple transcript variants. This gene is part of a complex transcription unit (TAF1/DYT3), wherein some transcript variants share exons with TAF1 as well as additional downstream DYT3 exons. |
| NA | ENSG00000147162 | OGT | O-linked N-acetylglucosamine (GlcNAc) transferase | 8473 | This gene encodes a glycosyltransferase that catalyzes the addition of a single N-acetylglucosamine in O-glycosidic linkage to serine or threonine residues. Since both phosphorylation and glycosylation compete for similar serine or threonine residues, the two processes may compete for sites, or they may alter the substrate specificity of nearby sites by steric or electrostatic effects. The protein contains multiple tetratricopeptide repeats that are required for optimal recognition of substrates. Alternatively spliced transcript variants encoding distinct isoforms have been found for this gene. |
| NA | ENSG00000102309 | PIN4 | peptidylprolyl cis/trans isomerase, NIMA-interacting 4 | 5303 | This gene encodes a member of the parvulin subfamily of the peptidyl-prolyl cis/trans isomerase protein family. The encoded protein catalyzes the isomerization of peptidylprolyl bonds, and may play a role in the cell cycle, chromatin remodeling, and/or ribosome biogenesis. The encoded protein may play an additional role in the mitochondria. |
| NA | ENSG00000186871 | ERCC6L | excision repair cross-complementation group 6 like | 54821 | NA |
| NA | ENSG00000198034 | RPS4X | ribosomal protein S4, X-linked | 6191 | Cytoplasmic ribosomes, organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes ribosomal protein S4, a component of the 40S subunit. Ribosomal protein S4 is the only ribosomal protein known to be encoded by more than one gene, namely this gene and ribosomal protein S4, Y-linked (RPS4Y). The 2 isoforms encoded by these genes are not identical, but are functionally equivalent. Ribosomal protein S4 belongs to the S4E family of ribosomal proteins. This gene is not subject to X-inactivation. It has been suggested that haploinsufficiency of the ribosomal protein S4 genes plays a role in Turner syndrome; however, this hypothesis is controversial. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000147099 | HDAC8 | histone deacetylase 8 | 55869 | Histones play a critical role in transcriptional regulation, cell cycle progression, and developmental events. Histone acetylation/deacetylation alters chromosome structure and affects transcription factor access to DNA. The protein encoded by this gene belongs to class I of the histone deacetylase family. It catalyzes the deacetylation of lysine residues in the histone N-terminal tails and represses transcription in large multiprotein complexes with transcriptional co-repressors. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000067177 | PHKA1 | phosphorylase kinase, alpha 1 (muscle) | 5255 | Phosphorylase kinase is a polymer of 16 subunits, four each of alpha, beta, gamma and delta. The alpha subunit includes the skeletal muscle and hepatic isoforms, and the skeletal muscle isoform is encoded by this gene. The beta subunit is the same in both the muscle and hepatic isoforms, and encoded by one gene. The gamma subunit also includes the skeletal muscle and hepatic isoforms, which are encoded by two different genes. The delta subunit is a calmodulin and can be encoded by three different genes. The gamma subunits contain the active site of the enzyme, whereas the alpha and beta subunits have regulatory functions controlled by phosphorylation. The delta subunit mediates the dependence of the enzyme on calcium concentration. Mutations in this gene cause glycogen storage disease type 9D, also known as X-linked muscle glycogenosis. Alternatively spliced transcript variants encoding different isoforms have been identified in this gene. A pseudogene has been found on chromosome 1. |
| NA | ENSG00000186462 | NAP1L2 | nucleosome assembly protein 1 like 2 | 4674 | The protein encoded by this intronless gene is a member of the nucleosome assembly protein (NAP) family. The encoded protein represents a class of tissue-specific factors that interact with chromatin to regulate neuronal cell proliferation. |
| NA | ENSG00000204116 | CHIC1 | cysteine rich hydrophobic domain 1 | 53344 | NA |
| NA | ENSG00000147100 | SLC16A2 | solute carrier family 16 member 2 | 6567 | This gene encodes an integral membrane protein that functions as a transporter of thyroid hormone. The encoded protein facilitates the cellular importation of thyroxine (T4), triiodothyronine (T3), reverse triiodothyronine (rT3) and diidothyronine (T2). This gene is expressed in many tissues and likely plays an important role in the development of the central nervous system. Loss of function mutations in this gene are associated with psychomotor retardation in males while females exhibit no neurological defects and more moderate thyroid-deficient phenotypes. This gene is subject to X-chromosome inactivation. Mutations in this gene are the cause of Allan-Herndon-Dudley syndrome. |
| NA | ENSG00000131263 | RLIM | ring finger protein, LIM domain interacting | 51132 | The protein encoded by this gene is a RING-H2 zinc finger protein. It has been shown to be an E3 ubiquitin protein ligase that targets LIM domain binding 1 (LDB1/CLIM), and causes proteasome-dependent degradation of LDB1. This protein and LDB1 are co-repressors of LHX1/LIM-1, a homeodomain transcription factor. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000131269 | ABCB7 | ATP binding cassette subfamily B member 7 | 22 | The membrane-associated protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the MDR/TAP subfamily. Members of the MDR/TAP subfamily are involved in multidrug resistance as well as antigen presentation. This gene encodes a half-transporter involved in the transport of heme from the mitochondria to the cytosol. With iron/sulfur cluster precursors as its substrates, this protein may play a role in metal homeostasis. Mutations in this gene have been associated with mitochondrial iron accumulation and isodicentric (X)(q13) and sideroblastic anemia. Alternatively spliced transcript variants encoding multiple isoforms have been observed for this gene. |
| NA | ENSG00000094841 | UPRT | uracil phosphoribosyltransferase homolog | 139596 | This gene encodes uracil phosphoribosyltransferase, which catalyzes the conversion of uracil and 5-phosphoribosyl-1-R-diphosphate to uridine monophosphate (UMP). This reaction is an important part of nucleotide metabolism, specifically the pyrimidine salvage pathway. The enzyme localizes to the nucleus and cytoplasm. The protein is a potential target for rational design of drugs to treat parasitic infections and cancer. |
| NA | ENSG00000102383 | ZDHHC15 | zinc finger DHHC-type containing 15 | 158866 | The protein encoded by this gene belongs to the DHHC palmitoyltransferase family. Mutations in this gene are associated with mental retardatio X-linked type 91 (MRX91). Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198934 | MAGEE1 | MAGE family member E1 | 57692 | This gene encodes an alpha-dystrobrevin-associated MAGE (melanoma-associated antigen) protein, which is a member of the MAGE family. The protein contains a nuclear localization signal in the N-terminus, 30 12-amino acid repeats beginning at nt 60 with the consensus sequence ASEGPSTSVLPT, and two MAGE domains in the C-terminus. It may play a signaling role in brain, muscle, and peripheral nerve. This gene is located on X chromosome in a region containing loci linked to mental retardation. |
| NA | ENSG00000085224 | ATRX | alpha thalassemia/mental retardation syndrome X-linked | 546 | The protein encoded by this gene contains an ATPase/helicase domain, and thus it belongs to the SWI/SNF family of chromatin remodeling proteins. This protein is found to undergo cell cycle-dependent phosphorylation, which regulates its nuclear matrix and chromatin association, and suggests its involvement in the gene regulation at interphase and chromosomal segregation in mitosis. Mutations in this gene are associated with an X-linked mental retardation (XLMR) syndrome most often accompanied by alpha-thalassemia (ATRX) syndrome. These mutations have been shown to cause diverse changes in the pattern of DNA methylation, which may provide a link between chromatin remodeling, DNA methylation, and gene expression in developmental processes. Multiple alternatively spliced transcript variants encoding distinct isoforms have been reported. |
| NA | ENSG00000102158 | MAGT1 | magnesium transporter 1 | 84061 | This gene encodes a magnesium cation transporter protein that localizes to the cell membrane. This protein also associates with N-oligosaccharyl transferase and therefore may have a role in N-glycosylation. Mutations in this gene cause mental retardation X-linked type 95 (MRX95). This gene may have multiple in-frame translation initiation sites, one of which would encode a shorter protein with an N-terminus containing a signal peptide at amino acids 1-29. |
| NA | ENSG00000165240 | ATP7A | ATPase copper transporting alpha | 538 | This gene encodes a transmembrane protein that functions in copper transport across membranes. This protein is localized to the trans Golgi network, where it is predicted to supply copper to copper-dependent enzymes in the secretory pathway. It relocalizes to the plasma membrane under conditions of elevated extracellular copper, and functions in the efflux of copper from cells. Mutations in this gene are associated with Menkes disease, X-linked distal spinal muscular atrophy, and occipital horn syndrome. Alternatively-spliced transcript variants have been observed. |
| NA | ENSG00000226784 | PGAM4 | phosphoglycerate mutase family member 4 | 441531 | This intronless gene appears to have arisen from a retrotransposition event, yet it is thought to be an expressed, protein-coding gene. The encoded protein is a member of the phosphoglycerate mutase family, a set of enzymes that catalyze the transfer of a phosphate group from 3-phosphoglycerate to 2-phosphoglycerate. |
| NA | ENSG00000187325 | TAF9B | TATA-box binding protein associated factor 9b | 51616 | Initiation of transcription by RNA polymerase II requires the activities of more than 70 polypeptides. The protein that coordinates these activities is transcription factor IID (TFIID), which binds to the core promoter to position the polymerase properly, serves as the scaffold for assembly of the remainder of the transcription complex, and acts as a channel for regulatory signals. TFIID is composed of the TATA-binding protein (TBP) and a group of evolutionarily conserved proteins known as TBP-associated factors or TAFs. TAFs may participate in basal transcription, serve as coactivators, function in promoter recognition or modify general transcription factors (GTFs) to facilitate complex assembly and transcription initiation. This gene encodes a protein that is similar to one of the small subunits of TFIID, TBP-associated factor 9, and is also a subunit of TFIID. TAF9 and TAF9b share some functions but also have distinct roles in the transcriptional regulatory process. |
| NA | ENSG00000147145 | LPAR4 | lysophosphatidic acid receptor 4 | 2846 | This gene encodes a member of the lysophosphatidic acid receptor family. It may also be related to the P2Y receptors, a family of receptors that bind purine and pyrimidine nucleotides and are coupled to G proteins. The encoded protein may play a role in monocytic differentiation. |
| NA | ENSG00000078596 | ITM2A | integral membrane protein 2A | 9452 | This gene encodes a type II membrane protein that belongs to the ITM2 family. Studies in mouse suggest that it may be involved in osteo- and chondrogenic differentiation. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198157 | HMGN5 | high mobility group nucleosome binding domain 5 | 79366 | This gene encodes a nuclear protein with similarities to the high mobility group proteins, HMG14 and HMG17, which suggests that this protein may function as a nucleosomal binding and transcriptional activating protein. |
| NA | ENSG00000072133 | RPS6KA6 | ribosomal protein S6 kinase A6 | 27330 | This gene encodes a member of ribosomal S6 kinase family, serine-threonine protein kinases which are regulated by growth factors. The encoded protein may be distinct from other members of this family, however, as studies suggest it is not growth factor dependent and may not participate in the same signaling pathways. |
| NA | ENSG00000165259 | HDX | highly divergent homeobox | 139324 | NA |
| NA | ENSG00000155008 | APOOL | apolipoprotein O like | 139322 | This gene encodes a protein which contains an apolipoprotein O superfamily domain. This domain is found on proteins in circulating lipoprotein complexes. |
| NA | ENSG00000147180 | ZNF711 | zinc finger protein 711 | 7552 | This gene encodes a zinc finger protein of unknown function. It bears similarity to a zinc finger protein which acts as a transcriptional activator. This gene lies in a region of the X chromosome which has been associated with mental retardation. |
| NA | ENSG00000188419 | CHM | CHM, Rab escort protein 1 | 1121 | This gene encodes component A of the RAB geranylgeranyl transferase holoenzyme. In the dimeric holoenzyme, this subunit binds unprenylated Rab GTPases and then presents them to the catalytic Rab GGTase subunit for the geranylgeranyl transfer reaction. Rab GTPases need to be geranylgeranyled on either one or two cysteine residues in their C-terminus to localize to the correct intracellular membrane. Mutations in this gene are a cause of choroideremia; also known as tapetochoroidal dystrophy (TCD). This X-linked disease is characterized by progressive dystrophy of the choroid, retinal pigment epithelium and retina. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000126733 | DACH2 | dachshund family transcription factor 2 | 117154 | This gene is one of two genes which encode a protein similar to the Drosophila protein dachshund, a transcription factor involved in cell fate determination in the eye, limb and genital disc of the fly. The encoded protein contains two characteristic dachshund domains: an N-terminal domain responsible for DNA binding and a C-terminal domain responsible for protein-protein interactions. This gene is located on the X chromosome and is subject to inactivation by DNA methylation. The encoded protein may be involved in regulation of organogenesis and myogenesis, and may play a role in premature ovarian failure. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000102271 | KLHL4 | kelch like family member 4 | 56062 | This gene encodes a member of the kelch family of proteins, which are characterized by kelch repeat motifs and a POZ/BTB protein-binding domain. It is thought that kelch repeats are actin binding domains. However, the specific function of this protein has not been determined. Alternative splicing of this gene results in two transcript variants encoding different isoforms. |
| NA | ENSG00000102290 | PCDH11X | protocadherin 11 X-linked | 27328 | This gene belongs to the protocadherin gene family, a subfamily of the cadherin superfamily. The encoded protein consists of an extracellular domain containing 7 cadherin repeats, a transmembrane domain and a cytoplasmic tail that differs from those of the classical cadherins. The gene is located in a major X/Y block of homology and its Y homolog, despite divergence leading to coding region changes, is the most closely related cadherin family member. The protein is thought to play a fundamental role in cell-cell recognition essential for the segmental development and function of the central nervous system. Disruption of this gene may be associated with developmental dyslexia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000186310 | NAP1L3 | nucleosome assembly protein 1 like 3 | 4675 | This gene is intronless and encodes a member of the nucleosome assembly protein (NAP) family. This gene is linked closely to a region of genes responsible for several X-linked mental retardation syndromes. |
| NA | ENSG00000179083 | FAM133A | family with sequence similarity 133 member A | 286499 | NA |
| NA | ENSG00000147202 | DIAPH2 | diaphanous related formin 2 | 1730 | The product of this gene belongs to the diaphanous subfamily of the formin homology family of proteins. This gene may play a role in the development and normal function of the ovaries. Defects in this gene have been linked to premature ovarian failure 2. Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000165194 | PCDH19 | protocadherin 19 | 57526 | The protein encoded by this gene is a member of the delta-2 protocadherin subclass of the cadherin superfamily. The encoded protein is thought to be a calcium-dependent cell-adhesion protein that is primarily expressed in the brain. Defects in this gene are a cause of epilepsy female-restricted with mental retardation (EFMR). Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000000005 | TNMD | tenomodulin | 64102 | This gene encodes a protein that is related to chondromodulin-I, which is a cartilage-specific glycoprotein that functions to stimulate chondrocyte growth and to inhibit tube formation of endothelial cells. This protein is also an angiogenesis inhibitor. Genetic variation in this gene is associated with a risk for type 2 diabetes, central obesity and serum levels of systemic immune mediators in a body size-dependent manner. This gene is also a candidate gene for age-related macular degeneration, though a direct link has yet to be demonstrated. |
| NA | ENSG00000101811 | CSTF2 | cleavage stimulation factor, 3’ pre-RNA, subunit 2 | 1478 | This gene encodes a nuclear protein with an RRM (RNA recognition motif) domain. The protein is a member of the cleavage stimulation factor (CSTF) complex that is involved in the 3’ end cleavage and polyadenylation of pre-mRNAs. Specifically, this protein binds GU-rich elements within the 3’-untranslated region of mRNAs. |
| NA | ENSG00000188917 | TRMT2B | tRNA methyltransferase 2 homolog B | 79979 | This gene encodes a homolog of the TRM2 gene in S. cerevisiae. The yeast gene encodes a tRNA methyltransferase that plays a role in tRNA maturation. The yeast protein also has endo-exonuclease activity and may be involved in DNA double strand break repair. Alternative splicing results in multiple transcripts encoding different isoforms. |
| NA | ENSG00000126950 | TMEM35 | transmembrane protein 35 | 59353 | NA |
| NA | ENSG00000102384 | CENPI | centromere protein I | 2491 | This gene encodes a centromere protein that is a component of the CENPA-NAC (nucleosome-associated) complex. This complex is critical for accurate chromosome alignment and segregation and it ensures proper mitotic progression. This protein regulates the recruitment of kinetochore-associated proteins that are required to generate the spindle checkpoint signal. The product of this gene is involved in the response of gonadal tissues to follicle-stimulating hormone. Mutations in this gene may be involved in human X-linked disorders of gonadal development and gametogenesis. Alternate splicing results in multiple transcript variants. A pseudogene of this gene is found on chromosome 13. |
| NA | ENSG00000126953 | TIMM8A | translocase of inner mitochondrial membrane 8 homolog A (yeast) | 1678 | This translocase is involved in the import and insertion of hydrophobic membrane proteins from the cytoplasm into the mitochondrial inner membrane. The gene is mutated in Mohr-Tranebjaerg syndrome/Deafness Dystonia Syndrome (MTS/DDS) and it is postulated that MTS/DDS is a mitochondrial disease caused by a defective mitochondrial protein import system. Defects in this gene also cause Jensen syndrome; an X-linked disease with opticoacoustic nerve atrophy and muscle weakness. This protein, along with TIMM13, forms a 70 kDa heterohexamer. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000241343 | RPL36A | ribosomal protein L36a | 6173 | Cytoplasmic ribosomes, organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein, which shares sequence similarity with yeast ribosomal protein L44, belongs to the L44E (L36AE) family of ribosomal proteins. Although this gene has been referred to as ribosomal protein L44 (RPL44), its official name is ribosomal protein L36a (RPL36A). This gene and the human gene officially named ribosomal protein L36a-like (RPL36AL) encode nearly identical proteins; however, they are distinct genes. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. Naturally occurring read-through transcription occurs between this locus and the heterogeneous nuclear ribonucleoprotein H2 (H’) gene. |
| NA | ENSG00000102393 | GLA | galactosidase alpha | 2717 | This gene encodes a homodimeric glycoprotein that hydrolyses the terminal alpha-galactosyl moieties from glycolipids and glycoproteins. This enzyme predominantly hydrolyzes ceramide trihexoside, and it can catalyze the hydrolysis of melibiose into galactose and glucose. A variety of mutations in this gene affect the synthesis, processing, and stability of this enzyme, which causes Fabry disease, a rare lysosomal storage disorder that results from a failure to catabolize alpha-D-galactosyl glycolipid moieties. |
| NA | ENSG00000126945 | HNRNPH2 | heterogeneous nuclear ribonucleoprotein H2 (H’) | 3188 | This gene belongs to the subfamily of ubiquitously expressed heterogeneous nuclear ribonucleoproteins (hnRNPs). The hnRNPs are RNA binding proteins and they complex with heterogeneous nuclear RNA (hnRNA). These proteins are associated with pre-mRNAs in the nucleus and appear to influence pre-mRNA processing and other aspects of mRNA metabolism and transport. While all of the hnRNPs are present in the nucleus some seem to shuttle between the nucleus and the cytoplasm. The hnRNP proteins have distinct nucleic acid binding properties. The protein encoded by this gene has three repeats of quasi-RRM domains that binds to RNAs. It is very similar to the family member HNRPH1. This gene is thought to be involved in Fabray disease and X-linked agammaglobulinemia phenotype. Alternative splicing results in multiple transcript variants encoding the same protein. Read-through transcription between this locus and the ribosomal protein L36a gene has been observed. |
| NA | ENSG00000196440 | ARMCX4 | armadillo repeat containing, X-linked 4 | 100131755 | The product of this gene belongs to the armadillo repeat-containing family of proteins, which interact with other proteins in a variety of cellular processes. The function of this family member is currently unknown. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000126947 | ARMCX1 | armadillo repeat containing, X-linked 1 | 51309 | This gene encodes a member of the ALEX family of proteins and may play a role in tumor suppression. The encoded protein contains a potential N-terminal transmembrane domain and two Armadillo (arm) repeats. Other proteins containing the arm repeat are involved in development, maintenance of tissue integrity, and tumorigenesis. This gene is closely localized with other family members, including ALEX2 and ALEX3, on the X chromosome. |
| NA | ENSG00000198960 | ARMCX6 | armadillo repeat containing, X-linked 6 | 54470 | NA |
| NA | ENSG00000102401 | ARMCX3 | armadillo repeat containing, X-linked 3 | 51566 | This gene encodes a member of the ALEX family of proteins which may play a role in tumor suppression. The encoded protein contains a potential N-terminal transmembrane domain and a single Armadillo (arm) repeat. Other proteins containing the arm repeat are involved in development, maintenance of tissue integrity, and tumorigenesis. This gene is closely localized with other family members on the X chromosome. Three transcript variants encoding the same protein have been identified for this gene. |
| NA | ENSG00000184867 | ARMCX2 | armadillo repeat containing, X-linked 2 | 9823 | This gene encodes a protein containing a potential N-terminal transmembrane domain and multiple armadillo (arm) repeats. Proteins containing arm repeats are involved in development, maintenance of tissue integrity, and tumorigenesis. This gene is located in a cluster of related genes on chromosome X. There is a pseudogene for this gene on chromosome 7. Alternative splicing in the 5’ UTR results in multiple transcript variants encoding the same protein. |
| NA | ENSG00000166432 | ZMAT1 | zinc finger matrin-type 1 | 84460 | This gene encodes a protein containing Cys2-His2 (C2H2)-type zinc fingers, which are similar to those found in the nuclear matrix protein matrin 3. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000204071 | TCEAL6 | transcription elongation factor A like 6 | 158931 | NA |
| NA | ENSG00000184515 | BEX5 | brain expressed X-linked 5 | 340542 | NA |
| NA | ENSG00000158164 | TMSB15A | thymosin beta 15a | 11013 | NA |
| NA | ENSG00000125962 | ARMCX5 | armadillo repeat containing, X-linked 5 | 64860 | NA |
| NA | ENSG00000198932 | GPRASP1 | G protein-coupled receptor associated sorting protein 1 | 9737 | This gene encodes a member of the GPRASP (G protein-coupled receptor associated sorting protein) family. The protein may modulate lysosomal sorting and functional down-regulation of a variety of G-protein coupled receptors. It targets receptors for degradation in lysosomes. The receptors interacting with this sorting protein include D2 dopamine receptor (DRD2), delta opioid receptor (OPRD1), beta-2 adrenergic receptor (ADRB2), D4 dopamine receptor (DRD4) and cannabinoid 1 receptor (CB1R). Multiple alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000158301 | GPRASP2 | G protein-coupled receptor associated sorting protein 2 | 114928 | The protein encoded by this gene is a member of a family that regulates the activity of G protein-coupled receptors (GPCRs). The encoded protein has been shown to be capable of interacting with several GPCRs, including the M1 muscarinic acetylcholine receptor and the calcitonin receptor. Several transcript variants encoding the same protein have been found for this gene. |
| NA | ENSG00000158301 | ARMCX5-GPRASP2 | ARMCX5-GPRASP2 readthrough | 100528062 | This locus represents naturally occurring read-through transcription between the neighboring armadillo repeat containing, X-linked 5 and G protein-coupled receptor associated sorting protein 2 genes on chromosome X. The read-through transcript produces a protein identical to protein encoded by the downstream locus, G protein-coupled receptor associated sorting protein 2. |
| NA | ENSG00000198908 | BHLHB9 | basic helix-loop-helix domain containing, class B, 9 | 80823 | This gene is a member of a gene family which encodes proteins with a basic helix-loop-helix domain. Other members of this gene family encode proteins which function as transcription factors, either enhancing or inhibiting transcription depending on the activity of other DNA binding proteins. The coding region of this gene is located entirely within the terminal exon. The encoded protein may be involved in the survival of neurons (PMID: 15034937). Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000133169 | BEX1 | brain expressed X-linked 1 | 55859 | NA |
| NA | ENSG00000180964 | TCEAL8 | transcription elongation factor A like 8 | 90843 | This gene encodes a member of the transcription elongation factor A (SII)-like (TCEAL) gene family. Members of this family contain TFA domains and may function as nuclear phosphoproteins that modulate transcription in a promoter context-dependent manner. Multiple family members are located on the X chromosome. Alternative splicing results in multiple transcript variants encoding a single isoform. |
| NA | ENSG00000204065 | TCEAL5 | transcription elongation factor A like 5 | 340543 | This gene, which is located on the X chromosome, encodes a protein which contains a BEX (brain expressed X-liked like family) domain. This domain is found in proteins encoded by the TCEAL elongation factor (transcription elongation factor A (SII)-like) gene family also located on the X chromosome. The coding region for this gene is located entirely in the terminal exon. |
| NA | ENSG00000133134 | BEX2 | brain expressed X-linked 2 | 84707 | This gene belongs to the brain expressed X-linked gene family. The encoded protein interacts with the transcription factor LIM domain only 2 in a DNA-binding complex that recognizes the E-box element and promotes transcription. This gene has been found to be a tumor suppressor that is silenced in human glioma. In breast cancer cells, this gene product modulates apoptosis in response to estrogen and tamoxifen, and enhances the anti-proliferative effect of tamoxifen. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000182916 | TCEAL7 | transcription elongation factor A like 7 | 56849 | NA |
| NA | ENSG00000185222 | TCEAL9 | transcription elongation factor A like 9 | 51186 | The globular WW domain is composed of 38 to 40 semiconserved amino acids shared by proteins of diverse functions including structural, regulatory, and signaling proteins. The domain is involved in mediating protein-protein interactions through the binding of polyproline ligands. This gene encodes a WW domain binding protein. This gene also encodes a domain with similarity to the transcription elongation factor A, SII-related family. Alternative splicing results in multiple transcript variants encoding a single isoform. |
| NA | ENSG00000166681 | BEX3 | brain expressed X-linked 3 | 27018 | NA |
| NA | ENSG00000196507 | TCEAL3 | transcription elongation factor A like 3 | 85012 | This gene encodes a member of the transcription elongation factor A (SII)-like (TCEAL) gene family. Members of this family contain TFA domains and may function as nuclear phosphoproteins that modulate transcription in a promoter context-dependent manner. Multiple family members are located on the X chromosome. Alternative splicing results in multiple transcript variants encoding a single isoform. |
| NA | ENSG00000172465 | TCEAL1 | transcription elongation factor A like 1 | 9338 | This gene encodes a member of the transcription elongation factor A (SII)-like (TCEAL) gene family. Members of this family may function as nuclear phosphoproteins that modulate transcription in a promoter context-dependent manner. The encoded protein is similar to transcription elongation factor A/transcription factor SII and contains a zinc finger-like motif as well as a sequence related to the transcription factor SII Pol II-binding region. It may exert its effects via protein-protein interactions with other transcriptional regulators rather than via direct binding of DNA. Multiple family members are located on the X chromosome. Alternative splicing results in multiple transcript variants encoding a single isoform. |
| NA | ENSG00000123562 | MORF4L2 | mortality factor 4 like 2 | 9643 | NA |
| NA | ENSG00000158427 | TMSB15B | thymosin beta 15B | 286527 | NA |
| TRUE | ENSG00000176274 | NA | NA | NA | NA |
| NA | ENSG00000123572 | NRK | Nik related kinase | 203447 | The mouse ortholog of this gene encodes a protein kinase required for JNK activation. The encoded protein may be involved in the induction of actin polymerization in late embryogenesis. |
| NA | ENSG00000157502 | MUM1L1 | melanoma associated antigen (mutated) 1-like 1 | 139221 | This gene encodes a protein which contains a mutated melanoma-associated antigen 1 domain. Proteins which contain mutated antigens are expressed at high levels on certain types of cancers. Multiple alternatively spliced variants, encoding the same protein, have been identified. |
| NA | ENSG00000147231 | CXorf57 | chromosome X open reading frame 57 | 55086 | NA |
| NA | ENSG00000133138 | TBC1D8B | TBC1 domain family member 8B | 54885 | This gene encodes a protein with a TBC (Tre-2/Bub2/CDC16) domain. Some mammalian proteins with this domain have been shown to function as Rab-GAPs by binding to specific Rab proteins and affecting their GTPase activity. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000133131 | MORC4 | MORC family CW-type zinc finger 4 | 79710 | In human, the four current members of the microrchidia (morc) gene family share an N-terminal ATPase-like ATP-binding region and a CW four-cysteine zinc-finger motif. The protein encoded by this gene also has a nuclear matrix binding domain and a two-stranded coiled-coil motif near its C-terminus. This gene is widely expressed at low levels in normal tissues and has elevated expression in placenta and testis. Alternative splicing results in multiple transcript variants encoding distinct proteins. |
| NA | ENSG00000198088 | NUP62CL | nucleoporin 62kDa C-terminal like | 54830 | This gene encodes a protein containing a domain found in nucleoporins which are glycoproteins found in nuclear pore complexes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000147224 | PRPS1 | phosphoribosyl pyrophosphate synthetase 1 | 5631 | This gene encodes an enzyme that catalyzes the phosphoribosylation of ribose 5-phosphate to 5-phosphoribosyl-1-pyrophosphate, which is necessary for purine metabolism and nucleotide biosynthesis. Defects in this gene are a cause of phosphoribosylpyrophosphate synthetase superactivity, Charcot-Marie-Tooth disease X-linked recessive type 5 and Arts Syndrome. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000157514 | TSC22D3 | TSC22 domain family member 3 | 1831 | This gene encodes the anti-inflammatory protein glucocorticoid (GC)-induced leucine zipper. Expression of this gene stimulated by glucocorticoids and interleukin 10 and it appears to play a key role in the anti-inflammatory and immunosuppressive effects of this steroid. This protein has also been shown to inhibit pro-inflammatory molecules including nuclear factor κB. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000101842 | VSIG1 | V-set and immunoglobulin domain containing 1 | 340547 | This gene encodes a member of the junctional adhesion molecule (JAM) family. The encoded protein contains multiple glycosylation sites at the N-terminal region, and multiple phosphorylation sites and glutamic acid/proline (EP) repeats at the C-terminal region. The gene is expressed in normal stomach and testis, as well as in gastric, esophageal and ovarian cancers. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101843 | PSMD10 | proteasome 26S subunit, non-ATPase 10 | 5716 | This gene encodes a subunit of the PA700/19S complex, which is the regulatory component of the 26S proteasome. The 26S proteosome complex is required for ubiquitin-dependent protein degradation. This protein is a non-ATPase subunit that may be involved in protein-protein interactions. Aberrant expression of this gene may paly a role in tumorigenesis. Two transcripts encoding different isoforms have been described. Pseudogenes have been identified on chromosomes 3 and 20. |
| NA | ENSG00000101844 | ATG4A | autophagy related 4A cysteine peptidase | 115201 | Autophagy is the process by which endogenous proteins and damaged organelles are destroyed intracellularly. Autophagy is postulated to be essential for cell homeostasis and cell remodeling during differentiation, metamorphosis, non-apoptotic cell death, and aging. Reduced levels of autophagy have been described in some malignant tumors, and a role for autophagy in controlling the unregulated cell growth linked to cancer has been proposed. This gene encodes a member of the autophagin protein family. The encoded protein is also designated as a member of the C-54 family of cysteine proteases. |
| NA | ENSG00000188153 | COL4A5 | collagen type IV alpha 5 | 1287 | This gene encodes one of the six subunits of type IV collagen, the major structural component of basement membranes. Mutations in this gene are associated with X-linked Alport syndrome, also known as hereditary nephritis. Like the other members of the type IV collagen gene family, this gene is organized in a head-to-head conformation with another type IV collagen gene so that each gene pair shares a common promoter. Alternatively spliced transcript variants have been identified for this gene. |
| NA | ENSG00000101888 | NXT2 | nuclear transport factor 2-like export factor 2 | 55916 | The protein encoded by this gene contains a nuclear transport factor 2 (NTF2) domain, which plays an important role in the trafficking of macromolecules, ions, and small molecules between the cytoplasm and nucleus. This protein may also have a role in mRNA nuclear export. Alternatively spliced transcript variants encoding different isoforms have been noted for this gene. |
| NA | ENSG00000176076 | KCNE5 | potassium voltage-gated channel subfamily E regulatory subunit 5 | 23630 | Voltage-gated potassium (Kv) channels represent the most complex class of voltage-gated ion channels from both functional and structural standpoints. Their diverse functions include regulating neurotransmitter release, heart rate, insulin secretion, neuronal excitability, epithelial electrolyte transport, smooth muscle contraction, and cell volume. This gene encodes a membrane protein which has sequence similarity to the KCNE1 gene product, a member of the potassium channel, voltage-gated, isk-related subfamily. This intronless gene is deleted in AMME contiguous gene syndrome and may be involved in the cardiac and neurologic abnormalities found in the AMME contiguous gene syndrome. |
| NA | ENSG00000068366 | ACSL4 | acyl-CoA synthetase long-chain family member 4 | 2182 | The protein encoded by this gene is an isozyme of the long-chain fatty-acid-coenzyme A ligase family. Although differing in substrate specificity, subcellular localization, and tissue distribution, all isozymes of this family convert free long-chain fatty acids into fatty acyl-CoA esters, and thereby play a key role in lipid biosynthesis and fatty acid degradation. This isozyme preferentially utilizes arachidonate as substrate. The absence of this enzyme may contribute to the mental retardation or Alport syndrome. Alternative splicing of this gene generates multiple transcript variants. |
| NA | ENSG00000157600 | TMEM164 | transmembrane protein 164 | 84187 | NA |
| NA | ENSG00000101935 | AMMECR1 | Alport syndrome, mental retardation, midface hypoplasia and elliptocytosis chromosomal region gene 1 | 9949 | The exact function of this gene is not known, however, submicroscopic deletion of the X chromosome including this gene, COL4A5, and FACL4 genes, result in a contiguous gene deletion syndrome, the AMME complex (Alport syndrome, mental retardation, midface hypoplasia, and elliptocytosis). Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000133136 | GNG5P2 | guanine nucleotide binding protein (G protein), gamma 5 pseudogene 2 | ENSG00000133136 | NA |
| NA | ENSG00000101938 | CHRDL1 | chordin-like 1 | 91851 | This gene encodes an antagonist of bone morphogenetic protein 4. The encoded protein may play a role in topographic retinotectal projection and in the regulation of retinal angiogenesis in response to hypoxia. Alternatively spliced transcript variants encoding different isoforms have been described. |
| NA | ENSG00000077264 | PAK3 | p21 protein (Cdc42/Rac)-activated kinase 3 | 5063 | PAK proteins are critical effectors that link Rho GTPases to cytoskeleton reorganization and nuclear signaling. PAK proteins, a family of serine/threonine p21-activating kinases, serve as targets for the small GTP binding proteins Cdc42 and RAC and have been implicated in a wide range of biological activities. The protein encoded by this gene forms an activated complex with GTP-bound RAS-like (P21), CDC2 and RAC1 proteins which then catalyzes a variety of targets. This protein may be necessary for dendritic development and for the rapid cytoskeletal reorganization in dendritic spines associated with synaptic plasticity. Defects in this gene are the cause of non-syndromic mental retardation X-linked type 30 (MRX30), also called X-linked mental retardation type 47 (MRX47). Alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000077274 | CAPN6 | calpain 6 | 827 | Calpains are ubiquitous, well-conserved family of calcium-dependent, cysteine proteases. The calpain proteins are heterodimers consisting of an invariant small subunit and variable large subunits. The large subunit possesses a cysteine protease domain, and both subunits possess calcium-binding domains. Calpains have been implicated in neurodegenerative processes, as their activation can be triggered by calcium influx and oxidative stress. The protein encoded by this gene is highly expressed in the placenta. Its C-terminal region lacks any homology to the calmodulin-like domain of other calpains. The protein lacks critical active site residues and thus is suggested to be proteolytically inactive. The protein may play a role in tumor formation by inhibiting apoptosis and promoting angiogenesis. |
| NA | ENSG00000077279 | DCX | doublecortin | 1641 | This gene encodes a member of the doublecortin family. The protein encoded by this gene is a cytoplasmic protein and contains two doublecortin domains, which bind microtubules. In the developing cortex, cortical neurons must migrate over long distances to reach the site of their final differentiation. The encoded protein appears to direct neuronal migration by regulating the organization and stability of microtubules. In addition, the encoded protein interacts with LIS1, the regulatory gamma subunit of platelet activating factor acetylhydrolase, and this interaction is important to proper microtubule function in the developing cortex. Mutations in this gene cause abnormal migration of neurons during development and disrupt the layering of the cortex, leading to epilepsy, mental retardation, subcortical band heterotopia (‘double cortex’ syndrome) in females and lissencephaly (‘smooth brain’ syndrome) in males. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000101901 | ALG13 | ALG13, UDP-N-acetylglucosaminyltransferase subunit | 79868 | The protein encoded by this gene is a subunit of a bipartite UDP-N-acetylglucosamine transferase. It heterodimerizes with asparagine-linked glycosylation 14 homolog to form a functional UDP-GlcNAc glycosyltransferase that catalyzes the second sugar addition of the highly conserved oligosaccharide precursor in endoplasmic reticulum N-linked glycosylation. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000126016 | AMOT | angiomotin | 154796 | This gene belongs to the motin family of angiostatin binding proteins characterized by conserved coiled-coil domains and C-terminal PDZ binding motifs. The encoded protein is expressed predominantly in endothelial cells of capillaries as well as larger vessels of the placenta where it may mediate the inhibitory effect of angiostatin on tube formation and the migration of endothelial cells toward growth factors during the formation of new blood vessels. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000130224 | LRCH2 | leucine-rich repeats and calponin homology (CH) domain containing 2 | 57631 | This gene encodes a member of the leucine-rich repeat and calponin homology domain-containing protein family. These family members contain multiple N-terminal leucine-rich repeats, in addition to a C-terminal calponin homology domain, a type of domain that mediates interactions with actin filaments. These proteins are conserved across animal species, and studies of a similar Drosophila protein indicate a function as a cytoskeletal scaffolding protein. Alternative splicing of this gene results in multiple transcript variants. |
| NA | ENSG00000102024 | PLS3 | plastin 3 | 5358 | Plastins are a family of actin-binding proteins that are conserved throughout eukaryote evolution and expressed in most tissues of higher eukaryotes. In humans, two ubiquitous plastin isoforms (L and T) have been identified. Plastin 1 (otherwise known as Fimbrin) is a third distinct plastin isoform which is specifically expressed at high levels in the small intestine. The L isoform is expressed only in hemopoietic cell lineages, while the T isoform has been found in all other normal cells of solid tissues that have replicative potential (fibroblasts, endothelial cells, epithelial cells, melanocytes, etc.). The C-terminal 570 amino acids of the T-plastin and L-plastin proteins are 83% identical. It contains a potential calcium-binding site near the N terminus. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000228532 | RP1-241P17.4 | NA | ENSG00000228532 | NA |
| NA | ENSG00000003096 | KLHL13 | kelch like family member 13 | 90293 | This gene encodes a BTB and kelch domain containing protein and belongs to the kelch repeat domain containing superfamily of proteins. The encoded protein functions as an adaptor protein that complexes with Cullin 3 and other proteins to form the Cullin 3-based E3 ubiquitin-protein ligase complex. This complex is necessary for proper chromosome segregation and completion of cytokinesis. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000131725 | WDR44 | WD repeat domain 44 | 54521 | This gene encodes a protein that interacts with the small GTPase rab11. A similar protein in rat binds the GTP-containing active form of rab11. This protein may play a role in endosome recycling. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000147251 | DOCK11 | dedicator of cytokinesis 11 | 139818 | NA |
| NA | ENSG00000131724 | IL13RA1 | interleukin 13 receptor subunit alpha 1 | 3597 | The protein encoded by this gene is a subunit of the interleukin 13 receptor. This subunit forms a receptor complex with IL4 receptor alpha, a subunit shared by IL13 and IL4 receptors. This subunit serves as a primary IL13-binding subunit of the IL13 receptor, and may also be a component of IL4 receptors. This protein has been shown to bind tyrosine kinase TYK2, and thus may mediate the signaling processes that lead to the activation of JAK1, STAT3 and STAT6 induced by IL13 and IL4. |
| NA | ENSG00000101856 | PGRMC1 | progesterone receptor membrane component 1 | 10857 | This gene encodes a putative membrane-associated progesterone steroid receptor. The protein is expressed predominantly in the liver and kidney. |
| NA | ENSG00000077713 | SLC25A43 | solute carrier family 25 member 43 | 203427 | This gene encodes a member of the mitochondrial carrier family of proteins. |
| NA | ENSG00000005022 | SLC25A5 | solute carrier family 25 member 5 | 292 | This gene is a member of the mitochondrial carrier subfamily of solute carrier protein genes. The product of this gene functions as a gated pore that translocates ADP from the cytoplasm into the mitochondrial matrix and ATP from the mitochondrial matrix into the cytoplasm. The protein forms a homodimer embedded in the inner mitochondria membrane. Suppressed expression of this gene has been shown to induce apoptosis and inhibit tumor growth. The human genome contains several non-transcribed pseudogenes of this gene. |
| NA | ENSG00000018610 | CXorf56 | chromosome X open reading frame 56 | 63932 | While this gene is well-supported by transcript data, no functional information on its protein products is currently available. Three transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000077721 | UBE2A | ubiquitin conjugating enzyme E2 A | 7319 | The modification of proteins with ubiquitin is an important cellular mechanism for targeting abnormal or short-lived proteins for degradation. Ubiquitination involves at least three classes of enzymes: ubiquitin-activating enzymes, ubiquitin-conjugating enzymes, and ubiquitin-protein ligases. This gene encodes a member of the E2 ubiquitin-conjugating enzyme family. This enzyme is required for post-replicative DNA damage repair, and may play a role in transcriptional regulation. Mutations in this gene are associated with mental retardation. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000186416 | NKRF | NFKB repressing factor | 55922 | This gene encodes a transcriptional repressor that interacts with specific negative regulatory elements to mediate transcriptional repression of certain nuclear factor kappa B responsive genes. The protein localizes predominantly to the nucleolus with a small fraction found in the nucleoplasm and cytoplasm. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000125354 | SEPT6 | septin 6 | 23157 | This gene is a member of the septin family of GTPases. Members of this family are required for cytokinesis. One version of pediatric acute myeloid leukemia is the result of a reciprocal translocation between chromosomes 11 and X, with the breakpoint associated with the genes encoding the mixed-lineage leukemia and septin 2 proteins. This gene encodes four transcript variants encoding three distinct isoforms. An additional transcript variant has been identified, but its biological validity has not been determined. |
| NA | ENSG00000187808 | SOWAHD | sosondowah ankyrin repeat domain family member D | 347454 | NA |
| NA | ENSG00000198918 | RPL39 | ribosomal protein L39 | 6170 | Ribosomes, the organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes a ribosomal protein that is a component of the 60S subunit. The protein belongs to the S39E family of ribosomal proteins. It is located in the cytoplasm. In rat, the protein is the smallest, and one of the most basic, proteins of the ribosome. This gene is co-transcribed with the U69 small nucleolar RNA gene, which is located in its second intron. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000125351 | UPF3B | UPF3 regulator of nonsense transcripts homolog B (yeast) | 65109 | This gene encodes a protein that is part of a post-splicing multiprotein complex involved in both mRNA nuclear export and mRNA surveillance. The encoded protein is one of two functional homologs to yeast Upf3p. mRNA surveillance detects exported mRNAs with truncated open reading frames and initiates nonsense-mediated mRNA decay (NMD). When translation ends upstream from the last exon-exon junction, this triggers NMD to degrade mRNAs containing premature stop codons. This protein binds to the mRNA and remains bound after nuclear export, acting as a nucleocytoplasmic shuttling protein. It forms with Y14 a complex that binds specifically 20 nt upstream of exon-exon junctions. This gene is located on the long arm of chromosome X. Two splice variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000125352 | RNF113A | ring finger protein 113A | 7737 | This intronless gene encodes a protein which contains a C3H1-type zinc finger domain and a C3HC4 Ring-type (Really Interesting New Gene-type) zinc finger domain. The Ring-type zinc finger domain is identified in various tumor suppressors, DNA repair genes and cytokine receptor-associated molecules, and is probably involved in mediating protein-protein interactions. |
| NA | ENSG00000177485 | ZBTB33 | zinc finger and BTB domain containing 33 | 10009 | This gene encodes a transcriptional regulator with bimodal DNA-binding specificity, which binds to methylated CGCG and also to the non-methylated consensus KAISO-binding site TCCTGCNA. The protein contains an N-terminal POZ/BTB domain and 3 C-terminal zinc finger motifs. It recruits the N-CoR repressor complex to promote histone deacetylation and the formation of repressive chromatin structures in target gene promoters. It may contribute to the repression of target genes of the Wnt signaling pathway, and may also activate transcription of a subset of target genes by the recruitment of catenin delta-2 (CTNND2). Its interaction with catenin delta-1 (CTNND1) inhibits binding to both methylated and non-methylated DNA. It also interacts directly with the nuclear import receptor Importin-alpha2 (also known as karyopherin alpha2 or RAG cohort 1), which may mediate nuclear import of this protein. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000005893 | LAMP2 | lysosomal associated membrane protein 2 | 3920 | The protein encoded by this gene is a member of a family of membrane glycoproteins. This glycoprotein provides selectins with carbohydrate ligands. It may play a role in tumor cell metastasis. It may also function in the protection, maintenance, and adhesion of the lysosome. Alternative splicing of this gene results in multiple transcript variants encoding distinct proteins. |
| NA | ENSG00000171155 | C1GALT1C1 | C1GALT1 specific chaperone 1 | 29071 | This gene encodes a type II transmembrane protein that is similar to the core 1 beta1,3-galactosyltransferase 1, which catalyzes the synthesis of the core-1 structure, also known as Thomsen-Friedenreich antigen, on O-linked glycans. This gene product lacks the galactosyltransferase activity itself, but instead acts as a molecular chaperone required for the folding, stability and full activity of the core 1 beta1,3-galactosyltransferase 1. Mutations in this gene have been associated with Tn syndrome. Alternatively spliced transcript variants encoding the same protein have been identified. |
| NA | ENSG00000182890 | GLUD2 | glutamate dehydrogenase 2 | 2747 | The protein encoded by this gene is localized to the mitochondrion and acts as a homohexamer to recycle glutamate during neurotransmission. The encoded enzyme catalyzes the reversible oxidative deamination of glutamate to alpha-ketoglutarate. This gene is intronless. |
| NA | ENSG00000125675 | GRIA3 | glutamate ionotropic receptor AMPA type subunit 3 | 2892 | Glutamate receptors are the predominant excitatory neurotransmitter receptors in the mammalian brain and are activated in a variety of normal neurophysiologic processes. These receptors are heteromeric protein complexes composed of multiple subunits, arranged to form ligand-gated ion channels. The classification of glutamate receptors is based on their activation by different pharmacologic agonists. The subunit encoded by this gene belongs to a family of AMPA (alpha-amino-3-hydroxy-5-methyl-4-isoxazole propionate)-sensitive glutamate receptors, and is subject to RNA editing (AGA->GGA; R->G). Alternative splicing at this locus results in different isoforms, which may vary in their signal transduction properties. |
| NA | ENSG00000125676 | THOC2 | THO complex 2 | 57187 | The TREX multiprotein complex binds specifically to spliced mRNAs to facilitate mRNA export. The protein encoded by this gene is a member of the THO complex, a subset of the TREX complex. The encoded protein interacts with the THOC1 protein. |
| NA | ENSG00000101966 | XIAP | X-linked inhibitor of apoptosis | 331 | This gene encodes a protein that belongs to a family of apoptotic suppressor proteins. Members of this family share a conserved motif termed, baculovirus IAP repeat, which is necessary for their anti-apoptotic function. This protein functions through binding to tumor necrosis factor receptor-associated factors TRAF1 and TRAF2 and inhibits apoptosis induced by menadione, a potent inducer of free radicals, and interleukin 1-beta converting enzyme. This protein also inhibits at least two members of the caspase family of cell-death proteases, caspase-3 and caspase-7. Mutations in this gene are the cause of X-linked lymphoproliferative syndrome. Alternate splicing results in multiple transcript variants. Pseudogenes of this gene are found on chromosomes 2 and 11. |
| NA | ENSG00000101972 | STAG2 | stromal antigen 2 | 10735 | The protein encoded by this gene is a subunit of the cohesin complex, which regulates the separation of sister chromatids during cell division. Targeted inactivation of this gene results in chromatid cohesion defects and aneuploidy, suggesting that genetic disruption of cohesin is a cause of aneuploidy in human cancer. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000009694 | TENM1 | teneurin transmembrane protein 1 | 10178 | The protein encoded by this gene belongs to the tenascin family and teneurin subfamily. It is expressed in the neurons and may function as a cellular signal transducer. Several alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000198889 | DCAF12L1 | DDB1 and CUL4 associated factor 12-like 1 | 139170 | This gene encodes a member of the WD repeat protein family. WD repeats are minimally conserved regions of approximately 40 amino acids typically bracketed by gly-his and trp-asp (GH-WD), which may facilitate formation of heterotrimeric or multiprotein complexes. Members of this family are involved in a variety of cellular processes, including cell cycle progression, signal transduction, apoptosis, and gene regulation. |
| NA | ENSG00000122126 | OCRL | oculocerebrorenal syndrome of Lowe | 4952 | This gene encodes an inositol polyphosphate 5-phosphatase. This protein is involved in regulating membrane trafficking and is located in numerous subcellular locations including the trans-Golgi network, clathrin-coated vesicles and, endosomes and the plasma membrane. This protein may also play a role in primary cilium formation. Mutations in this gene cause oculocerebrorenal syndrome of Lowe and also Dent disease. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000171388 | APLN | apelin | 8862 | This gene encodes a peptide that functions as an endogenous ligand for the G-protein coupled apelin receptor. The encoded preproprotein is proteolytically processed into biologically active C-terminal peptide fragments. These peptide fragments activate different tissue specific signaling pathways that regulate diverse biological functions including fluid homeostasis, cardiovascular function and insulin secretion. This protein also functions as a coreceptor for the human immunodeficiency virus 1. |
| NA | ENSG00000085185 | BCORL1 | BCL6 corepressor-like 1 | 63035 | The protein encoded by this gene is a transcriptional corepressor that is found tethered to promoter regions by DNA-binding proteins. The encoded protein can interact with several different class II histone deacetylases to repress transcription. Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000156709 | AIFM1 | apoptosis inducing factor, mitochondria associated 1 | 9131 | This gene encodes a flavoprotein essential for nuclear disassembly in apoptotic cells, and it is found in the mitochondrial intermembrane space in healthy cells. Induction of apoptosis results in the translocation of this protein to the nucleus where it affects chromosome condensation and fragmentation. In addition, this gene product induces mitochondria to release the apoptogenic proteins cytochrome c and caspase-9. Mutations in this gene cause combined oxidative phosphorylation deficiency 6 (COXPD6), a severe mitochondrial encephalomyopathy, as well as Cowchock syndrome, also known as X-linked recessive Charcot-Marie-Tooth disease-4 (CMTX-4), a disorder resulting in neuropathy, and axonal and motor-sensory defects with deafness and mental retardation. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 10. |
| NA | ENSG00000134594 | RAB33A | RAB33A, member RAS oncogene family | 9363 | The protein encoded by this gene belongs to the small GTPase superfamily, Rab family. It is GTP-binding protein and may be involved in vesicle transport. |
| NA | ENSG00000056277 | ZNF280C | zinc finger protein 280C | 55609 | This gene encodes a member of the zinc finger domain-containing protein family. This family member contains multiple Cys2-His2(C2H2)-type zinc finger domains, the most common type of zinc finger domain that self-folds to form a beta-beta-alpha structure that binds a zinc ion. |
| NA | ENSG00000102078 | SLC25A14 | solute carrier family 25 member 14 | 9016 | Mitochondrial uncoupling proteins (UCP) are members of the larger family of mitochondrial anion carrier proteins (MACP). Uncoupling proteins separate oxidative phosphorylation from ATP synthesis with energy dissipated as heat, also referred to as the mitochondrial proton leak. Uncoupling proteins facilitate the transfer of anions from the inner to the outer mitochondrial membrane and the return transfer of protons from the outer to the inner mitochondrial membrane. They also reduce the mitochondrial membrane potential in mammalian cells. This gene is widely expressed in many tissues with the greatest abundance in brain and testis. Alternative splicing results in multiple transcript variants. A pseudogene of this gene has been defined on chromosome 4. |
| NA | ENSG00000165675 | ENOX2 | ecto-NOX disulfide-thiol exchanger 2 | 10495 | This gene is a tumor-specific member of the ECTO-NOX family of genes that encode cell surface NADH oxidases. The encoded protein has two enzymatic activities: catalysis of hydroquinone or NADH oxidation, and protein disulfide interchange. The protein also displays prion-like properties. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000134602 | STK26 | serine/threonine protein kinase 26 | 51765 | The product of this gene is a member of the GCK group III family of kinases, which are a subset of the Ste20-like kinases. The encoded protein contains an amino-terminal kinase domain, and a carboxy-terminal regulatory domain that mediates homodimerization. The protein kinase localizes to the Golgi apparatus and is specifically activated by binding to the Golgi matrix protein GM130. It is also cleaved by caspase-3 in vitro, and may function in the apoptotic pathway. Several alternatively spliced transcript variants of this gene have been described, but the full-length nature of some of these variants has not been determined. |
| NA | ENSG00000123728 | RAP2C | RAP2C, member of RAS oncogene family | 57826 | The protein encoded by this gene is a member of the Ras-related protein subfamily of the Ras GTPase superfamily. Members of this family are small GTPases that act as molecular switches to regulate cellular proliferation, differentiation, and apoptosis. This protein has been reported to activate in vitro transcriptional activity of the serum response element. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000076716 | GPC4 | glypican 4 | 2239 | Cell surface heparan sulfate proteoglycans are composed of a membrane-associated protein core substituted with a variable number of heparan sulfate chains. Members of the glypican-related integral membrane proteoglycan family (GRIPS) contain a core protein anchored to the cytoplasmic membrane via a glycosyl phosphatidylinositol linkage. These proteins may play a role in the control of cell division and growth regulation. The GPC4 gene is adjacent to the 3’ end of GPC3 and may also play a role in Simpson-Golabi-Behmel syndrome. |
| NA | ENSG00000147257 | GPC3 | glypican 3 | 2719 | Cell surface heparan sulfate proteoglycans are composed of a membrane-associated protein core substituted with a variable number of heparan sulfate chains. Members of the glypican-related integral membrane proteoglycan family (GRIPS) contain a core protein anchored to the cytoplasmic membrane via a glycosyl phosphatidylinositol linkage. These proteins may play a role in the control of cell division and growth regulation. The protein encoded by this gene can bind to and inhibit the dipeptidyl peptidase activity of CD26, and it can induce apoptosis in certain cell types. Deletion mutations in this gene are associated with Simpson-Golabi-Behmel syndrome, also known as Simpson dysmorphia syndrome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000203952 | CCDC160 | coiled-coil domain containing 160 | 347475 | NA |
| NA | ENSG00000101928 | MOSPD1 | motile sperm domain containing 1 | 56180 | NA |
| NA | ENSG00000184785 | SMIM10 | small integral membrane protein 10 | 644538 | NA |
| NA | ENSG00000212747 | FAM127C | family with sequence similarity 127 member C | 441518 | NA |
| NA | ENSG00000134590 | FAM127A | family with sequence similarity 127 member A | 8933 | NA |
| NA | ENSG00000203950 | FAM127B | family with sequence similarity 127 member B | 26071 | NA |
| NA | ENSG00000186376 | ZNF75D | zinc finger protein 75D | 7626 | This gene encodes a protein that likely functions as a transcription factor. The protein, which belongs to the ZNF75 family, includes an N-terminal SCAN domain, a KRAB box, and five C2H2-type zinc finger motifs. Another functional gene belonging to this family is located on chromosome 16, while pseudogenes have been identified on chromosomes 11 and 12. Alternative splicing results in multiple transcripts variants. |
| NA | ENSG00000173275 | ZNF449 | zinc finger protein 449 | 203523 | This gene encodes a nuclear protein that likely functions as a transcription factor. The protein includes an N-terminal SCAN domain, and seven C2H2-type zinc finger motifs. |
| NA | ENSG00000165359 | INTS6L | integrator complex subunit 6 like | 203522 | NA |
| NA | ENSG00000169446 | MMGT1 | membrane magnesium transporter 1 | 93380 | NA |
| NA | ENSG00000198689 | SLC9A6 | solute carrier family 9 member A6 | 10479 | This gene encodes a sodium-hydrogen exchanger that is amember of the solute carrier family 9. The encoded protein localizes to early and recycling endosomes and may be involved in regulating endosomal pH and volume. Defects in this gene are associated with X-linked syndromic mental retardation, Christianson type. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000022267 | FHL1 | four and a half LIM domains 1 | 2273 | This gene encodes a member of the four-and-a-half-LIM-only protein family. Family members contain two highly conserved, tandemly arranged, zinc finger domains with four highly conserved cysteines binding a zinc atom in each zinc finger. Expression of these family members occurs in a cell- and tissue-specific mode and these proteins are involved in many cellular processes. Mutations in this gene have been found in patients with Emery-Dreifuss muscular dystrophy. Multiple alternately spliced transcript variants which encode different protein isoforms have been described. |
| NA | ENSG00000129680 | MAP7D3 | MAP7 domain containing 3 | 79649 | The protein encoded by this gene belongs to the MAP7 (microtubule-associated protein 7) family. Alternatively spliced transcript variants encoding different isoforms have been found. |
| NA | ENSG00000102241 | HTATSF1 | HIV-1 Tat specific factor 1 | 27336 | The protein encoded by this gene functions as a cofactor for the stimulation of transcriptional elongation by HIV-1 Tat, which binds to the HIV-1 promoter through Tat-TAR interaction. This protein may also serve as a dual-function factor to couple transcription and splicing and to facilitate their reciprocal activation. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000147274 | RBMX | RNA binding motif protein, X-linked | 27316 | This gene belongs to the RBMY gene family which includes candidate Y chromosome spermatogenesis genes. This gene, an active X chromosome homolog of the Y chromosome RBMY gene, is widely expressed whereas the RBMY gene evolved a male-specific function in spermatogenesis. Pseudogenes of this gene, found on chromosomes 1, 4, 9, 11, and 6, were likely derived by retrotransposition from the original gene. Alternatively spliced transcript variants encoding different isoforms have been identified. A snoRNA gene (SNORD61) is found in one of its introns. |
| NA | ENSG00000156925 | ZIC3 | Zic family member 3 | 7547 | This gene encodes a member of the ZIC family of C2H2-type zinc finger proteins. This nuclear protein probably functions as a transcription factor in early stages of left-right body axis formation. Mutations in this gene cause X-linked visceral heterotaxy, which includes congenital heart disease and left-right axis defects in organs. |
| NA | ENSG00000129682 | FGF13 | fibroblast growth factor 13 | 2258 | The protein encoded by this gene is a member of the fibroblast growth factor (FGF) family. FGF family members possess broad mitogenic and cell survival activities, and are involved in a variety of biological processes, including embryonic development, cell growth, morphogenesis, tissue repair, tumor growth, and invasion. This gene is located in a region on chromosome X, which is associated with Borjeson-Forssman-Lehmann syndrome (BFLS), making it a possible candidate gene for familial cases of the BFLS, and for other syndromal and nonspecific forms of X-linked mental retardation mapping to this region. Alternative splicing of this gene at the 5’ end results in several transcript variants encoding different isoforms with different N-termini. |
| NA | ENSG00000101974 | ATP11C | ATPase phospholipid transporting 11C | 286410 | NA |
| NA | ENSG00000134595 | SOX3 | SRY-box 3 | 6658 | This gene encodes a member of the SOX (SRY-related HMG-box) family of transcription factors involved in the regulation of embryonic development and in the determination of the cell fate. The encoded protein may act as a transcriptional regulator after forming a protein complex with other proteins. Mutations in this gene have been associated with X-linked mental retardation with growth hormone deficiency. |
| NA | ENSG00000203930 | LINC00632 | long intergenic non-protein coding RNA 632 | 286411 | NA |
| TRUE | ENSG00000102069 | NA | NA | NA | NA |
| NA | ENSG00000102081 | FMR1 | fragile X mental retardation 1 | 2332 | The protein encoded by this gene binds RNA and is associated with polysomes. The encoded protein may be involved in mRNA trafficking from the nucleus to the cytoplasm. A trinucleotide repeat (CGG) in the 5’ UTR is normally found at 6-53 copies, but an expansion to 55-230 repeats is the cause of fragile X syndrome. Expansion of the trinucleotide repeat may also cause one form of premature ovarian failure (POF1). Multiple alternatively spliced transcript variants that encode different protein isoforms and which are located in different cellular locations have been described for this gene. |
| NA | ENSG00000155966 | AFF2 | AF4/FMR2 family member 2 | 2334 | This gene encodes a putative transcriptional activator that is a member of the AF42 gene family. This gene is associated with the folate-sensitive fragile X E locus on chromosome X. A repeat polymorphism in the fragile X E locus results in silencing of this gene causing Fragile X E syndrome. Fragile X E syndrome is a form of nonsyndromic X-linked mental retardation. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000010404 | IDS | iduronate 2-sulfatase | 3423 | This gene encodes a member of the sulfatase family of proteins. The encoded preproprotein is proteolytically processed to generate two polypeptide chains. This enzyme is involved in the lysosomal degradation of heparan sulfate and dermatan sulfate. Mutations in this gene are associated with the X-linked lysosomal storage disease mucopolysaccharidosis type II, also known as Hunter syndrome. Alternative splicing results in multiple transcript variants, at least one of which encodes a preproprotein that is proteolytically processed. |
| NA | ENSG00000197620 | CXorf40A | chromosome X open reading frame 40A | 91966 | NA |
| TRUE | ENSG00000155984 | NA | NA | NA | NA |
| NA | ENSG00000197021 | CXorf40B | chromosome X open reading frame 40B | 541578 | NA |
| NA | ENSG00000171100 | MTM1 | myotubularin 1 | 4534 | This gene encodes a dual-specificity phosphatase that acts on both phosphotyrosine and phosphoserine. It is required for muscle cell differentiation and mutations in this gene have been identified as being responsible for X-linked myotubular myopathy. |
| NA | ENSG00000063601 | MTMR1 | myotubularin related protein 1 | 8776 | This gene encodes a member of the myotubularin related family of proteins. Members of this family contain the consensus sequence for the active site of protein tyrosine phosphatases. Alternatively spliced variants have been described but their biological validity has not been determined. |
| NA | ENSG00000102181 | CD99L2 | CD99 molecule like 2 | 83692 | This gene encodes a cell-surface protein that is similar to CD99. A similar protein in mouse functions as an adhesion molecule during leukocyte extravasation. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000029993 | HMGB3 | high mobility group box 3 | 3149 | This gene encodes a member of a family of proteins containing one or more high mobility group DNA-binding motifs. The encoded protein plays an important role in maintaining stem cell populations, and may be aberrantly expressed in tumor cells. A mutation in this gene was associated with microphthalmia, syndromic 13. There are numerous pseudogenes of this gene on multiple chromosomes. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160131 | VMA21 | VMA21 vacuolar H+-ATPase homolog (S. cerevisiae) | 203547 | This gene encodes a chaperone for assembly of lysosomal vacuolar ATPase. |
| NA | ENSG00000130032 | PRRG3 | proline rich Gla (G-carboxyglutamic acid) 3 (transmembrane) | 79057 | This gene encodes a protein which contains a vitamin K-dependent carboxylation/gamma-carboxyglutamic domain. The encoded protein is a member of a family of vitamin K-dependent transmembrane proteins which contain a glutamate-rich extracellular domain. |
| NA | ENSG00000102287 | GABRE | gamma-aminobutyric acid type A receptor epsilon subunit | 2564 | The product of this gene belongs to the ligand-gated ionic channel (TC 1.A.9) family. It encodes the gamma-aminobutyric acid (GABA) A receptor which is a multisubunit chloride channel that mediates the fastest inhibitory synaptic transmission in the central nervous system. This gene encodes an epsilon subunit. It is mapped to chromosome Xq28 in a cluster comprised of genes encoding alpha 3, beta 4 and theta subunits of the same receptor. Alternatively spliced transcript variants have been identified, but only one is thought to encode a protein. |
| NA | ENSG00000011677 | GABRA3 | gamma-aminobutyric acid type A receptor alpha3 subunit | 2556 | GABA is the major inhibitory neurotransmitter in the mammalian brain where it acts at GABA-A receptors, which are ligand-gated chloride channels. Chloride conductance of these channels can be modulated by agents such as benzodiazepines that bind to the GABA-A receptor. At least 16 distinct subunits of GABA-A receptors have been identified. |
| TRUE | ENSG00000147402 | NA | NA | NA | NA |
| NA | ENSG00000147400 | CETN2 | centrin 2 | 1069 | Caltractin belongs to a family of calcium-binding proteins and is a structural component of the centrosome. The high level of conservation from algae to humans and its association with the centrosome suggested that caltractin plays a fundamental role in the structure and function of the microtubule-organizing center, possibly required for the proper duplication and segregation of the centrosome. |
| NA | ENSG00000147383 | NSDHL | NAD(P) dependent steroid dehydrogenase-like | 50814 | The protein encoded by this gene is localized in the endoplasmic reticulum and is involved in cholesterol biosynthesis. Mutations in this gene are associated with CHILD syndrome, which is a X-linked dominant disorder of lipid metabolism with disturbed cholesterol biosynthesis, and typically lethal in males. Alternatively spliced transcript variants with differing 5’ UTR have been found for this gene. |
| NA | ENSG00000147394 | ZNF185 | zinc finger protein 185 (LIM domain) | 7739 | Zinc-finger proteins bind nucleic acids and play important roles in various cellular functions, including cell proliferation, differentiation, and apoptosis. This gene encodes a LIM-domain zinc finger protein. The LIM domain is composed of two contiguous zinc finger domains, separated by a two-amino acid residue hydrophobic linker. The LIM domain mediates protein:protein interactions. Multiple alternatively spliced transcript variants encoding different isoforms have been identified. |
| NA | ENSG00000183837 | PNMA3 | paraneoplastic Ma antigen 3 | 29944 | The protein encoded by this gene belongs to the paraneoplastic antigen MA (PNMA) family, which shares homology with retroviral Gag proteins. The PNMA antigens are highly expressed in the brain and also in a range of tumors associated with serious neurological phenotypes. PMID:16407312 reports the presence of a functional -1 ribosomal frameshift signal (consisting of a heptanucleotide shift motif followed 3’ by a pseudoknot structure) in this gene, however, the frame-shifted product has not been characterized. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000063587 | ZNF275 | zinc finger protein 275 | 10838 | This gene encodes a zinc finger protein that appears to be conserved in eutheria. Its function has not yet been established. |
| NA | ENSG00000213397 | HAUS7 | HAUS augmin like complex subunit 7 | 55559 | This gene encodes a subunit of the augmin complex, which regulates centrosome and mitotic spindle integrity, and is necessary for the completion of cytokinesis. The encoded protein was identified by interaction with ubiquitin C-terminal hydrolase 37. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000182492 | BGN | biglycan | 633 | This gene encodes a member of the small leucine-rich proteoglycan (SLRP) family of proteins. The encoded preproprotein is proteolytically processed to generate the mature protein, which plays a role in bone growth, muscle development and regeneration, and collagen fibril assembly in multiple tissues. This protein may also regulate inflammation and innate immunity. Additionally, the encoded protein may contribute to atherosclerosis and aortic valve stenosis in human patients. This gene and the related gene decorin are thought to be the result of a gene duplication. |
| TRUE | ENSG00000147382 | NA | NA | NA | NA |
| NA | ENSG00000130821 | SLC6A8 | solute carrier family 6 member 8 | 6535 | The protein encoded by this gene is a plasma membrane protein whose function is to transport creatine into and out of cells. Defects in this gene can result in X-linked creatine deficiency syndrome. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000185825 | BCAP31 | B-cell receptor-associated protein 31 | 10134 | This gene encodes a member of the B-cell receptor associated protein 31 superfamily. The encoded protein is a multi-pass transmembrane protein of the endoplasmic reticulum that is involved in the anterograde transport of membrane proteins from the endoplasmic reticulum to the Golgi and in caspase 8-mediated apoptosis. Microdeletions in this gene are associated with contiguous ABCD1/DXS1375E deletion syndrome (CADDS), a neonatal disorder. Alternative splicing of this gene results in multiple transcript variants. Two related pseudogenes have been identified on chromosome 16. |
| NA | ENSG00000101986 | ABCD1 | ATP binding cassette subfamily D member 1 | 215 | The protein encoded by this gene is a member of the superfamily of ATP-binding cassette (ABC) transporters. ABC proteins transport various molecules across extra- and intra-cellular membranes. ABC genes are divided into seven distinct subfamilies (ABC1, MDR/TAP, MRP, ALD, OABP, GCN20, White). This protein is a member of the ALD subfamily, which is involved in peroxisomal import of fatty acids and/or fatty acyl-CoAs in the organelle. All known peroxisomal ABC transporters are half transporters which require a partner half transporter molecule to form a functional homodimeric or heterodimeric transporter. This peroxisomal membrane protein is likely involved in the peroxisomal transport or catabolism of very long chain fatty acids. Defects in this gene have been identified as the underlying cause of adrenoleukodystrophy, an X-chromosome recessively inherited demyelinating disorder of the nervous system. |
| NA | ENSG00000067829 | IDH3G | isocitrate dehydrogenase 3 (NAD+) gamma | 3421 | Isocitrate dehydrogenases catalyze the oxidative decarboxylation of isocitrate to 2-oxoglutarate. These enzymes belong to two distinct subclasses, one of which utilizes NAD(+) as the electron acceptor and the other NADP(+). Five isocitrate dehydrogenases have been reported: three NAD(+)-dependent isocitrate dehydrogenases, which localize to the mitochondrial matrix, and two NADP(+)-dependent isocitrate dehydrogenases, one of which is mitochondrial and the other predominantly cytosolic. NAD(+)-dependent isocitrate dehydrogenases catalyze the allosterically regulated rate-limiting step of the tricarboxylic acid cycle. Each isozyme is a heterotetramer that is composed of two alpha subunits, one beta subunit, and one gamma subunit. The protein encoded by this gene is the gamma subunit of one isozyme of NAD(+)-dependent isocitrate dehydrogenase. This gene is a candidate gene for periventricular heterotopia. Several alternatively spliced transcript variants of this gene have been described, but only some of their full length natures have been determined. |
| NA | ENSG00000067840 | PDZD4 | PDZ domain containing 4 | 57595 | NA |
| NA | ENSG00000198910 | L1CAM | L1 cell adhesion molecule | 3897 | The protein encoded by this gene is an axonal glycoprotein belonging to the immunoglobulin supergene family. The ectodomain, consisting of several immunoglobulin-like domains and fibronectin-like repeats (type III), is linked via a single transmembrane sequence to a conserved cytoplasmic domain. This cell adhesion molecule plays an important role in nervous system development, including neuronal migration and differentiation. Mutations in the gene cause X-linked neurological syndromes known as CRASH (corpus callosum hypoplasia, retardation, aphasia, spastic paraplegia and hydrocephalus). Alternative splicing of this gene results in multiple transcript variants, some of which include an alternate exon that is considered to be specific to neurons. |
| NA | ENSG00000089820 | ARHGAP4 | Rho GTPase activating protein 4 | 393 | This gene encodes a member of the rhoGAP family of proteins which play a role in the regulation of small GTP-binding proteins belonging to the RAS superfamily. The protein encoded by the orthologous gene in rat is localized to the Golgi complex and can redistribute to microtubules. The rat protein stimulates the activity of some Rho GTPases in vitro. Genomic deletions of this gene and a neighboring gene have been found in patients with nephrogenic diabetes insipidus. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000102030 | NAA10 | N(alpha)-acetyltransferase 10, NatA catalytic subunit | 8260 | N-alpha-acetylation is among the most common post-translational protein modifications in eukaryotic cells. This process involves the transfer of an acetyl group from acetyl-coenzyme A to the alpha-amino group on a nascent polypeptide and is essential for normal cell function. This gene encodes an N-terminal acetyltransferase that functions as the catalytic subunit of the major amino-terminal acetyltransferase A complex. Mutations in this gene are the cause of Ogden syndrome. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000172534 | HCFC1 | host cell factor C1 | 3054 | This gene is a member of the host cell factor family and encodes a protein with five Kelch repeats, a fibronectin-like motif, and six HCF repeats, each of which contains a highly specific cleavage signal. This nuclear coactivator is proteolytically cleaved at one of the six possible sites, resulting in the creation of an N-terminal chain and the corresponding C-terminal chain. The final form of this protein consists of noncovalently bound N- and C-terminal chains. The protein is involved in control of the cell cycle and transcriptional regulation during herpes simplex virus infection. Alternatively spliced variants which encode different protein isoforms have been described; however, not all variants have been fully characterized. |
| NA | ENSG00000184216 | IRAK1 | interleukin 1 receptor associated kinase 1 | 3654 | This gene encodes the interleukin-1 receptor-associated kinase 1, one of two putative serine/threonine kinases that become associated with the interleukin-1 receptor (IL1R) upon stimulation. This gene is partially responsible for IL1-induced upregulation of the transcription factor NF-kappa B. Alternatively spliced transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000169057 | MECP2 | methyl-CpG binding protein 2 | 4204 | DNA methylation is the major modification of eukaryotic genomes and plays an essential role in mammalian development. Human proteins MECP2, MBD1, MBD2, MBD3, and MBD4 comprise a family of nuclear proteins related by the presence in each of a methyl-CpG binding domain (MBD). Each of these proteins, with the exception of MBD3, is capable of binding specifically to methylated DNA. MECP2, MBD1 and MBD2 can also repress transcription from methylated gene promoters. In contrast to other MBD family members, MECP2 is X-linked and subject to X inactivation. MECP2 is dispensible in stem cells, but is essential for embryonic development. MECP2 gene mutations are the cause of most cases of Rett syndrome, a progressive neurologic developmental disorder and one of the most common causes of mental retardation in females. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000196924 | FLNA | filamin A | 2316 | The protein encoded by this gene is an actin-binding protein that crosslinks actin filaments and links actin filaments to membrane glycoproteins. The encoded protein is involved in remodeling the cytoskeleton to effect changes in cell shape and migration. This protein interacts with integrins, transmembrane receptor complexes, and second messengers. Defects in this gene are a cause of several syndromes, including periventricular nodular heterotopias (PVNH1, PVNH4), otopalatodigital syndromes (OPD1, OPD2), frontometaphyseal dysplasia (FMD), Melnick-Needles syndrome (MNS), and X-linked congenital idiopathic intestinal pseudoobstruction (CIIPX). Two transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000102119 | EMD | emerin | 2010 | Emerin is a serine-rich nuclear membrane protein and a member of the nuclear lamina-associated protein family. It mediates membrane anchorage to the cytoskeleton. Dreifuss-Emery muscular dystrophy is an X-linked inherited degenerative myopathy resulting from mutation in the emerin gene. |
| NA | ENSG00000147403 | RPL10 | ribosomal protein L10 | 6134 | This gene encodes a ribosomal protein that is a component of the 60S ribosome subunit. The related protein in chicken can bind to c-Jun and can repress c-Jun-mediated transcriptional activation. Some studies have detected an association between variation in this gene and autism spectrum disorders, though others do not detect this relationship. There are multiple pseudogenes of this gene dispersed throughout the genome. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000013563 | DNASE1L1 | deoxyribonuclease I-like 1 | 1774 | This gene encodes a deoxyribonuclease protein that shows high sequence similarity to DNase I. The encoded protein is localized to the endoplasmic reticulum and modified by N-linked glycosylation. Alternate transcriptional splice variants encoding the same protein have been observed. |
| NA | ENSG00000102125 | TAZ | tafazzin | 6901 | This gene encodes a protein that is expressed at high levels in cardiac and skeletal muscle. Mutations in this gene have been associated with a number of clinical disorders including Barth syndrome, dilated cardiomyopathy (DCM), hypertrophic DCM, endocardial fibroelastosis, and left ventricular noncompaction (LVNC). Multiple transcript variants encoding different isoforms have been described. A long form and a short form of each of these isoforms is produced; the short form lacks a hydrophobic leader sequence and may exist as a cytoplasmic protein rather than being membrane-bound. Other alternatively spliced transcripts have been described but the full-length nature of all these transcripts is not known. |
| NA | ENSG00000071553 | ATP6AP1 | ATPase H+ transporting accessory protein 1 | 537 | This gene encodes a component of a multisubunit enzyme that mediates acidification of eukaryotic intracellular organelles. Vacuolar ATPase (V-ATPase) is comprised of a cytosolic V1 (site of the ATP catalytic site) and a transmembrane V0 domain. V-ATPase dependent organelle acidification is necessary for such intracellular processes as protein sorting, zymogen activation, and receptor-mediated endocytosis. The encoded protein of this gene may assist in the V-ATPase-mediated acidification of neuroendocrine secretory granules. This protein may also play a role in early development. |
| NA | ENSG00000203879 | GDI1 | GDP dissociation inhibitor 1 | 2664 | GDP dissociation inhibitors are proteins that regulate the GDP-GTP exchange reaction of members of the rab family, small GTP-binding proteins of the ras superfamily, that are involved in vesicular trafficking of molecules between cellular organelles. GDIs slow the rate of dissociation of GDP from rab proteins and release GDP from membrane-bound rabs. GDI1 is expressed primarily in neural and sensory tissues. Mutations in GDI1 have been linked to X-linked nonspecific mental retardation. |
| NA | ENSG00000130827 | PLXNA3 | plexin A3 | 55558 | This gene encodes a member of the plexin class of proteins. The encoded protein is a class 3 semaphorin receptor, and may be involved in cytoskeletal remodeling and as well as apoptosis. Studies of a similar gene in zebrafish suggest that it is important for axon pathfinding in the developing nervous system. This gene may be associated with tumor progression. |
| NA | ENSG00000196976 | LAGE3 | L antigen family member 3 | 8270 | This gene belongs to the ESO/LAGE gene family, members of which are clustered together on chromosome Xq28, and have similar exon-intron structures. Unlike the other family members which are normally expressed only in testis and activated in a wide range of human tumors, this gene is ubiquitously expressed in somatic tissues. The latter, combined with the finding that it is highly conserved in mouse and rat, suggests that the encoded protein is functionally important. An intronless pseudogene with high sequence similarity to this gene is located on chromosome 9. |
| NA | ENSG00000102178 | UBL4A | ubiquitin like 4A | 8266 | NA |
| NA | ENSG00000126903 | SLC10A3 | solute carrier family 10 member 3 | 8273 | This gene maps to a GC-rich region of the X chromosome and was identified by its proximity to a CpG island. It is thought to be a housekeeping gene. Alternative splicing results in multiple transcript variants encoding distinct isoforms. |
| NA | ENSG00000071889 | FAM3A | family with sequence similarity 3 member A | 60343 | This gene encodes a cytokine-like protein. The expression of this gene may be regulated by peroxisome proliferator-activated receptor gamma, and the encoded protein may be involved in the regulation of glucose and lipid metabolism. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000160211 | G6PD | glucose-6-phosphate dehydrogenase | 2539 | This gene encodes glucose-6-phosphate dehydrogenase. This protein is a cytosolic enzyme encoded by a housekeeping X-linked gene whose main function is to produce NADPH, a key electron donor in the defense against oxidizing agents and in reductive biosynthetic reactions. G6PD is remarkable for its genetic diversity. Many variants of G6PD, mostly produced from missense mutations, have been described with wide ranging levels of enzyme activity and associated clinical symptoms. G6PD deficiency may cause neonatal jaundice, acute hemolysis, or severe chronic non-spherocytic hemolytic anemia. Two transcript variants encoding different isoforms have been found for this gene. |
| TRUE | ENSG00000073009 | NA | NA | NA | NA |
| NA | ENSG00000130826 | DKC1 | dyskerin pseudouridine synthase 1 | 1736 | This gene functions in two distinct complexes. It plays an active role in telomerase stabilization and maintenance, as well as recognition of snoRNAs containing H/ACA sequences which provides stability during biogenesis and assembly into H/ACA small nucleolar RNA ribonucleoproteins (snoRNPs). This gene is highly conserved and widely expressed, and may play additional roles in nucleo-cytoplasmic shuttling, DNA damage response, and cell adhesion. Mutations have been associated with X-linked dyskeratosis congenita. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000130830 | MPP1 | membrane protein, palmitoylated 1 | 4354 | This gene encodes the prototype of the membrane-associated guanylate kinase (MAGUK) family proteins. MAGUKs interact with the cytoskeleton and regulate cell proliferation, signaling pathways, and intercellular junctions. The encoded protein is an extensively palmitoylated membrane phosphoprotein containing a PDZ domain, a Src homology 3 (SH3) motif, and a guanylate kinase domain. This gene product interacts with various cytoskeletal proteins and cell junctional proteins in different tissue and cell types, and may be involved in the regulation of cell shape, hair cell development, neural patterning of the retina, and apico-basal polarity and tumor suppression pathways in non-erythroid cells. Multiple transcript variants encoding different isoforms have been found for this gene. |
| NA | ENSG00000185010 | F8 | coagulation factor VIII | 2157 | This gene encodes coagulation factor VIII, which participates in the intrinsic pathway of blood coagulation; factor VIII is a cofactor for factor IXa which, in the presence of Ca+2 and phospholipids, converts factor X to the activated form Xa. This gene produces two alternatively spliced transcripts. Transcript variant 1 encodes a large glycoprotein, isoform a, which circulates in plasma and associates with von Willebrand factor in a noncovalent complex. This protein undergoes multiple cleavage events. Transcript variant 2 encodes a putative small protein, isoform b, which consists primarily of the phospholipid binding domain of factor VIIIc. This binding domain is essential for coagulant activity. Defects in this gene results in hemophilia A, a common recessive X-linked coagulation disorder. |
| TRUE | ENSG00000197932 | NA | NA | NA | NA |
| NA | ENSG00000165775 | FUNDC2 | FUN14 domain containing 2 | 65991 | NA |
| NA | ENSG00000185515 | BRCC3 | BRCA1/BRCA2-containing complex subunit 3 | 79184 | This gene encodes a subunit of the BRCA1-BRCA2-containing complex (BRCC), which is an E3 ubiquitin ligase. This complex plays a role in the DNA damage response, where it is responsible for the stable accumulation of BRCA1 at DNA break sites. The component encoded by this gene can specifically cleave Lys 63-linked polyubiquitin chains, and it regulates the abundance of these polyubiquitin chains in chromatin. The loss of this gene results in abnormal angiogenesis and is associated with syndromic moyamoya, a cerebrovascular angiopathy. Alternative splicing results in multiple transcript variants. A related pseudogene has been identified on chromosome 5. |
| NA | ENSG00000155959 | VBP1 | von Hippel-Lindau binding protein 1 | 7411 | The protein encoded by this gene interacts with the Von Hippel-Lindau protein to form an intracellular complex. The encoded protein functions as a chaperone protein, and may play a role in the transport of the Von Hippel-Lindau protein from the perinuclear granules to the nucleus or cytoplasm. Alternative splicing and the use of alternate transcription start sites results in multiple transcript variants encoding different protein isoforms. |
| NA | ENSG00000155961 | RAB39B | RAB39B, member RAS oncogene family | 116442 | This gene encodes a member of the Rab family of proteins. Rab proteins are small GTPases that are involved in vesicular trafficking. Mutations in this gene are associated with X-linked mental retardation. |
| NA | ENSG00000185973 | TMLHE | trimethyllysine hydroxylase, epsilon | 55217 | This gene encodes the protein trimethyllysine dioxygenase which is the first enzyme in the carnitine biosynthesis pathway. Carnitine play an essential role in the transport of activated fatty acids across the inner mitochondrial membrane. The encoded protein converts trimethyllysine into hydroxytrimethyllysine. A pseudogene of this gene is found on chromosome X. Alternate splicing results in multiple transcript variants. |
| NA | ENSG00000129824 | RPS4Y1 | ribosomal protein S4, Y-linked 1 | 6192 | Cytoplasmic ribosomes, organelles that catalyze protein synthesis, consist of a small 40S subunit and a large 60S subunit. Together these subunits are composed of 4 RNA species and approximately 80 structurally distinct proteins. This gene encodes ribosomal protein S4, a component of the 40S subunit. Ribosomal protein S4 is the only ribosomal protein known to be encoded by more than one gene, namely this gene and ribosomal protein S4, X-linked (RPS4X). The 2 isoforms encoded by these genes are not identical, but are functionally equivalent. Ribosomal protein S4 belongs to the S4E family of ribosomal proteins. It has been suggested that haploinsufficiency of the ribosomal protein S4 genes plays a role in Turner syndrome; however, this hypothesis is controversial. As is typical for genes encoding ribosomal proteins, there are multiple processed pseudogenes of this gene dispersed through the genome. |
| NA | ENSG00000067646 | ZFY | zinc finger protein, Y-linked | 7544 | This gene encodes a zinc finger-containing protein that may function as a transcription factor. This gene was once a candidate gene for the testis-determining factor (TDF) and was erroneously referred to as TDF. |
| NA | ENSG00000099715 | PCDH11Y | protocadherin 11 Y-linked | 83259 | This gene belongs to the protocadherin family, a subfamily of the cadherin superfamily. The encoded protein consists of an extracellular domain containing seven cadherin repeats, a transmembrane domain, and a cytoplasmic tail that differs from those of the classical cadherins. This gene is located on the Y chromosome in a block of X/Y homology and is very closely related to its paralog on the X chromosome. The protein is thought to play a role in cell-cell recognition during development of the central nervous system. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000099715 | PCDH11X | protocadherin 11 X-linked | 27328 | This gene belongs to the protocadherin gene family, a subfamily of the cadherin superfamily. The encoded protein consists of an extracellular domain containing 7 cadherin repeats, a transmembrane domain and a cytoplasmic tail that differs from those of the classical cadherins. The gene is located in a major X/Y block of homology and its Y homolog, despite divergence leading to coding region changes, is the most closely related cadherin family member. The protein is thought to play a fundamental role in cell-cell recognition essential for the segmental development and function of the central nervous system. Disruption of this gene may be associated with developmental dyslexia. Alternative splicing results in multiple transcript variants. |
| NA | ENSG00000092377 | TBL1Y | transducin (beta)-like 1, Y-linked | 90665 | The protein encoded by this gene has sequence similarity with members of the WD40 repeat-containing protein family. The WD40 group is a large family of proteins, which appear to have a regulatory function. It is believed that the WD40 repeats mediate protein-protein interactions and members of the family are involved in signal transduction, RNA processing, gene regulation, vesicular trafficking, cytoskeletal assembly and may play a role in the control of cytotypic differentiation. This gene is highly similar to TBL1X gene in nucleotide sequence and protein sequence, but the TBL1X gene is located on chromosome X and this gene is on chromosome Y. This gene has three alternatively spliced transcript variants encoding the same protein. |
| NA | ENSG00000114374 | USP9Y | ubiquitin specific peptidase 9, Y-linked | 8287 | This gene is a member of the peptidase C19 family. It encodes a protein that is similar to ubiquitin-specific proteases, which cleave the ubiquitin moiety from ubiquitin-fused precursors and ubiquitinylated proteins. |
| NA | ENSG00000067048 | DDX3Y | DEAD-box helicase 3, Y-linked | 8653 | The protein encoded by this gene is a member of the DEAD-box RNA helicase family, characterized by nine conserved motifs, included the conserved Asp-Glu-Ala-Asp (DEAD) motif. These motifs are thought to be involved in ATP binding, hydrolysis, RNA binding, and in the formation of intramolecular interactions. This protein shares high similarity to DDX3X, on the X chromosome, but a deletion of this gene is not complemented by DDX3X. Mutations in this gene result in male infertility, a reduction in germ cell numbers, and can result in Sertoli-cell only sydrome. Pseudogenes sharing similarity to both this gene and the DDX3X paralog are found on chromosome 4 and the X chromosome. Alternative splicing results in multiple transcript variants encoding different isoforms. |
| NA | ENSG00000183878 | UTY | ubiquitously transcribed tetratricopeptide repeat containing, Y-linked | 7404 | This gene encodes a protein containing tetratricopeptide repeats which are thought to be involved in protein-protein interactions. The encoded protein is also a minor histocompatibility antigen which may induce graft rejection of male stem cell grafts. A large number of alternatively spliced transcripts have been observed for this gene, but the full length nature of some of these variants has not been determined. |
| NA | ENSG00000154620 | TMSB4Y | thymosin beta 4, Y-linked | 9087 | This gene lies within the male specific region of chromosome Y. Its homolog on chromosome X escapes X inactivation and encodes an actin sequestering protein. |
| NA | ENSG00000165246 | NLGN4Y | neuroligin 4, Y-linked | 22829 | This gene encodes a type I membrane protein that belongs to the family of neuroligins, which are cell adhesion molecules present at the postsynaptic side of the synapse, and may be essential for the formation of functional synapses. Alternatively spliced transcript variants have been found for this gene. |
| NA | ENSG00000012817 | KDM5D | lysine demethylase 5D | 8284 | This gene encodes a protein containing zinc finger domains. A short peptide derived from this protein is a minor histocompatibility antigen which can lead to graft rejection of male donor cells in a female recipient. Alternative splicing results in multiple transcript variants. |
| TRUE | ENSG00000157828 | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
| TRUE | NA | NA | NA | NA | NA |
sessionInfo()
R version 3.2.0 (2015-04-16)
Platform: x86_64-unknown-linux-gnu (64-bit)
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C
[3] LC_TIME=en_US.UTF-8 LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats4 parallel grid stats graphics grDevices utils
[8] datasets methods base
other attached packages:
[1] broman_0.59-5 scales_0.2.4 gridExtra_2.0.0
[4] VennDiagram_1.6.9 mygene_1.2.3 GenomicFeatures_1.20.1
[7] AnnotationDbi_1.30.1 Biobase_2.28.0 GenomicRanges_1.20.5
[10] GenomeInfoDb_1.4.0 IRanges_2.2.4 S4Vectors_0.6.0
[13] BiocGenerics_0.14.0 matrixStats_0.14.0 MASS_7.3-40
[16] cowplot_0.3.1 Humanzee_0.1.0 ggplot2_1.0.1
[19] edgeR_3.10.2 limma_3.24.9 dplyr_0.4.2
[22] knitr_1.10.5 rmarkdown_0.6.1
loaded via a namespace (and not attached):
[1] Rcpp_0.12.0 lattice_0.20-31
[3] Rsamtools_1.20.4 Biostrings_2.36.1
[5] assertthat_0.1 digest_0.6.8
[7] chron_2.3-45 R6_2.1.1
[9] plyr_1.8.3 futile.options_1.0.0
[11] acepack_1.3-3.3 RSQLite_1.0.0
[13] evaluate_0.7 highr_0.5
[15] sqldf_0.4-10 httr_0.6.1
[17] zlibbioc_1.14.0 rpart_4.1-9
[19] gsubfn_0.6-6 labeling_0.3
[21] proto_0.3-10 splines_3.2.0
[23] BiocParallel_1.2.2 stringr_1.0.0
[25] foreign_0.8-63 RCurl_1.95-4.6
[27] biomaRt_2.24.0 munsell_0.4.2
[29] rtracklayer_1.28.4 htmltools_0.2.6
[31] nnet_7.3-9 Hmisc_3.16-0
[33] XML_3.98-1.2 GenomicAlignments_1.4.1
[35] bitops_1.0-6 jsonlite_0.9.16
[37] gtable_0.1.2 DBI_0.3.1
[39] magrittr_1.5 formatR_1.2
[41] stringi_0.4-1 XVector_0.8.0
[43] reshape2_1.4.1 latticeExtra_0.6-26
[45] futile.logger_1.4.1 Formula_1.2-1
[47] lambda.r_1.1.7 RColorBrewer_1.1-2
[49] tools_3.2.0 survival_2.38-1
[51] yaml_2.1.13 colorspace_1.2-6
[53] cluster_2.0.1